Announcement

Collapse
No announcement yet.

Espo logs are created with wrong owner permissions

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Espo logs are created with wrong owner permissions

    Hi everybody,

    our Espo logs in /data/logs/ are created each day with wrong owner permissions. The owner should be "espouser:espogroup" but it is "root:root".
    Code:
    chown -R espouser:espogroup /data/logs
    helps till the next day.
    The default permissions in "/data/config.php" are correct:

    Code:
        'defaultPermissions' => [
            'user' => 10001,
            'group' => 1003
        ],
    What could be the problem?

    Best, Daniel

  • #2
    What the user runs cron.php in crontab?

    Comment


    • #3
      Originally posted by tanya View Post
      What the user runs cron.php in crontab?
      Ah no, it was run as root... Now I've changed it, hope it helps :-)

      Comment

      Working...
      X