标签:tail blog script 支持 net 替换 bin ali 空白
Systemctl enable keepalived.service #设置keepalived服务为自启动服务
Systemctl start keepalived.service #启动keepalived服务
1、赋予脚本可执行权限(/usr/local/auto_start_script/auto_start_redis.sh是你的脚本路径)
chmod +x /usr/local/auto_start_script/auto_start_redis.sh
2、打开/etc/rc.d/rc.local文件,在末尾增加如下内容
/usr/local/auto_start_script/auto_start_redis.sh
3、在centos7.5中,/etc/rc.d/rc.local的权限被降低了,所以需要执行如下命令赋予其可执行权限
chmod +x /etc/rc.d/rc.local
1、将脚本移动到/etc/rc.d/init.d目录下
mv /usr/local/auto_start_script/auto_start_redis.sh /etc/rc.d/init.d
2、增加脚本的可执行权限
chmod +x /etc/rc.d/init.d/auto_start_redis.sh
3、添加脚本到开机自动启动项目中
cd /etc/rc.d/init.d
chkconfig --add auto_start_redis.sh
chkconfig auto_start_redis.sh on
请注意检查脚本的前面,是否有完整的两行:
#chkconfig: 2345 80 90
#description:auto_run
在脚本前面这两行是不能少的,否则不能chkconfig命令会报错误。
用指令:
sed -i ‘s/\r$//‘ build.sh
会把 build.sh 中的\r 替换成空白!
————————————————
原文链接:https://blog.csdn.net/bang152101/java/article/details/106332212
标签:tail blog script 支持 net 替换 bin ali 空白
原文地址:https://www.cnblogs.com/ajqz/p/13278461.html