I have a user that need SSH access to his log files. At the moment he can only read them in the control panel with his browser.
This is the log file I want him to access in SSH:
/var/log/httpd/domains/DOMAINNAME.TLD.log
But it don't work:
tail -f /var/log/httpd/domains/DOMAINNAME.TLD.log
tail: cannot open `/var/log/httpd/domains/DOMAINNAME.TLD.log' for
reading: Permission denied
Should I create a symbolic link for this? How would you solve this?
This is the log file I want him to access in SSH:
/var/log/httpd/domains/DOMAINNAME.TLD.log
But it don't work:
tail -f /var/log/httpd/domains/DOMAINNAME.TLD.log
tail: cannot open `/var/log/httpd/domains/DOMAINNAME.TLD.log' for
reading: Permission denied
Should I create a symbolic link for this? How would you solve this?