Linux Couldn't access full permission file
I've a file in /var/ folder which is created by www-data application. Ownership and permission of the file is,
-rw-r--r-- 1 www-data www-data 74214 Feb 18 17:00 sample.pdf
I tried to access this pdf by using non sudo user.
pdftk /var/myproj/www/sample.pdf
It gives me the error,
Unable to find file.
Error: Failed to open PDF file:
/var/myproj/www/sample.pdf
For the sake, I've changed the permission to '777
' and tried to access the same again.
-rwxrwxrwx 1 www-data www-data 74214 Feb 18 17:00 sample.pdf
This time also I'm getting the same error. I have changed that directory permission also to 777
. But It gives me the same error why? My ubuntu version is '18.04'
.
18.04 permissions
add a comment |
I've a file in /var/ folder which is created by www-data application. Ownership and permission of the file is,
-rw-r--r-- 1 www-data www-data 74214 Feb 18 17:00 sample.pdf
I tried to access this pdf by using non sudo user.
pdftk /var/myproj/www/sample.pdf
It gives me the error,
Unable to find file.
Error: Failed to open PDF file:
/var/myproj/www/sample.pdf
For the sake, I've changed the permission to '777
' and tried to access the same again.
-rwxrwxrwx 1 www-data www-data 74214 Feb 18 17:00 sample.pdf
This time also I'm getting the same error. I have changed that directory permission also to 777
. But It gives me the same error why? My ubuntu version is '18.04'
.
18.04 permissions
Unable to find file
makes me think the file just isn't located where you expect it to be. Please edit your post and add the output ofls -ld /var /var/myproj /var/myproj/www /var/myproj/www/sample.pdf
.
– PerlDuck
Feb 18 at 13:34
add a comment |
I've a file in /var/ folder which is created by www-data application. Ownership and permission of the file is,
-rw-r--r-- 1 www-data www-data 74214 Feb 18 17:00 sample.pdf
I tried to access this pdf by using non sudo user.
pdftk /var/myproj/www/sample.pdf
It gives me the error,
Unable to find file.
Error: Failed to open PDF file:
/var/myproj/www/sample.pdf
For the sake, I've changed the permission to '777
' and tried to access the same again.
-rwxrwxrwx 1 www-data www-data 74214 Feb 18 17:00 sample.pdf
This time also I'm getting the same error. I have changed that directory permission also to 777
. But It gives me the same error why? My ubuntu version is '18.04'
.
18.04 permissions
I've a file in /var/ folder which is created by www-data application. Ownership and permission of the file is,
-rw-r--r-- 1 www-data www-data 74214 Feb 18 17:00 sample.pdf
I tried to access this pdf by using non sudo user.
pdftk /var/myproj/www/sample.pdf
It gives me the error,
Unable to find file.
Error: Failed to open PDF file:
/var/myproj/www/sample.pdf
For the sake, I've changed the permission to '777
' and tried to access the same again.
-rwxrwxrwx 1 www-data www-data 74214 Feb 18 17:00 sample.pdf
This time also I'm getting the same error. I have changed that directory permission also to 777
. But It gives me the same error why? My ubuntu version is '18.04'
.
18.04 permissions
18.04 permissions
asked Feb 18 at 11:41
Smith DwayneSmith Dwayne
1477
1477
Unable to find file
makes me think the file just isn't located where you expect it to be. Please edit your post and add the output ofls -ld /var /var/myproj /var/myproj/www /var/myproj/www/sample.pdf
.
– PerlDuck
Feb 18 at 13:34
add a comment |
Unable to find file
makes me think the file just isn't located where you expect it to be. Please edit your post and add the output ofls -ld /var /var/myproj /var/myproj/www /var/myproj/www/sample.pdf
.
– PerlDuck
Feb 18 at 13:34
Unable to find file
makes me think the file just isn't located where you expect it to be. Please edit your post and add the output of ls -ld /var /var/myproj /var/myproj/www /var/myproj/www/sample.pdf
.– PerlDuck
Feb 18 at 13:34
Unable to find file
makes me think the file just isn't located where you expect it to be. Please edit your post and add the output of ls -ld /var /var/myproj /var/myproj/www /var/myproj/www/sample.pdf
.– PerlDuck
Feb 18 at 13:34
add a comment |
1 Answer
1
active
oldest
votes
I believe you need to set the permission on that specific file. And I do not recommend setting those permission on a folder, it is very insecure
So it would be
chmod 777 /var/myproj/www/sample.pdf
There is also a chance you don't own the file, so
chown your-user /var/myproj/www/sample.pdf
Please note that certain application will automatically rechange permissions back to default, and sudo is usually needed to change file permissions.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1119202%2flinux-couldnt-access-full-permission-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I believe you need to set the permission on that specific file. And I do not recommend setting those permission on a folder, it is very insecure
So it would be
chmod 777 /var/myproj/www/sample.pdf
There is also a chance you don't own the file, so
chown your-user /var/myproj/www/sample.pdf
Please note that certain application will automatically rechange permissions back to default, and sudo is usually needed to change file permissions.
add a comment |
I believe you need to set the permission on that specific file. And I do not recommend setting those permission on a folder, it is very insecure
So it would be
chmod 777 /var/myproj/www/sample.pdf
There is also a chance you don't own the file, so
chown your-user /var/myproj/www/sample.pdf
Please note that certain application will automatically rechange permissions back to default, and sudo is usually needed to change file permissions.
add a comment |
I believe you need to set the permission on that specific file. And I do not recommend setting those permission on a folder, it is very insecure
So it would be
chmod 777 /var/myproj/www/sample.pdf
There is also a chance you don't own the file, so
chown your-user /var/myproj/www/sample.pdf
Please note that certain application will automatically rechange permissions back to default, and sudo is usually needed to change file permissions.
I believe you need to set the permission on that specific file. And I do not recommend setting those permission on a folder, it is very insecure
So it would be
chmod 777 /var/myproj/www/sample.pdf
There is also a chance you don't own the file, so
chown your-user /var/myproj/www/sample.pdf
Please note that certain application will automatically rechange permissions back to default, and sudo is usually needed to change file permissions.
answered Feb 18 at 11:45
colbycdevcolbycdev
12810
12810
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1119202%2flinux-couldnt-access-full-permission-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Unable to find file
makes me think the file just isn't located where you expect it to be. Please edit your post and add the output ofls -ld /var /var/myproj /var/myproj/www /var/myproj/www/sample.pdf
.– PerlDuck
Feb 18 at 13:34