ubuntu16 中chkconfig 命令不能使用
參考地址1: ubuntu16 中chkconfig 在裡面看回答;
在Ubuntu中,/etc/init.d已被/ usr / lib / systemd所取代。指令碼仍然可以通過“服務”啟動和停用。但主要命令現在是'systemctl'。chkconfig命令被留下,現在你用systemctl來做這件事。
所以,而不是:
chkconfig enable apache2
您應該查詢服務名稱,然後啟用它
systemctl status apache2
systemctl enable apache2.service
如果你有一個systemd指令碼或一個/etc/init.d指令碼,並且做正確的事,Systemd已經變得更加友好。
參考地址2: Ubuntu 16.04 增加bash指令碼為service,開機自啟服務指令碼配置
常用命令
重新載入service檔案: systemctl daemon-reload
啟動一個服務: systemctl start nginx-1.13.0.service
關閉一個服務: systemctl stop nginx-1.13.0.service
重啟一個服務: systemctl restart nginx-1.13.0.service
顯示一個服務的狀態: systemctl status nginx-1.13.0.service
在開機時啟用一個服務: systemctl enable nginx-1.13.0.service
在開機時禁用一個服務: systemctl disable nginx-1.13.0.service
檢視服務是否開機啟動: systemctl is-enabled nginx-1.13.0.service
檢視已啟動的服務列表: systemctl list-unit-files|grep enabled
檢視啟動失敗的服務列表:systemctl --failed
apache
啟動 systemctl start httpd
停止 systemctl stop httpd
重啟 systemctl restart httpd
mysql
啟動 systemctl start mysqld
停止 systemctl stop mysqld
重啟 systemctl restart mysqld
php-fpm
啟動 systemctl start php-fpm
停止 systemctl stop php-fpm
重啟 systemctl restart php-fpm
nginx
啟動 systemctl start nginx
停止 systemctl stop nginx
重啟 systemctl restart nginx
相關文章
- chmod/chkconfig命令使用
- chkconfig命令
- linux中的chkconfig命令詳細用法Linux
- Linux chkconfig命令Linux
- 詳解Linux chkconfig命令Linux
- Linux基礎命令---chkconfigLinux
- Linux下chkconfig命令詳解Linux
- Linux下chkconfig命令詳解?(service)Linux
- CentOS8中開機啟動檢視管理的命令chkconfigCentOS
- 八、Linux/UNIX操作命令積累【touch、chkconfig】Linux
- Docker centos7 systemctl命令不能使用DockerCentOS
- Ubuntu16環境安裝和使用NFSUbuntuNFS
- Linux CentOS開機啟動項設定命令:chkconfigLinuxCentOS
- ubuntu16系統中pycharm下使用git將程式碼提交到github倉庫UbuntuPyCharmGithub
- Linux chkconfigLinux
- SQL中copy命令使用SQL
- ubuntu16 修改時區Ubuntu
- Mac中brew命令的使用Mac
- ubuntu16 zabbix 相關配置Ubuntu
- 解決sqlplus中輸錯命令時的刪除、游標鍵不能使用問題SQL
- TSM Server的密碼過期,導致不能使用Management Console中的命令列Server密碼命令列
- 解決 Git-bash 不能使用 Composer 命令的問題Git
- Linux中Type命令如何使用Linux
- Linux 中如何使用 id 命令Linux
- Linux中如何使用alias命令Linux
- Shell指令碼中cd命令使用指令碼
- shell 中read命令的使用
- win10系統中ipconfig命令不能用怎麼辦Win10
- foreman ubuntu16快速安裝REMUbuntu
- ubuntu16 安裝mysql5.7UbuntuMySql
- 如何限制使用者能夠在SQL*Plus發出哪些命令以及不能發出哪些命令SQL
- windows10系統中ipconfig命令不能用怎麼解決Windows
- Linux中printf命令使用例項Linux
- 在 Linux中find命令使用技巧Linux
- linux中xargs命令的使用方式Linux
- Linux中source命令的使用方式Linux
- centos7中使用locate命令CentOS
- 在Linux的sqlplus中不能使用viLinuxSQL