in reply to Re^2: system call in cgi/perl script on linux
in thread system call in cgi/perl script on linux

Step 1 - Find out the user name and group that the web server is running under.

ps -ef | grep httpd # this will show you the user id of the web server

Step 2 - Find out the permission of the directories and files you are trying to read from and write to.

ls -al /my/path

Step 3 - Change the group of your directory and files to the httpd user group, and set group read/execute permission on the directories and files.

# httpd group (you can find out from the /etc/password # and /etc/group files chgrp -R httpd /my/path chmod -R g+rx /my/path

Step 4 - Well, test again.

su - httpd # set uid to httpd user, assuming that you are the # root user and no password is required # run your cgi script from the command line. # you don't need to use a browser to test the cgi script.

By the way, you do have root access to the system, don't you?

Replies are listed 'Best First'.
Re^4: system call in cgi/perl script on linux
by Anonymous Monk on Jun 18, 2004 at 04:24 UTC

    Thank you for the hints. :)