開發(fā)中我們經(jīng)常需要設(shè)置一些自啟動服務(wù), 用來做一些定時任務(wù)或者是服務(wù)器遇到問題重啟時自動啟動服務(wù).
在CentOS 6中, 我們通過在/etc/init.d/
添加自啟動腳本來設(shè)置自啟動. 下在CentOS 7中, 設(shè)置自啟動的方法發(fā)生了改變. 雖然我們?nèi)稳豢梢允褂媚_本來添加自啟動, 但是官方更建議使用服務(wù)來設(shè)置自啟動.
方法一: 通過配置系統(tǒng)服務(wù)來設(shè)置自啟動
在CentOS 7中, 一些軟件程序會在安裝時自動創(chuàng)建服務(wù), 比如Apache, PHP, MySQL, Nginx等等, 對于已經(jīng)創(chuàng)建好的服務(wù), 我們唯一要做的就是把服務(wù)設(shè)置成自啟動就可以了. 我們以MySQL為例.
-
安裝完成MySQL之后, 執(zhí)行語句把MySQL服務(wù)設(shè)置成自啟動:
# systemctl enable mysqld
-
設(shè)置完成之后, 檢查一下狀態(tài):
# systemctl status mysqld
會打印出類似下列信息:
● mysqld.service - MySQL Server Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled) Active: active (running) since 五 2018-04-27 16:38:40 CST; 1 weeks 3 days ago Docs: man:mysqld(8) http://dev.mysql.com/doc/refman/en/using-systemd.html Main PID: 18169 (mysqld) CGroup: /system.slice/mysqld.service └─18169 /usr/sbin/mysqld --daemonize --pid-file=/var/run/mysqld/mysqld.pid
-
如果不需要自啟動了, 可以取消服務(wù)的自啟動:
# systemctl disable mysqld
-
當(dāng)然, 我們也可以自己創(chuàng)建服務(wù). 例如我們創(chuàng)建一個名為
sample.service
的服務(wù):# vi /etc/systemd/system/sample.service [Unit] Description=Description for sample script goes here After=network.target [Service] Type=simple ExecStart=/var/tmp/test_script.sh TimeoutStartSec=0 [Install] WantedBy=default.target
After=
代表要在其他的某些程序完成之后再執(zhí)行.
Type=
代表執(zhí)行順序和方式.
Type=simple
(默認(rèn)值): systemd認(rèn)為該服務(wù)將立即啟動. 服務(wù)進(jìn)程不會fork. 如果該服務(wù)要啟動其 他服務(wù), 不要使用此類型啟動, 除非該服務(wù)是socket激活型.
Type=forking
: systemd認(rèn)為當(dāng)該服務(wù)進(jìn)程fork, 且父進(jìn)程退出后服務(wù)啟動成功挥下。對于常規(guī)的守護(hù)進(jìn)程(daemon),除非你確定此啟動方式無法滿足需求, 使用此類型啟動即可. 使用此啟動類型應(yīng)同時指定 PIDFile=, 以便systemd能夠跟蹤服務(wù)的主進(jìn)程.
Type=oneshot
: 這一選項適用于只執(zhí)行一項任務(wù)、隨后立即退出的服務(wù). 可能需要同時設(shè)置 RemainAfterExit=yes 使得 systemd 在服務(wù)進(jìn)程退出之后仍然認(rèn)為服務(wù)處于激活狀態(tài).
Type=notify
: 與 Type=simple 相同,但約定服務(wù)會在就緒后向 systemd 發(fā)送一個信號. 這一通知的實現(xiàn)由 libsystemd-daemon.so 提供.
Type=dbus
: 若以此方式啟動, 當(dāng)指定的 BusName 出現(xiàn)在DBus系統(tǒng)總線上時, systemd認(rèn)為服務(wù)就緒.
Type=idle
: 服務(wù)會延遲啟動, 一直到其他服務(wù)都啟動完成之后才會啟動此服務(wù).
WantedBy=
代表啟動目標(biāo).
target
是一個類似而又不同于啟動級別(runlevel)
的概念. 參考Systemd服務(wù)簡介. -
遇到問題的時候, 可以參考一下其他軟件的配置.
# cat /usr/lib/systemd/system/postgresql-10.service
比如PostgreSQL的service文件:
# It's not recommended to modify this file in-place, because it will be # overwritten during package upgrades. If you want to customize, the # best way is to create a file "/etc/systemd/system/postgresql-10.service", # containing # .include /usr/lib/systemd/system/postgresql-10.service # ...make your changes here... # For more info about custom unit files, see # http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F # Note: changing PGDATA will typically require adjusting SELinux # configuration as well. # Note: do not use a PGDATA pathname containing spaces, or you will # break postgresql-setup. [Unit] Description=PostgreSQL 10 database server Documentation=https://www.postgresql.org/docs/10/static/ After=syslog.target After=network.target [Service] Type=notify User=postgres Group=postgres # Note: avoid inserting whitespace in these Environment= lines, or you may # break postgresql-setup. # Location of database directory Environment=PGDATA=/var/lib/pgsql/10/data/ # Where to send early-startup messages from the server (before the logging # options of postgresql.conf take effect) # This is normally controlled by the global default set by systemd # StandardOutput=syslog # Disable OOM kill on the postmaster OOMScoreAdjust=-1000 Environment=PG_OOM_ADJUST_FILE=/proc/self/oom_score_adj Environment=PG_OOM_ADJUST_VALUE=0 ExecStartPre=/usr/pgsql-10/bin/postgresql-10-check-db-dir ${PGDATA} ExecStart=/usr/pgsql-10/bin/postmaster -D ${PGDATA} ExecReload=/bin/kill -HUP $MAINPID KillMode=mixed KillSignal=SIGINT # Do not set any timeout value, so that systemd will not kill postmaster # during crash recovery. TimeoutSec=0 [Install] WantedBy=multi-user.target
方法二: 通過自啟動腳本來設(shè)置
- 創(chuàng)建一個名為
test_script.sh
的腳本并寫入內(nèi)容:# vi /var/tmp/test_script.sh #!/bin/bash echo "This is a sample script to test auto run during boot" > /var/tmp/script.out echo "The time the script run was --> `date`" >> /var/tmp/script.out
- 檢查文件權(quán)限:
# ls -lrt /var/tmp/test_script.sh
- 如果沒有權(quán)限, 則添加可執(zhí)行權(quán)限:
# chmod +x /var/tmp/test_script.sh
- 將
/etc/rc.d/rc.local
文標(biāo)記為可執(zhí)行文件:
在CentOS 7中,/etc/rc.d/rc.local
文件的權(quán)限被降低了, 開機(jī)的時候執(zhí)行在自己的腳本是不能起動一些服務(wù)的, 執(zhí)行下面的命令將文件標(biāo)記為可執(zhí)行的文件.# chmod +x /etc/rc.d/rc.local
- 打開
/etc/rc.d/rc.local
文件, 寫入上面的文件:# vi /etc/rc.d/rc.local /var/tmp/test_script.sh
雖然兩種方法都可以設(shè)置自啟動, 但是不建議通過腳本來設(shè)置, 建議通過設(shè)置服務(wù)來啟動.
文章來源整理自網(wǎng)絡(luò).
How to Auto-start Services on Boot in Linux?
CentOS / RHEL 7 : How to create custom script to run automatically during boot
Centos7開機(jī)啟動自己的腳本的方法
Systemd及service文件解析
Systemd服務(wù)簡介