...
For the customers
Go to Setup → Users → Customers and select the color palette for every customer you want to modify.
Now you can upload a picture. The needed size of that picture is described in the inline help.
infoNow your customer will see that icon on the login screen as well as after the login.
info
For the provider
For the provider, there is no guy GUI way to do that. So we will need to work on the command line. Inside the checkmk instance, we store the icons in:
Code Block language bash theme RDark OMD[mysite]:~$ ls share/check_mk/web/htdocs/themes/
So there is a way to create a local branch and add your custom icon. To achieve that successfully, you must use the same icon names stored in share/check_mk/web/htdocs/themes/. The name of that icon for the log in is mk-logo.png
The easiest way to move the icons to the provider is to copy the paths. Checkmk has two directories for the dark and light themes. In that example, I'm using root to copy both directories. After that, I must change the permissions to the Checkmk instance name.
Code Block language bash theme RDark cp -r /omd/sites/mysite/local/share/check_mk/web/htdocs/themes/* /omd/sites/mysite/local/share/check_mk/web/htdocs/themes/ chown -R cme2. /omd/sites/mysite/local/share/check_mk/web/htdocs/themes/*
Now you changed the login icon of the provider site successfully:
Info
Note |
---|
In the CME checkmk tries to autoscale the icon automatically. In any other addition, that is not done. That's why you see an overlapping. In this case, there is also overlapping in the CME edition because the icon is much taller than wide. |
...