RabbitMQ fails to start

I faced the same problem and was able to solve the problem following the steps mentioned below. Run the command prompt as Administrator Navigate to the sbin directory and uninstall the service. rabbitmq-service remove Reinstall the service rabbitmq-service install Enable the plugins. rabbitmq-plugins enable rabbitmq_management Start the service rabbitmq-service start Go to “http://localhost:15672/”

Golang HTTP x509: certificate signed by unknown authority error

You are doing this: // NewAPIClient – creates a new API client func NewAPIClient() Client { c := &APIClient{} tr := &http.Transport{ TLSClientConfig: &tls.Config{InsecureSkyVerify: true}, // <— Problem } c.client = &http.Client{Transport: tr} return c } But it is InsecureSkipVerify instead of InsecureSkyVerify. Be careful however, because InsecureSkipVerify controls whether a client verifies the server’s … Read more