Различия
Показаны различия между двумя версиями страницы.
| Предыдущая версия справа и слеваПредыдущая версияСледующая версия | Предыдущая версия | ||
| unbound:when-unbound-wont-write-logs [2019/10/28 11:11] – Anthony | unbound:when-unbound-wont-write-logs [2019/10/28 11:16] (текущий) – Anthony | ||
|---|---|---|---|
| Строка 3: | Строка 3: | ||
| Since I have set up my own e-mail server solution, I am using unbound as a local reverse DNS for rspamd. It works great… So great, that I haven’t noticed that it does not log anything until today… | Since I have set up my own e-mail server solution, I am using unbound as a local reverse DNS for rspamd. It works great… So great, that I haven’t noticed that it does not log anything until today… | ||
| - | Error as seen when restarting the service or looking into syslog: | + | Error as seen when restarting the service or looking into syslog: |
| - | So to fix the issue, we have to edit the settings: | + | <code> |
| + | error Could not open logfile | ||
| + | </ | ||
| + | |||
| + | The permissions on the file are okay, but the problem was with apparmor. | ||
| + | |||
| + | So to fix the issue, we have to edit the settings: | ||
| + | |||
| + | < | ||
| + | $ vim / | ||
| + | |||
| + | </ | ||
| + | |||
| + | Add this line: | ||
| + | |||
| + | < | ||
| + | # Site-specific additions and overrides for usr.sbin.unbound. | ||
| # For more details, please see / | # For more details, please see / | ||
| - | / | + | / |
| + | |||
| + | </code> | ||
| + | |||
| + | Reload apparmor config and restart unbound services: | ||
| + | |||
| + | <code> | ||
| + | # apparmor_parser -r / | ||
| + | |||
| + | </ | ||
| + | < | ||
| + | service unbound restart | ||
| + | |||
| + | </code> | ||