最赞回答 / Chyi_
linux达人养成计划 | ,达人养成计划 || ,linux网络管理, linux软件安装管理,linux权限管理之基本权限,linux权限管理之特殊权限,linux中的计划任务之Crontab,linux服务管理,linux系统管理,shell编程之变量,shell编程之运算符,shell编程之环境变量配置,shell编程之正则表达式,shell编程之条件判断与流程控制,shell典型应用之主控脚本实现,shell典型应用之系统信息及运行状态获取,shell典型应用之nginx和mysql应用状态分...
2018-12-07
最赞回答 / 慕先生1167128
/etc/rc.d/rc3.d/下面的脚本是执行chkconfig --add <服务名>自动生成的开启和关闭脚本,你说的手动拷贝脚本到该目录是可以实现自启动。但最好不要手动添加,会造成后期服务管理的混乱。
2018-10-07
cent7 /usr/lib/systemd/system/
systemctl enable crond.service #让某服务开机启动
systemctl disable crond.service #不开机启动
systemctl status crond.service #查看服务状态
systemctl start crond.service #启动某服务
systemctl stop crond.service #停止某服务
systemctl restart crond.service #重启某服务
systemctl is-enabled crond #查看某服务是否开机启
systemctl enable crond.service #让某服务开机启动
systemctl disable crond.service #不开机启动
systemctl status crond.service #查看服务状态
systemctl start crond.service #启动某服务
systemctl stop crond.service #停止某服务
systemctl restart crond.service #重启某服务
systemctl is-enabled crond #查看某服务是否开机启
2018-05-21
CentOS7下服务启动:
启动服务:
systemctl start httpd
停止服务:
systemctl stop httpd
重启服务(先停止,后启动):
systemctl restart httpd
重新加载(使用新的配置文件):
systemctl reload httpd
显示服务状态:
systemctl status httpd
启动服务:
systemctl start httpd
停止服务:
systemctl stop httpd
重启服务(先停止,后启动):
systemctl restart httpd
重新加载(使用新的配置文件):
systemctl reload httpd
显示服务状态:
systemctl status httpd
2018-05-05