CentOS 7 配置花生壳(phddns)自启动
花生壳是什么软件我就不多说了,不懂的可以百度一下。花生壳Linux 版本下载地址:https://hsk.oray.com/download/在页面下方可以找到Linux版本下载,根据需要选择下载版本,下载Linux版本我选的是Redhat / CentOS Linux(X86_64),这个版本才是64位的。选择下载系统版本Linux安装花生壳步骤,官网有说明,我这里...
·
花生壳是什么软件我就不多说了,不懂的可以百度一下。
花生壳Linux 版本下载地址:https://hsk.oray.com/download/
在页面下方可以找到Linux版本下载,根据需要选择下载版本,
我选的是Redhat / CentOS Linux(X86_64),这个版本才是64位的。
Linux安装花生壳步骤,官网有说明,我这里就不写了。
在linux中安装好花生壳后,进入目录:
cd /etc/systemd/system
创建启动文件:
touch phddns.service
编辑文件:
vi phddns.service
在文件中加入如下内容:
[Unit]
Description=phddns Service
Wants=network-online.target
After=network.target
[Service]
Type=simple
# default start cmd
ExecStart=/usr/sbin/phddns start
# Suppress stderr to eliminate duplicated messages in syslog. NM calls openlog()
# with LOG_PERROR when run in foreground. But systemd redirects stderr to
# syslog by default, which results in logging each message twice.
StandardOutput=syslog
StandardError=null
[Install]
WantedBy=multi-user.target
添加好后保存文件退出。
执行命令:
systemctl enable phddns.service
若出现如下提示,则说明设置启动项成功:
查看启动项命令:
systemctl list-unit-files | grep phdd
可以看见我们刚刚添加的启动服务已经是 enabled 状态了。
重启linux:
shutdown -r now
启动完成后执行:
/usr/sbin/phddns status
完美启动。
学无止境,生生不息。
更多推荐
已为社区贡献1条内容
所有评论(0)