skip to Main Content

I want to create a new cronjob via Plesk. After submit the configuration i get the error from my topic.
I have tried chmod and chown to the crontabmng without success.
my crontabmng owner is
root:root and the permission is -rwxr-xr-x

2

Answers


  1. Chosen as BEST ANSWER

    SOLVED i think with the following:

    service psa stopall
    chown root.psaadm /usr/local/psa/admin/sbin/wrapper
    chmod 4110 /usr/local/psa/admin/sbin/wrapper
    chown root.psaadm /usr/local/psa/admin/sbin/mod_wrapper
    chmod 4110 /usr/local/psa/admin/sbin/mod_wrapper
    

    and the last step takes some time

    service psa start
    

    for now its all running and i get no errors.

    hope it helps.


  2. Check for suid bit ‘s’ on /usr/bin/crontab:

    # ls -la /usr/bin/crontab
    -rwsr-xr-x. 1 root root 57552 Mar 31  2016 /usr/bin/crontab
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search