LoginSignup
1
0

More than 3 years have passed since last update.

lsyncdで「Error: Temporary or permanent failure on startup of "/xxx/yyy/zzz/". Terminating since "insist" is not set.」が出た場合の対処

Last updated at Posted at 2021-02-08

エラー内容

lsyncdをインストールし、さて起動するかと思ったものの起動せず。
lsyncd.logには以下のエラーが出力されていた。

Error: Temporary or permanent failure on startup of "/xxx/yyy/zzz/". Terminating since "insist" is not set.

環境

  • Amazon Linux 2
  • lsyncd: Version: 2.2.2

対応

lsyncd.confに insist = 1, を追記することで起動できた。

変更前

lsyncd.conf
settings{
        logfile = "/var/log/lsyncd.log",
        statusFile = "/tmp/lsyncd.stat",
        statusInterval = 5,
}

変更後

lsyncd.conf
settings{
        logfile = "/var/log/lsyncd.log",
        statusFile = "/tmp/lsyncd.stat",
        statusInterval = 5,
        insist = 1,
}

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0