Ubuntu设置开机启动
生活随笔
收集整理的這篇文章主要介紹了
Ubuntu设置开机启动
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1. 創(chuàng)建執(zhí)行腳本
touch test.sh2. 編寫test.sh腳本
cd /opt/server ./test.sh exit 03.?移動(dòng)test.sh文件到/etc/init.d目錄下(開啟啟動(dòng)目錄)
# 移動(dòng)文件 sudo mv test.sh /etc/init.d/ # 給文件增加權(quán)限 chmod +755 test.sh # 設(shè)置開機(jī)自動(dòng)啟動(dòng) sudo update-rc.d test.sh defaults4.?去除開機(jī)啟動(dòng)腳本
update-rc.d start.sh -f test.sh remove5. 查看系統(tǒng)啟動(dòng)項(xiàng)
systemctl list-unit-files6. 查看服務(wù)狀態(tài)
systemctl status test.service7.?禁用開機(jī)啟動(dòng)示例
sudo systemctl disable mongodb.service sudo systemctl disable nginx.service sudo systemctl disable redis-server.service8.?停止已經(jīng)開啟的服務(wù)示例
sudo systemctl stop mongodb.service sudo systemctl stop nginx.service sudo systemctl stop redis-server.service參考:
- Ubuntu/CentOS查看系統(tǒng)啟動(dòng)項(xiàng)_公眾號(hào)shadow sock7-CSDN博客_ubuntu查看開機(jī)啟動(dòng)項(xiàng)
- update-rc.d的具體用法_maxuearn的博客-CSDN博客
- https://www.jb51.net/article/175654.htm
總結(jié)
以上是生活随笔為你收集整理的Ubuntu设置开机启动的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Matlab R2018a版离线使用帮助
- 下一篇: Java 集合 之 房屋出租实例