My JIRA was installed on Ubuntu Server 16.04. I used the terminal to access the log files located at /var/atlassian/application-data/jira/log/atlassian-jira.log. I used sudo account and was able to change the directory to /var/atlassian/application-data/, but when I wanted to go further to /var/atlassian/application-data/jira directory with sudo account, I got: Permission denied. I am not allowed to get my log files. What is preventing sudo from access jira directory?
Your account does not have permission to use the directory.
sudo <command> only takes root priviliges while it runs and drops access when the command finishes, so "sudo cd <directory>" will work in that it changes directory, but when it finishes, your normal account is dropped back to where it was before because it has no rights to be in there.
Try
sudo ls -l /var/atlassian/application-data/jira
sudo ls -l /var/atlassian/application-data/jira/log
suco cat /var/atlassian/application-data/jira/log/atlassian-jira.log
What are the permissions set to?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.