adspace


How do you start and stop services in unix without using admin console?

Answer Posted / Anamika

In Unix, you can use the command 'service' or 'systemctl' to start and stop services. Here is an example:

To start a service named 'my_service':
```
sudo service my_service start
```

To stop a service named 'my_service':
```
sudo service my_service stop
```

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you edit a large file without opening it in unix?

987