好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > Linux 添加開機(jī)啟動方法(服務(wù)/腳本)

Linux 添加開機(jī)啟動方法(服務(wù)/腳本)

熱門標(biāo)簽:外呼系統(tǒng)虛擬號碼 接電話機(jī)器人罵人 長春電銷外呼系統(tǒng)代理商 百度地圖標(biāo)注尺寸無法顯示 代理外呼系統(tǒng)創(chuàng)業(yè) 大連電銷外呼系統(tǒng)運(yùn)營商 泰州智能外呼系統(tǒng)排名 400電話申請知乎 400電話干嘛怎么申請信用卡

系統(tǒng)啟動時需要加載的配置文件

/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)

一、修改開機(jī)啟動文件:/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開機(jī)啟動
/etc/init.d/nginx start                     # nginx開機(jī)啟動
supervisord -c /etc/supervisor/supervisord.conf         # supervisord開機(jī)啟動
/bin/bash /server/scripts/test.sh >/dev/null 2>/dev/null

# 3.最后修改rc.local文件的執(zhí)行權(quán)限
[root@localhost ~]# chmod +x /etc/rc.local
[root@localhost ~]# chmod 755 /etc/rc.local

二、自己寫一個shell腳本

將寫好的腳本(.sh文件)放到目錄 /etc/profile.d/ 下,系統(tǒng)啟動后就會自動執(zhí)行該目錄下的所有shell腳本。

三、通過chkconfig命令設(shè)置

# 1.將(腳本)啟動文件移動到 /etc/init.d/或者/etc/rc.d/init.d/目錄下。(前者是后者的軟連接)
mv /www/wwwroot/test.sh /etc/rc.d/init.d

# 2.啟動文件前面務(wù)必添加如下三行代碼,否側(cè)會提示chkconfig不支持。
#!/bin/sh             告訴系統(tǒng)使用的shell,所以的shell腳本都是這樣
#chkconfig: 35 20 80        分別代表運(yùn)行級別,啟動優(yōu)先權(quán),關(guān)閉優(yōu)先權(quán),此行代碼必須
#description: http server     自己隨便發(fā)揮!!!,此行代碼必須
/bin/echo $(/bin/date +%F_%T) >> /tmp/test.log

# 3.增加腳本的可執(zhí)行權(quán)限
chmod +x /etc/rc.d/init.d/test.sh

# 4.添加腳本到開機(jī)自動啟動項目中。添加到chkconfig,開機(jī)自啟動。
[root@localhost ~]# cd /etc/rc.d/init.d
[root@localhost ~]# chkconfig --add test.sh
[root@localhost ~]# chkconfig test.sh on

# 5.關(guān)閉開機(jī)啟動 
[root@localhost ~]# chkconfig test.sh off

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

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

四、自定義服務(wù)文件,添加到系統(tǒng)服務(wù),通過Systemctl管理

1.寫服務(wù)文件:如nginx.service、redis.service、supervisord.service

[Unit]:服務(wù)的說明
Description:描述服務(wù)
After:描述服務(wù)類別

[Service]服務(wù)運(yùn)行參數(shù)的設(shè)置
Type=forking      是后臺運(yùn)行的形式
ExecStart        為服務(wù)的具體運(yùn)行命令
ExecReload       為服務(wù)的重啟命令
ExecStop        為服務(wù)的停止命令
PrivateTmp=True     表示給服務(wù)分配獨立的臨時空間
注意:啟動、重啟、停止命令全部要求使用絕對路徑

[Install]        服務(wù)安裝的相關(guān)設(shè)置,可設(shè)置為多用戶
WantedBy=multi-user.target 

2.文件保存在目錄下:以754的權(quán)限。目錄路徑:/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.設(shè)置開機(jī)自啟動(任意目錄下執(zhí)行)。如果執(zhí)行啟動命令報錯,則執(zhí)行:systemctl daemon-reload

設(shè)置開機(jī)自啟動
[root@localhost ~]# systemctl enable nginx.service    
[root@localhost ~]# systemctl enable supervisord

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

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

4.其他命令

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

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

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

查看nginx服務(wù)當(dāng)前狀態(tài)
[root@localhost ~]# systemctl status nginx.service

查看所有已啟動的服務(wù)
[root@localhost ~]# systemctl list-units --type=service

5.服務(wù)文件示例:

# supervisord.service進(jìn)程管理服務(wù)文件
[Unit]
Description=Process Monitoring and Control Daemon  # 內(nèi)容自己定義: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服務(wù)文件
[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服務(wù)文件
[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

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

標(biāo)簽:安陽 興安盟 臺灣 大慶 雅安 中衛(wèi) 長治 清遠(yuǎn)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Linux 添加開機(jī)啟動方法(服務(wù)/腳本)》,本文關(guān)鍵詞  Linux,添加,開機(jī),啟動,方法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Linux 添加開機(jī)啟動方法(服務(wù)/腳本)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Linux 添加開機(jī)啟動方法(服務(wù)/腳本)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章