Wednesday, January 20, 2016

Failed to connect to 127.0.0.1:27017, reason: errno:111 Connection refused

run mongod process with the dbpath parameter

mongod --dbpath /home/mongo/data/db

create the path if it does not exits.

Sunday, January 17, 2016

Jenkins scp plugin - can't connect to server issue, Jenkins scp repositories - can't connect to server, SEVERE: Algorithm negotiation fail

The issue can be resolve, by opening the /etc/ssh/sshd_config file and add the following line:

KexAlgorithms diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1

save and then restart ssh server: service ssh restart.

The problem is fixed.