User “postgres” Has No Password Assigned

Problem When trying to remotely connect to Postgres 10.10 install for the first time I got and authentication error via pgadmin From the log files (/var/lib/pgsql/10/data/log/postgresql-Wed.log) 2019-09-25 14:05:38.970 BST [22665] FATAL:  password authentication failed for user "postgres" 2019-09-25 14:05:38.970 BST [22665] DETAIL:  User "postgres" has no password assigned.         Connection matched pg_hba.conf Read More…

Debug NSX Edge Traffic

OS: NSX Edge: 6.4.x   Show routing table show ip route   Show Interfaces show int   Display debug information on a specific interface debug packet display interface {int_name} eg debug packet display interface vNic_2   Display debug information on specific interface and remote host debug packet display interface {int_name} host_{IP Address}  eg debug packet display Read More…

Script to Customize CentOS 7 Install in a VMware Environment

#!/bin/bash echo "#######################################################################"; echo "This script will Update the OS, install useful tools and configure NTP"; echo "#######################################################################"; #Update OS yum update -y #install useful tools yum install telnet -y yum install bind-utils -y # install vmware tools yum install -y open-vm-tools systemctl enable vmtoolsd.service systemctl status vmtoolsd.service # Disable selinux /usr/bin/sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config Read More…