Script to install RabbitMQ 3.7.9 on Centos7

Script to install RabbitMQ 3.7.9 on CentOS 7   #!/bin/bash # README # ONLY VARIABLE REQUIRED IS admin password for "rabbitmqctl add_user admin {MyPassword}" # PLease change before running script. # echo "#######################################################################"; echo "This script will install RabbitMQ 3.7.9 and open relevant firewall rules"; echo "#######################################################################"; yum -y install epel-release wget http://packages.erlang-solutions.com/erlang-solutions-1.0-1.noarch.rpm rpm -Uvh Read More…

Create LACP Bond Interface in Centos 7

Issue I had two 10Gb ports I wanted to bond in Dynamic Link Aggegration (802.3ad) To get the network interface list use: nmcli connection In my output I wanted to use ens1f0 and ens1f1 interfaces   Steps 1)  Create Bond Interface (bond0) nmcli con add type bond con-name bond0 ifname bond0 mode 4 ip4 10.32.99.12/24 10.32.99.254 Read More…

New Node Gets Stuck in PendingActive State – NetApp Solidfire

Problem: When trying to add a new NetApp Solidfire (H610S4) node to an existing cluster the node became locked in a PendingActive state.   Troubleshooting The log files showed the following error: 2019-11-25T13:47:50.149221Z node-sans11 master-1[26688]: [Bootstrapper] 26749 TickerIOService ms/Bootstrapper.cpp:1648:RunClusterSearch|Error in cluster search: ex=xInvalidVirtualNetwork at solidfire::IPAddress solidfire::VirtualNetworkInfo::ReserveAddress() (shared/VirtualNetworkInfo.cpp:302): Too few IP addresses supplied for VirtualNetwork 8   Read More…

Cryptographic Error: Trusted Certificate Entries are Not Password-protected Keytool

Problem When replacing the certificates on a vCloud Director 9.5 installation, I ran the configure command and the following error occurred. cryptographic error: trusted certificate entries are not password-protected keytool Troubleshooting Upon investigation of the keystore file it appeared that the entry type was trustedCertEntry keytool -storetype JCEKS -list -v -keystore certs.ks <snip> Alias name: http Read More…

Init: Private key not found – Apache Wont Start on CentOS

Problem When attempting to update a certificate in Apache the webserver would not restart. Apache Error Logs: [Tue Oct 29 14:42:07 2019] [error] Init: Private key not found [Tue Oct 29 14:42:07 2019] [error] SSL Library Error: 218529960 error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag [Tue Oct 29 14:42:07 2019] [error] SSL Library Error: 218640442 error:0D08303A:asn1 encoding routines:ASN1_TEMPLATE_NOEXP_D2I:nested asn1 Read More…