1. 程式人生 > 其它 >linux開機啟動的配置

linux開機啟動的配置

系統啟動時需要載入的配置檔案

/etc/profile、/root/.bash_profile
/etc/bashrc、/root/.bashrc
/etc/profile.d/*.sh、/etc/profile.d/lang.sh
/etc/sysconfig/i18n、/etc/rc.local(/etc/rc.d/rc.local)

一、修改開機啟動檔案:/etc/rc.local(或者/etc/rc.d/rc.local)

# 1.編輯rc.local檔案
[root@localhost ~]# vi /etc/rc.local

# 2.修改rc.local檔案,在 exit 0 前面加入以下命令。儲存並退出。
/etc/init.d/mysqld start # mysql開機啟動
/etc/init.d/nginx start # nginx開機啟動
supervisord -c /etc/supervisor/supervisord.conf # supervisord開機啟動
/bin/bash /server/scripts/test.sh >/dev/null 2>/dev/null

# 3.最後修改rc.local檔案的執行許可權
[root@localhost ~]# chmod +x /etc/rc.local
[root@localhost ~]# chmod 755 /etc/rc.local

二、自己寫一個shell指令碼

將寫好的指令碼(.sh檔案)放到目錄 /etc/profile.d/ 下,系統啟動後就會自動執行該目錄下的所有shell指令碼。

三、通過chkconfig命令設定

# 1.將(指令碼)啟動檔案移動到 /etc/init.d/或者/etc/rc.d/init.d/目錄下。(前者是後者的軟連線)
mv /www/wwwroot/test.sh /etc/rc.d/init.d

# 2.啟動檔案前面務必新增如下三行程式碼,否側會提示chkconfig不支援。
#!/bin/sh 告訴系統使用的shell,所以的shell指令碼都是這樣
#chkconfig: 35 20 80 分別代表執行級別,啟動優先權,關閉優先權,此行程式碼必須
#description: http server 自己隨便發揮!!!,此行程式碼必須
/bin/echo $(/bin/date +%F_%T) >> /tmp/test.log

# 3.增加指令碼的可執行許可權
chmod +x /etc/rc.d/init.d/test.sh

# 4.新增指令碼到開機自動啟動專案中。新增到chkconfig,開機自啟動。
[root@localhost ~]# cd /etc/rc.d/init.d
[root@localhost ~]# chkconfig --add test.sh
[root@localhost ~]# chkconfig test.sh on

# 5.關閉開機啟動
[root@localhost ~]# chkconfig test.sh off

# 6.從chkconfig管理中刪除test.sh
[root@localhost ~]# chkconfig --del test.sh

# 7.檢視chkconfig管理
[root@localhost ~]# chkconfig --list test.sh

四、自定義服務檔案,新增到系統服務,通過Systemctl管理

1.寫服務檔案:如nginx.service、redis.service、supervisord.service

[Unit]:服務的說明
Description:描述服務
After:描述服務類別

[Service]服務執行引數的設定
Type=forking 是後臺執行的形式
ExecStart 為服務的具體執行命令
ExecReload 為服務的重啟命令
ExecStop 為服務的停止命令
PrivateTmp=True 表示給服務分配獨立的臨時空間
注意:啟動、重啟、停止命令全部要求使用絕對路徑

[Install] 服務安裝的相關設定,可設定為多使用者
WantedBy=multi-user.target

2.檔案儲存在目錄下:以754的許可權。目錄路徑:/usr/lib/systemd/system。如上面的supervisord.service檔案放在這個目錄下面。

[root@localhost ~]# cat /usr/lib/systemd/system/nginx.service
[root@localhost ~]# cat /usr/lib/systemd/system/supervisord.service
3.設定開機自啟動(任意目錄下執行)。如果執行啟動命令報錯,則執行:systemctl daemon-reload

設定開機自啟動
[root@localhost ~]# systemctl enable nginx.service
[root@localhost ~]# systemctl enable supervisord

停止開機自啟動
[root@localhost ~]# systemctl disable nginx.service
[root@localhost ~]# systemctl disable supervisord

驗證一下是否為開機啟動
[root@localhost ~]# systemctl is-enabled nginx
[root@localhost ~]# systemctl is-enabled supervisord

4.其他命令

啟動nginx服務
[root@localhost ~]# systemctl start nginx.service

停止nginx服務
[root@localhost ~]# systemctl start nginx.service

重啟nginx服務
[root@localhost ~]# systemctl restart nginx.service

檢視nginx服務當前狀態
[root@localhost ~]# systemctl status nginx.service

檢視所有已啟動的服務
[root@localhost ~]# systemctl list-units --type=service

5.服務檔案示例:

# supervisord.service程序管理服務檔案
[Unit]
Description=Process Monitoring and Control Daemon # 內容自己定義:Description=Supervisor daemon
After=rc-local.service nss-user-lookup.target

[Service]
Type=forking
ExecStart=/usr/bin/supervisord -c /etc/supervisor/supervisord.conf
ExecStop= /usr/bin/supervisorctl shutdown
ExecReload=/usr/bin/supervisorctl reload
Restart=on-failure
RestartSec=42s
KillMode=process

[Install]
WantedBy=multi-user.target

# nginx.service服務檔案
[Unit]
Description=nginx - high performance web server
After=network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s stop

[Install]
WantedBy=multi-user.target

# redis.service服務檔案
[Unit]
Description=Redis
After=network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
ExecStart=/usr/local/bin/redis-server /etc/redis.conf
ExecStop=kill -INT `cat /tmp/redis.pid`
User=www
Group=www

[Install]
WantedBy=multi-user.target