Reputation: 1
I have installed salt master and minion in different instance and I have followed these steps and installation process
and i have got an error
Upvotes: 0
Views: 188
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