2、使用sudo systemctl enable 命令添加到开机启动项
1、族扰新增文件
vi /usr/lib/systemd/system/redis.service
添加以下内容:
[Unit]
Description=Redis Server Manager
After=network.target
[Service]
Type=forking
PIDFile=/var/run/redis_6379.pid
ExecStart=/usr/local/bin/redis-server /etc/redis.conf
ExecReload=/bin/kill -USR2 $MAINPID
ExecStop=/春仿bin/kill -SIGINT $MAINPID
PrivateTmp=true
[Install]
WantedBy=multi-user.target
EOF
2、添加开机启动
sudo systemctl enable redis.service
service 服务名 start 不过,后面答晌脊centos7 ,改成用systemctl了在 centos7 版本中的 各项服务启动命令:
服务管理命令
1、Apache 服务管理谨闹命令启动清渗:
systemctl start httpd关闭:
systemctl stop httpd重启:
systemctl restart httpd状态:
systemctl status httpd
1添加开机自启服务:在CentOS 7中添加开机自启服务非常方便,只需要两条命令(以Jenkins为例):systemctl enable jenkins.service #设置jenkins服务为自启动服务。sysstemctl start jenkins.service #启动jenkins服务。2添加开机自启脚本:在centos7中增加脚本有两种常用的方法,以脚本autostart.sh为例:#!/bin/bash#description:开机自启脚本,/usr/local/tomcat/bin/startup.sh #启动tomcat。亮搜
3赋予脚本可执行权限(/opt/script/autostart.sh是你的脚本路径)chmod +x /opt/script/autostart.sh。打开/etc/rc.d/rc/local文件,在末尾增加如下码键纳内容/opt/script/autostart.sh。
4在centos7中,/etc/rc.d/rc.local的权限被降低了,所以迟没需要执行如下命令赋予其可执行权限,chmod +x /etc/rc.d/rc.local。
5将脚本移动到/etc/rc.d/init.d目录下,mv /opt/script/autostart.sh /etc/rc.d/init.d,增加脚本的可执行权限,chmod +x /etc/rc.d/init.d/autostart.sh。
6添加脚本到开机自动启动项目中,cd /etc/rc.d/init.d,chkconfig --add autostart.sh,chkconfig autostart.sh on。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)