动态 DNS (DDNS) 客户端工具官方项目地址 GoDNS
运行 GoDNS
有几种方法可以运行 GoDNS。
作为手动守护进程
nohup ./godns &
注意:程序停止时,不会重新启动。
作为托管守护进程(带有暴发户)
首先安装upstart(如果还没有)
复制./upstart/godns.conf到/etc/init 文件夹(并根据您的需要进行调整)
启动服务:
sudo start godns
作为托管守护进程(使用 systemd)
复制./systemd/godns.service到/lib/systemd/system 文件夹(并根据您的需要进行调整)
启动服务:
systemctl daemon-reload #更新配置
sudo systemctl enable godns #开机启动
sudo systemctl start godns #启动
systemctl status godns #查看状态
systemctl restart godns #重启
systemctl disable godns #禁止开机启动