Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. For the customers

    1. Go to Setup → Users → Customers and select for every customer the color palette

      Info




    2. Now you can upload a picture. The needed size of that picture is described in the inline help

      Info


    3. Now your customer will see that icon in the login screen as well as after the login

      Info


  2. For the provider
    1. For the provider, there is no guy 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
      languagebash
      themeRDark
      OMD[cme2]:~$ ls share/check_mk/web/htdocs/themes/

      so there is a way to create a local branch and put in your custom icon there. To achieve that successfully, you need to use the same icon names as stored in share/check_mk/web/htdocs/themes/. The name of that icon for the login is mk-logo.png

    2. The easiest way to move the icons to the provider is to copy the paths. Checkmk has two directories for the dark and light theme

      :

      . In that example, I'm using root to copy both directories. After that, i need to change the permissions to the Checkmk instance name.

      Code Block
      languagebash
      themeRDark
      cp -r /omd/sites/cme2slave/local/share/check_mk/web/htdocs/themes/* /omd/sites/cme2/local/share/check_mk/web/htdocs/themes/
      ➜  ~
      chown -R cme2. /omd/sites/cme2/local/share/check_mk/web/htdocs/themes/*


    3. Now you changed successfully the login icon of the provider site:

      Info


...