服务启动脚本编写 (Centos 6)

服务启动脚本编写 (Centos 6)

数据备份服务

启动服务命令 : rsync --daemon

停止服务命令 : killall rsync

服务脚本 :

第一步 : case 语句判断参数信息,真正启动,重启或停止服务 ;

第二步 : chkconfig: 2345 10 90 ( 1 2 3 )

  1. 在什么运行级别 启动此服务

  2. 服务启动顺序

  3. 服务关闭顺序

第三步 : 加载服务程序开机自启命令;

chkconfig --add rsync

chkconfig rsync on

Centos 7见以下链接 :

https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/system_administrators_guide/sect-managing_services_with_systemd-unit_files

你可能感兴趣的:(服务启动脚本编写 (Centos 6))