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
相關文章
- Linux基礎命令---chkconfigLinux
- 詳解Linux chkconfig命令Linux
- CentOS8中開機啟動檢視管理的命令chkconfigCentOS
- Linux CentOS開機啟動項設定命令:chkconfigLinuxCentOS
- Docker centos7 systemctl命令不能使用DockerCentOS
- Ubuntu16環境安裝和使用NFSUbuntuNFS
- win10系統中ipconfig命令不能用怎麼辦Win10
- ubuntu16 修改時區Ubuntu
- Linux中Type命令如何使用Linux
- Mac中brew命令的使用Mac
- Linux 中如何使用 id 命令Linux
- Linux中如何使用alias命令Linux
- windows10系統中ipconfig命令不能用怎麼解決Windows
- 如何限制使用者能夠在SQL*Plus發出哪些命令以及不能發出哪些命令SQL
- foreman ubuntu16快速安裝REMUbuntu
- ubuntu16 zabbix 相關配置Ubuntu
- Linux中printf命令使用例項Linux
- linux中xargs命令的使用方式Linux
- 在 Linux中find命令使用技巧Linux
- Linux中source命令的使用方式Linux
- Linux下chkconfig命令詳解即新增服務以及兩種方式啟動關閉系統服務Linux
- ubuntu16 安裝mysql5.7UbuntuMySql
- vsCode不能執行vue命令解決方式VSCodeVue
- Linux中tail命令的使用詳解!LinuxAI
- centos7中使用locate命令CentOS
- Linux 中 ss 命令的使用例項Linux
- Linux 中的 JQ 命令使用例項Linux
- Linux中ip命令的使用例項Linux
- Linux中的basename命令使用例項Linux
- Linux中如何禁止普通使用者使用su命令Linux
- 使用 userdel 命令刪除 Linux 中的使用者Linux
- Ubuntu16 升級 Node.js 版本UbuntuNode.js
- Linux中cd命令有何作用?如何使用?Linux
- 在Linux中如何使用at命令安排任務Linux
- linux系統中xargs命令的使用方式Linux
- Linux中Sleep和Wait命令的使用方式LinuxAI
- java命令--jmap命令使用Java
- pytest 命令在 jenkins 批處理裡不能識別Jenkins