Sai Penmetsa
Sai Penmetsa

Reputation: 1

saltstack master minion configuration in aws

I have installed salt master and minion in different instance and I have followed these steps and installation process

enter image description here

and i have got an error

enter image description here

Upvotes: 0

Views: 188

Answers (1)

lakier
lakier

Reputation: 580

The error message is pretty self-explanatory
Your private key: /etc/private.pem has wrong (0755) permissions

Whereas it should be 600.
To fix: chmod 600 /etc/private.pem (assuming proper owner of /etc/private.pem)

Upvotes: 1

Related Questions