The services tag has no wiki summary.
3
votes
3answers
449 views
linux launch script /etc/init with a specific user
I've created a script in /etc/init/mms-agent.conf :
start on runlevel [2345]
stop on runlevel [06]
exec /usr/bin/env python /home/mms/mms-agent/agent.py >> /home/mms/agent.log 2>&1
...
3
votes
1answer
2k views
Start network service at boot time on CentOS
I've recently reinstalled CentOS onto a computer of mine. I have OpenSSH Server on it now, as did I before I reinstalled the operating system.
Here's the difference: Before, SSH started without even ...