aannjose
aannjose

Reputation: 74

How to set up a new puppet master for my current running environment

I had a bad situation where my puppet master running on ec2 instance got terminated.I managed to setup a new master server ,but now my clients are not able to connect to the new master .I use the same vip which is configured on route 53.Is there a way that I can direct my clients to my new master and force them to create a new client certificate ?

Upvotes: 0

Views: 38

Answers (1)

John Bollinger
John Bollinger

Reputation: 180201

You can delete the clients' current certificates (location depends on Puppet version, configuration, and user; check the docs). Having done so, they should issue certificate requests to the master on the next catalog run. It sounds like the new master is reachable at the same name / location as the old, so you should not need to modify client configurations. You will need to either turn on certificate autosigning at the new master or manually sign the new certs.

Upvotes: 1

Related Questions