...
Status | ||||
---|---|---|---|---|
|
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
|
...
This happens when a filename contains a non-ASCII character somewhere within a site's ~/local directory. This prevents the central site from being able to replace the contents of ~/local on the remote sites.
Tip | ||
---|---|---|
| ||
...
As the site user, within the command line on your central site, go to your site users ~/local folder.
Code Block language bash theme RDark OMD[mysite]:~$ cd ~/local
.
Run the following two commands:
Code Block language bash theme RDark OMD[mysite]:~/local$ find . -type f | xargs ls -ltr |grep --color='auto' -P -n "[^\x00-\x7F]" OMD[mysite]:~/local$ find . -type f | grep --color='auto' -P -n "[^\x00-\x7F]"
.
In this example, the above commands located a file named bad_filξ_namξ.txt which the non-ASCII character is the ξ.
Code Block language bash theme RDark OMD[mysite]:~/local/share/doc/check_mk$ bad_filξ_namξ.txt
.
- This file must be deleted, and then changes must be activated again. After all sites have been activated, this issue should be resolved.
Related articles
...