I ran tcpdump on the Ubuntu server while filtering for traffic on port 3306. I see bi-directional traffic between the services/daemons. I also see something about "caching sha 2 password". I saw this mentioned in another thread, but I didn't understand how the issue was resolved. Any g...
php /** * database connection details ***/ $db['host'] = 'localhost'; $db['user'] = 'phpipam'; $db['pass'] = 'phpipamadmin'; $db['name'] = 'phpipam'; $db['port'] = 3306; #$define['BASE', "/var/www/phpipam/"] /** * SSL options for MySQL * See http://php.net...
apiVersion: v1 kind: Service metadata: name: mysql-service labels: app: mysql tier: backend spec: selector: app: mysql ports: - port: 3306 targetPort: 3306 --- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: mysql-pv-claim spec: accessModes: - ReadWriteOnce resources: reques...
# mysql --ssl-ca=/etc/ssl/lets_encrypt/letsencrypt_root_intermediate_bundle_.pem --ssl-mode=REQUIRED --user=root --host=mysql1-kvm.domain --port=3306 --password="admin_password" --execute="SELECT User, Host, Plugin, HEX(authentication_string) FROM mysql.user;" mysql: [Warning] Using...