How to find the stderr/stdout log for the bootstrap action of EMR

Viewed 1522

I have a EMR cluster created with a bootstrap action (B.A) and the console shows there are errors for the B.A.

Is there any way I could check the stderr/stdout for the B.A just like the normal steps?

1 Answers

They are located at /mnt/var/log/bootstrap-actions on EMR master node. You can check these docs for where other logs are located. As a side note, the logs are being continuously written to while EMR cluster is being initialized so you can tail -f them.

Related