Ubuntu16.04 中 chkconfig 命令不能使用
在Ubuntu中,/etc/init.d 已被 /usr/lib/systemd 所取代。脚本仍然可以通过“服务”启动和停用。但主要命令现在是systemctl
。chkconfig 命令被留下,现在你用 systemctl
来做这件事。
所以,您应该查找服务名称,然后启用它
systemctl status apache2
systemctl enable apache2.service
而不是:
chkconfig enable apache2
常用命令
重新加载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
-
mysql
- 启动 systemctl start mysqld
- 停止 systemctl stop mysqld
- 重启 systemctl restart mysqld
-
nginx
- 启动 systemctl start nginx
- 停止 systemctl stop nginx
- 重启 systemctl restart nginx
参考
上一篇: Linux的chkconfig命令
下一篇: 【教程】CentOS 设置开机自启动脚本
推荐阅读
-
CAD中怎么使用wipeout遮罩命令?
-
MySQL中describe命令的使用方法小结_MySQL
-
使用PHP调用Docker 命令 为什么不能成功?
-
thinkphp中开启smarty是否不能使用默认的模板布局?
-
编写一个函数 reverse_string(char * string)(递归实现) 实现:将参数字符串中的字符反向排列。 要求:不能使用C函数库中的字符串操作函数。
-
编写一个函数reverse_string(char * string)(递归实现)实现:将参数字符串中的字符反向排列。 要求:不能使用C函数库中的字符串操作函数
-
深入剖析Ruby设计模式编程中对命令模式的相关使用
-
详细解读Linux系统中ntpq命令的使用
-
linux中cd命令使用详解_PHP
-
关于MySQL中的mysqldump命令的使用_MySQL