Login as root and Create keys on Master
make a directory to hold SSL certs
mkdir -p /var/lib/mysql
cd /var/lib/mysql
Use openssl to generate a key file.
openssl genrsa 2048 > ca-key.pem
openssl req -new -x509 -nodes -days 730 -key ca-key.pem -out ca-...
To set up a server as a master add the following to the [server] section of the config file
The config file for Hestia is in /etc/mysql/mariadb.conf.d/50-server.cnf
server-id =
ser...
To check disk status using perccli64, use commands like perccli64 /c0 show
for a controller summary, 'perccli64 /c0/eall/sall show' for physical drive status, and 'perccli64 /c0/vall show' for virtual drive status.
percc...
How can I tell what date my Linux system was installed?
Try the following command
sudo ls -alct /|tail -1|awk '{print $6, $7, $8}'
Or alternatively use this and look for the Birth Line.
stat /