Section courante

A propos

Section administrative du site

service

Service
Linux Externe

Syntaxe

service network restart
service network start

Description

Cette commande permet d'effectuer certaines opérations sur certains services.

Exemples

L'exemple suivant permet de redémarrer Apache :

sudo service httpd restart

L'exemple suivant permet de redémarrer Apache HTTP Server et Apache Tomcat 6 sous CentOS avec l'utilisateur root :

service httpd stop && service tomcat6 stop && service tomcat6 start && service httpd start

on aura un résultat ressemblant à ceci :

Stopping httpd:                                            [  OK  ]
Stopping tomcat6: waiting for processes 2064 to exit
killing 2064 which did not stop after 30 seconds           [WARNING]
                                                           [  OK  ]
Starting tomcat6:                                          [  OK  ]
Starting httpd: [Wed Feb 13 13:43:27 2019] [warn] module php5_module is already loaded, skipping
[Wed Feb 13 13:43:27 2019] [warn] NameVirtualHost *:443 has no VirtualHosts
[Wed Feb 13 13:43:27 2019] [warn] NameVirtualHost *:80 has no VirtualHosts
                                                           [  OK  ]

L'exemple suivante permet de recharger les données indiqués dans les crontab de l'utilisateur courant :

service cron reload

on aura un résultat ressemblant à ceci :

* Reloading configuration files for periodic command scheduler cron [ OK ]


Dernière mise à jour : Samedi, le 30 avril 2016