Linux/Services

From Iveze
< Linux
Revision as of 11:50, 18 June 2015 by Admin (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The point of having a server is to run some services on them. Services are programs that are always on, even after a reboot.

Documents in this section

AutomountUps

Start a service

Centos 6

/etc/init.d/<service name> start

Centos 7

systemctl start <service name>

Other useful service options are: status, stop, restart

Make a service permanent

If the service should start at reboot.

Centos 6

chkconfig <service name> on

Centos 7

systemctl enable <service name>