linux的service命令
linux的service命令
linux下的service命令主要是對(duì)系統(tǒng)服務(wù)進(jìn)行管理,下面由學(xué)習(xí)啦小編為大家整理了linux的service命令的相關(guān)知識(shí),希望對(duì)大家有幫助!
linux的service命令
用途說(shuō)明
service命令用于對(duì)系統(tǒng)服務(wù)進(jìn)行管理,比如啟動(dòng)(start)、停止(stop)、重啟(restart)、查看狀態(tài)(status)等。相關(guān)的命令還包括chkconfig、ntsysv等,chkconfig用于查看、設(shè)置服務(wù)的運(yùn)行級(jí)別,ntsysv用于直觀方便的設(shè)置各個(gè)服務(wù)是否自動(dòng)啟動(dòng)。service命令本身是一個(gè)shell腳本,它在/etc/init.d/目錄查找指定的服務(wù)腳本,然后調(diào)用該服務(wù)腳本來(lái)完成任務(wù)。
看看下面的手冊(cè)頁(yè)可能更加清楚的了解service的內(nèi)幕:service運(yùn)行指定服務(wù)(稱之為System V初始腳本)時(shí),把大部分環(huán)境變量去掉了,只保留LANG和TERM兩個(gè)環(huán)境變量,并且把當(dāng)前路徑置為/,也就是說(shuō)是在一個(gè)可以預(yù)測(cè)的非常干凈的環(huán)境中運(yùn)行服務(wù)腳本。這種腳本保存在/etc/init.d目錄中,它至少要支持start和stop命令。
man service 寫(xiě)道
service(8) service(8)
NAME
service - run a System V init script
SYNOPSIS
service SCRIPT COMMAND [OPTIONS]
service --status-all
service --help | -h | --version
DESCRIPTION
service runs a System V init script in as predictable environment as possible, removing most environment vari-
ables and with current working directory set to /.
The SCRIPT parameter specifies a System V init script, located in /etc/init.d/SCRIPT. The supported values of
COMMAND depend on the invoked script, service passes COMMAND and OPTIONS it to the init script unmodified. All
scripts should support at least the start and stop commands. As a special case, if COMMAND is --full-restart,
the script is run twice, first with the stop command, then with the start command.
service --status-all runs all init scripts, in alphabetical order, with the status command.
FILES
/etc/init.d
The directory containing System V init scripts.
ENVIRONMENT
LANG, TERM
The only environment variables passed to the init scripts.
SEE ALSO
chkconfig(8), ntsysv(8)
Jan 2006 service(8)
常用方式
格式:service <service>
打印指定服務(wù)<service>的命令行使用幫助。
格式:service <service> start
啟動(dòng)指定的系統(tǒng)服務(wù)<service>
格式:service <service> stop
停止指定的系統(tǒng)服務(wù)<service>
格式:service <service> restart
重新啟動(dòng)指定的系統(tǒng)服務(wù)<service>,即先停止(stop),然后再啟動(dòng)(start)。
格式:chkconfig --list
查看系統(tǒng)服務(wù)列表,以及每個(gè)服務(wù)的運(yùn)行級(jí)別。
格式:chkconfig <service> on
設(shè)置指定服務(wù)<service>開(kāi)機(jī)時(shí)自動(dòng)啟動(dòng)。
格式:chkconfig <service> off
設(shè)置指定服務(wù)<service>開(kāi)機(jī)時(shí)不自動(dòng)啟動(dòng)。
格式:ntsysv
以全屏幕文本界面設(shè)置服務(wù)開(kāi)機(jī)時(shí)是否自動(dòng)啟動(dòng)。
linux的service命令使用示例
示例一 網(wǎng)絡(luò)重啟
當(dāng)修改了主機(jī)名、ip地址等信息時(shí),經(jīng)常需要把網(wǎng)絡(luò)重啟使之生效。
[root@node34 root]# service network
用法:/etc/init.d/network {start|stop|restart|reload|status}
[root@node34 root]# service network status
配置設(shè)備:
lo eth0
當(dāng)前的活躍設(shè)備:
lo eth0
[root@node34 root]# service network restart
正在關(guān)閉接口 eth0: [ 確定 ]
關(guān)閉環(huán)回接口: [ 確定 ]
設(shè)置網(wǎng)絡(luò)參數(shù): [ 確定 ]
彈出環(huán)回接口: [ 確定 ]
彈出界面 eth0: [ 確定 ]
[root@node34 root]#
示例二 重啟MySQL
[root@node34 root]# service mysql
mysql: unrecognized service
[root@node34 root]# service mysqld
用法:/etc/init.d/mysqld {start|stop|status|condrestart|restart}
[root@node34 root]# service mysqld status
mysqld (pid 1638) 正在運(yùn)行...
[root@node34 root]# service mysqld restart
停止 MySQL: [ 確定 ]
啟動(dòng) MySQL: [ 確定 ]
[root@node34 root]#