宝塔用户_abihfz 发表于 2024-12-12 13:34:38

【已解答】宝塔以及宝塔安装的nginx、mysql如何关闭开机自启

为了能快速了解并处理您的问题,请提供以下基础信息:面板、插件版本:8.0.5
系统版本:linux
问题描述:宝塔以及宝塔安装的nginx、mysql如何关闭开机自启
相关截图(日志、错误):

大炮运维V587 发表于 2024-12-12 14:26:20

您好,
1、如果您的操作系统是 Debian11+系列的,可以使用下面命令移除 nginx/MySQL 的开机启动2、
update-rc.dnginx remove
验证 Nginx 是不是关闭了开机启动
systemctl is-enabled nginx
如果返回信息是 disabled,则说明已经取消了开机启动
MySQL的可以将 nginx 换成 mysqld 进行操作

2、如果您的操作系统是 CentOS 系列,可以使用下面命令
systemctl disable nginx
验证 Nginx 是否关闭了开机启动
systemctl is-enabled nginx
返回 disabled则说明取消了开机启动


宝塔用户_abihfz 发表于 2024-12-12 16:11:45

# systemctl disablenginx.service
nginx.service is not a native service, redirecting to /sbin/chkconfig.
Executing /sbin/chkconfig nginx off
系统是centos的

宝塔用户_abihfz 发表于 2024-12-12 16:14:48

大炮运维V587 发表于 2024-12-12 14:26
您好,
1、如果您的操作系统是 Debian11+系列的,可以使用下面命令移除 nginx/MySQL 的开机启动2、



# systemctl disablenginx.service
nginx.service is not a native service, redirecting to /sbin/chkconfig.
Executing /sbin/chkconfig nginx off
系统是centos的,是不是安装后不是用systemctl管理的,mysql关闭开机自启也是这种报错。

大炮运维V587 发表于 2024-12-13 10:52:00

宝塔用户_abihfz 发表于 2024-12-12 16:14
# systemctl disablenginx.service
nginx.service is not a nativ ...

Centos 几?
我使用的是 centos stream 9
如果是 centos7 可以使用下面命令
chkconfig --del nginx
chkconfig --del mysqld
查看是否关闭开机启动
chkconfig --list
对应的服务后面如果是 234 5 的 on 为 off 则说明未开启开机启动

如果此方法失效,可以尝试下面命令
chkconfig off nginx
chkconfig off mysqld
页: [1]
查看完整版本: 【已解答】宝塔以及宝塔安装的nginx、mysql如何关闭开机自启