我试图运行我的lsynd的脚本与监督,以便让它始终运行。我已经为我的主管编写了这个文件
[program:autostart_lsyncd]
command=bash -c "lsyncd /home/sync/lsyncd_script.lua"
autostart=true
autorestart=unexpected
numprocs=1
startsecs = 0
stderr_logfile=/var/log/autostart_sync.err.log
stdout_logfile=/var/log/autostart_sync.out.log脚本在启动时运行正常,但它总是退出。
2018-04-09 09:48:49,638 INFO success: autostart_lsyncd entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
2018-04-09 09:48:49,639 INFO exited: autostart_lsyncd (exit status 0; expected)我不明白这是否是保持lsynd脚本存活的正确方法。有什么建议吗?
发布于 2018-10-09 10:36:52
我正在使用这个配置来监控文件/etc/主管/conf.d/lsyncd.conf中的etc。
[program:lsyncd]
command=/usr/bin/lsyncd -nodaemon /etc/lsyncd/lsyncd.conf.lua
autostart=true
autorestart=unexpected
startretries=3这个配置到lsyncd (/etc/lsyncd/lsyncd.conf.etc):
settings {
logfile = "/var/log/lsyncd/lsyncd.log",
statusFile = "/var/log/lsyncd/lsyncd.status"
}
sync {
default.rsync,
source="/var/www/html/sites/default/files",
target="root@cdn:/var/www/html/sites/default/files",
exclude = {"*.php", "*.po", "\.ht*"},
rsync = {
archive = false,
acls = false,
compress = true,
links = false,
owner = false,
perms = false,
verbose = true,
rsh = "/usr/bin/ssh -p 22 -o StrictHostKeyChecking=no"
}
}此外,我还配置了ssh键,并在服务器中安装了rsync。
https://stackoverflow.com/questions/49730097
复制相似问题