PstSystems

A place to record by projects

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

set CA common name to "MariaDB admin"

openssl req -new -x509 -nodes -days 730 -key ca-key.pem -out ca-...

How do I set up MySQL Replication?

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.

Here's a breakdown of useful perccli64 commands:

1. Controller Summary:

percc...

How can I tell when my Linux system (Ubuntu, Debian, etc..) was installed?

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 /