Unable to access files on the tmp directory












3















I am trying to access the .json file that I have downloaded to the /tmp/ directory using the ebconfig to store private keys on S3.



files:
"/tmp/firebaseadminsdk.json" :
mode: "000400"
owner: root
group: root
authentication: "S3Auth"
source: 'source url'


But its giving me the following error



Error: EACCES: permission denied, open '/tmp/firebaseadminsdk.json'



There a paragraph in the documentation which says



The second entry uses the S3Auth authentication method to download the private key from the specified URL and save it to /etc/pki/tls/certs/server.key. The proxy server can then read the private key from this location to terminate HTTPS connections at the instance.



Unfortunately I am not using any proxy as it is recommended not to use one and if I was to change it to , it causes the health of the instance to turn to severe.



I have double confirm that the IAM account has read and write access to the bucket containing the file. I have also added a bucket policy to give the IAM account full access to interact with the bucket as seen below
enter image description here



{
"Version": "2012-10-17",
"Id": "Policy1546355608026",
"Statement": [
{
"Sid": "Stmt_____",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::______:role/aws-elasticbeanstalk-ec2-role"
},
"Action": "s3:*",
"Resource": "arn:aws:s3:::_____/firebaseadminsdk.json"
}
]
}


I also went to ec2 into my instance and added the S3fullaccess policy to the IAM role being used by the instance but after doing all of that the error still remains.



I am also using a load balancer which might cause some issues?



Error Message



Error: EACCES: permission denied, open '/tmp/firebaseadminsdk.json'
at Object.openSync (fs.js:436:3)
at Object.readFileSync (fs.js:341:35)
at Object.Module._extensions..json (internal/modules/cjs/loader.js:705:20)
at Module.load (internal/modules/cjs/loader.js:598:32)
at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
at Function.Module._load (internal/modules/cjs/loader.js:529:3)
at Module.require (internal/modules/cjs/loader.js:636:17)
at require (internal/modules/cjs/helpers.js:20:18)
at Object.<anonymous> (/var/app/current/index.js:9:22)
at Module._compile (internal/modules/cjs/loader.js:688:30)
fs.js:115
throw err;









share|improve this question

























  • Please check this. stackoverflow.com/questions/38323880/…

    – Bira
    Jan 18 at 5:40











  • I have a .npmrc file that includes unsafe-perm=true but that did not help

    – Rj Tng
    Jan 20 at 14:06











  • are you the owner of AWS account ?

    – Bira
    Jan 21 at 5:47











  • I am in the root account yes

    – Rj Tng
    Jan 21 at 6:58











  • can you remove the first slash and try ? "tmp/firebaseadminsdk.json"

    – Bira
    Jan 21 at 9:25
















3















I am trying to access the .json file that I have downloaded to the /tmp/ directory using the ebconfig to store private keys on S3.



files:
"/tmp/firebaseadminsdk.json" :
mode: "000400"
owner: root
group: root
authentication: "S3Auth"
source: 'source url'


But its giving me the following error



Error: EACCES: permission denied, open '/tmp/firebaseadminsdk.json'



There a paragraph in the documentation which says



The second entry uses the S3Auth authentication method to download the private key from the specified URL and save it to /etc/pki/tls/certs/server.key. The proxy server can then read the private key from this location to terminate HTTPS connections at the instance.



Unfortunately I am not using any proxy as it is recommended not to use one and if I was to change it to , it causes the health of the instance to turn to severe.



I have double confirm that the IAM account has read and write access to the bucket containing the file. I have also added a bucket policy to give the IAM account full access to interact with the bucket as seen below
enter image description here



{
"Version": "2012-10-17",
"Id": "Policy1546355608026",
"Statement": [
{
"Sid": "Stmt_____",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::______:role/aws-elasticbeanstalk-ec2-role"
},
"Action": "s3:*",
"Resource": "arn:aws:s3:::_____/firebaseadminsdk.json"
}
]
}


I also went to ec2 into my instance and added the S3fullaccess policy to the IAM role being used by the instance but after doing all of that the error still remains.



I am also using a load balancer which might cause some issues?



Error Message



Error: EACCES: permission denied, open '/tmp/firebaseadminsdk.json'
at Object.openSync (fs.js:436:3)
at Object.readFileSync (fs.js:341:35)
at Object.Module._extensions..json (internal/modules/cjs/loader.js:705:20)
at Module.load (internal/modules/cjs/loader.js:598:32)
at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
at Function.Module._load (internal/modules/cjs/loader.js:529:3)
at Module.require (internal/modules/cjs/loader.js:636:17)
at require (internal/modules/cjs/helpers.js:20:18)
at Object.<anonymous> (/var/app/current/index.js:9:22)
at Module._compile (internal/modules/cjs/loader.js:688:30)
fs.js:115
throw err;









share|improve this question

























  • Please check this. stackoverflow.com/questions/38323880/…

    – Bira
    Jan 18 at 5:40











  • I have a .npmrc file that includes unsafe-perm=true but that did not help

    – Rj Tng
    Jan 20 at 14:06











  • are you the owner of AWS account ?

    – Bira
    Jan 21 at 5:47











  • I am in the root account yes

    – Rj Tng
    Jan 21 at 6:58











  • can you remove the first slash and try ? "tmp/firebaseadminsdk.json"

    – Bira
    Jan 21 at 9:25














3












3








3








I am trying to access the .json file that I have downloaded to the /tmp/ directory using the ebconfig to store private keys on S3.



files:
"/tmp/firebaseadminsdk.json" :
mode: "000400"
owner: root
group: root
authentication: "S3Auth"
source: 'source url'


But its giving me the following error



Error: EACCES: permission denied, open '/tmp/firebaseadminsdk.json'



There a paragraph in the documentation which says



The second entry uses the S3Auth authentication method to download the private key from the specified URL and save it to /etc/pki/tls/certs/server.key. The proxy server can then read the private key from this location to terminate HTTPS connections at the instance.



Unfortunately I am not using any proxy as it is recommended not to use one and if I was to change it to , it causes the health of the instance to turn to severe.



I have double confirm that the IAM account has read and write access to the bucket containing the file. I have also added a bucket policy to give the IAM account full access to interact with the bucket as seen below
enter image description here



{
"Version": "2012-10-17",
"Id": "Policy1546355608026",
"Statement": [
{
"Sid": "Stmt_____",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::______:role/aws-elasticbeanstalk-ec2-role"
},
"Action": "s3:*",
"Resource": "arn:aws:s3:::_____/firebaseadminsdk.json"
}
]
}


I also went to ec2 into my instance and added the S3fullaccess policy to the IAM role being used by the instance but after doing all of that the error still remains.



I am also using a load balancer which might cause some issues?



Error Message



Error: EACCES: permission denied, open '/tmp/firebaseadminsdk.json'
at Object.openSync (fs.js:436:3)
at Object.readFileSync (fs.js:341:35)
at Object.Module._extensions..json (internal/modules/cjs/loader.js:705:20)
at Module.load (internal/modules/cjs/loader.js:598:32)
at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
at Function.Module._load (internal/modules/cjs/loader.js:529:3)
at Module.require (internal/modules/cjs/loader.js:636:17)
at require (internal/modules/cjs/helpers.js:20:18)
at Object.<anonymous> (/var/app/current/index.js:9:22)
at Module._compile (internal/modules/cjs/loader.js:688:30)
fs.js:115
throw err;









share|improve this question
















I am trying to access the .json file that I have downloaded to the /tmp/ directory using the ebconfig to store private keys on S3.



files:
"/tmp/firebaseadminsdk.json" :
mode: "000400"
owner: root
group: root
authentication: "S3Auth"
source: 'source url'


But its giving me the following error



Error: EACCES: permission denied, open '/tmp/firebaseadminsdk.json'



There a paragraph in the documentation which says



The second entry uses the S3Auth authentication method to download the private key from the specified URL and save it to /etc/pki/tls/certs/server.key. The proxy server can then read the private key from this location to terminate HTTPS connections at the instance.



Unfortunately I am not using any proxy as it is recommended not to use one and if I was to change it to , it causes the health of the instance to turn to severe.



I have double confirm that the IAM account has read and write access to the bucket containing the file. I have also added a bucket policy to give the IAM account full access to interact with the bucket as seen below
enter image description here



{
"Version": "2012-10-17",
"Id": "Policy1546355608026",
"Statement": [
{
"Sid": "Stmt_____",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::______:role/aws-elasticbeanstalk-ec2-role"
},
"Action": "s3:*",
"Resource": "arn:aws:s3:::_____/firebaseadminsdk.json"
}
]
}


I also went to ec2 into my instance and added the S3fullaccess policy to the IAM role being used by the instance but after doing all of that the error still remains.



I am also using a load balancer which might cause some issues?



Error Message



Error: EACCES: permission denied, open '/tmp/firebaseadminsdk.json'
at Object.openSync (fs.js:436:3)
at Object.readFileSync (fs.js:341:35)
at Object.Module._extensions..json (internal/modules/cjs/loader.js:705:20)
at Module.load (internal/modules/cjs/loader.js:598:32)
at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
at Function.Module._load (internal/modules/cjs/loader.js:529:3)
at Module.require (internal/modules/cjs/loader.js:636:17)
at require (internal/modules/cjs/helpers.js:20:18)
at Object.<anonymous> (/var/app/current/index.js:9:22)
at Module._compile (internal/modules/cjs/loader.js:688:30)
fs.js:115
throw err;






amazon-web-services amazon-s3 amazon-elastic-beanstalk






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 20 at 14:04







Rj Tng

















asked Jan 2 at 11:24









Rj TngRj Tng

518




518













  • Please check this. stackoverflow.com/questions/38323880/…

    – Bira
    Jan 18 at 5:40











  • I have a .npmrc file that includes unsafe-perm=true but that did not help

    – Rj Tng
    Jan 20 at 14:06











  • are you the owner of AWS account ?

    – Bira
    Jan 21 at 5:47











  • I am in the root account yes

    – Rj Tng
    Jan 21 at 6:58











  • can you remove the first slash and try ? "tmp/firebaseadminsdk.json"

    – Bira
    Jan 21 at 9:25



















  • Please check this. stackoverflow.com/questions/38323880/…

    – Bira
    Jan 18 at 5:40











  • I have a .npmrc file that includes unsafe-perm=true but that did not help

    – Rj Tng
    Jan 20 at 14:06











  • are you the owner of AWS account ?

    – Bira
    Jan 21 at 5:47











  • I am in the root account yes

    – Rj Tng
    Jan 21 at 6:58











  • can you remove the first slash and try ? "tmp/firebaseadminsdk.json"

    – Bira
    Jan 21 at 9:25

















Please check this. stackoverflow.com/questions/38323880/…

– Bira
Jan 18 at 5:40





Please check this. stackoverflow.com/questions/38323880/…

– Bira
Jan 18 at 5:40













I have a .npmrc file that includes unsafe-perm=true but that did not help

– Rj Tng
Jan 20 at 14:06





I have a .npmrc file that includes unsafe-perm=true but that did not help

– Rj Tng
Jan 20 at 14:06













are you the owner of AWS account ?

– Bira
Jan 21 at 5:47





are you the owner of AWS account ?

– Bira
Jan 21 at 5:47













I am in the root account yes

– Rj Tng
Jan 21 at 6:58





I am in the root account yes

– Rj Tng
Jan 21 at 6:58













can you remove the first slash and try ? "tmp/firebaseadminsdk.json"

– Bira
Jan 21 at 9:25





can you remove the first slash and try ? "tmp/firebaseadminsdk.json"

– Bira
Jan 21 at 9:25












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005464%2funable-to-access-files-on-the-tmp-directory%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005464%2funable-to-access-files-on-the-tmp-directory%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

A Topological Invariant for $pi_3(U(n))$