Difference between services and process


 
Thread Tools Search this Thread
Operating Systems AIX Difference between services and process
# 1  
Old 09-23-2013
Difference between services and process

Hi,

I want to know the Difference between services and process...
is services having many processes
# 2  
Old 09-25-2013
A "process" is one (or several, see below) string(s) of executable (processor-)instructions with its own environment. This environment is called "process-environment" and consists of memory segments, contents of environment variables, an entry in the process table and maybe other kernel tables and so on.

Notice the difference to the similar "thread", which is also one such string of executable instructions, but without an environment of its own. One or several threads combine to make for a process. How many such threads comprise a process is a matter of how the underlying program is written.

Also notice, that "process" means a single instance of a program. A "program" (a file containing executable instructions) can be started several times. Each time a separate process is created which just happens to contain the same instructions as the other (so-called) "instances" (=processes) of the program.

Processes may or may not constitute "services". A "service" is a process which carries out a specific task and is reachable via a certain network port address. For instance, the "telnet" service, which is a process (telnetd) listening to a certain port (usually 23) for incoming requests. Another example would be the listener of an Oracle database, which propagates the "Oracle service" a system can offer to the world.

Such services can be single-threaded or multi-threaded processes, but what makes them services is their function, not the way they are programmed.

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk to calculate difference of split and sum the difference

In the awk I am trying to subtract the difference $3-$2 of each matching $4 before the first _ (underscore) and print that value in $13. I think the awk will do that, but added comments. What I am not sure off is how to add a line or lines that will add sum each matching $13 value and put it in... (2 Replies)
Discussion started by: cmccabe
2 Replies

2. Shell Programming and Scripting

Script to Start services based on dependent services on other AIX machine

Hi, I just started working on a script. After my research, i found a command which can help me: AIM: To build a script which starts the services (Services 1) on server 1 automatically whenever its down. And it has a dependency on other service (Service 2) on Server 2. So my script has to... (4 Replies)
Discussion started by: draghun9
4 Replies

3. Red Hat

Restart of services if port no is changed in /etc/services in RHEL

I had a doubt if any services need to be restarted if port no in /etc/services in an RHEL setup is changed. For eg, the port no of 443 for SSL may need to be changed. I hope my query is clear whether any services need to be restarted if port no in /etc/services is changed. Please revert with... (10 Replies)
Discussion started by: RHCE
10 Replies

4. Programming

what is the main difference between difference between using nonatomic lseek and O_APPEND

I think both write at the end of the file ...... but is there a sharp difference between those 2 instruction ..... thank you this is my 3rd question today forgive me :D (1 Reply)
Discussion started by: fwrlfo
1 Replies

5. Shell Programming and Scripting

How to calculate time difference between start and end time of a process!

Hello All, I have a problem calculating the time difference between start and end timings...! the timings are given by 24hr format.. Start Date : 08/05/10 12:55 End Date : 08/09/10 06:50 above values are in mm/dd/yy hh:mm format. Now the thing is, 7th(08/07/10) and... (16 Replies)
Discussion started by: smarty86
16 Replies

6. UNIX for Dummies Questions & Answers

Difference between 'jobs' and 'process'

Hi Everyone, Can you kindly explain me the terms 'jobs' and 'process' and the difference between them? How the commands 'ps' and 'lsof' are related to them? Thanking you in anticipation (1 Reply)
Discussion started by: adc22
1 Replies

7. Shell Programming and Scripting

script to monitor process running on server and posting a mail if any process is dead

Hello all, I would be happy if any one could help me with a shell script that would determine all the processes running on a Unix server and post a mail if any of the process is not running or aborted. Thanks in advance Regards, pradeep kulkarni. :mad: (13 Replies)
Discussion started by: pradeepmacha
13 Replies

8. Shell Programming and Scripting

Difference between "Command substitution" and "Process substitution"

Hi, What is the actual difference between these two? Why the following code works for process substitution and fails for command substitution? while IFS= read -r line; do echo $line; done < <(cat file)executes successfully and display the contents of the file But, while IFS='\n' read -r... (3 Replies)
Discussion started by: royalibrahim
3 Replies

9. Solaris

Services configuring to come up at boot process

I want to configure one service to come up as a normal strat-up process after reboot, instead of starting it manually. I tried to configure it in inetd.conf but it didn't work. Could you please suggest, how I can achieve this ?? (3 Replies)
Discussion started by: pankajwagh81
3 Replies

10. UNIX for Dummies Questions & Answers

difference between task and process

Hi, what is the difference between a task and a process. what is the difference between multitasking , multiprogrammnig and multiprocessing? Thanks in advance (6 Replies)
Discussion started by: ramyar
6 Replies
Login or Register to Ask a Question