Category Archives: Linux

MariaDB – Admin – Troubleshooting server start issues

XREF to: https://mariadb.com/kb/en/mariadb/what-to-do-if-mariadb-doesnt-start/ Q: How to track events by looking at the logs? Where are they stored? A: Named “host-name.err” and written to the data directory Note: In my case, I didn’t see specific files like that, but did see … Continue reading

Posted in Linux | Leave a comment

MariaDB – Admin – mysqladmin

mysqladmin is used to run commands against mysqld daemon XREF to this doc for info: http://www.ewhathow.com/2013/09/how-to-check-if-mysql-server-is-running-on-linux/ XREF to this MariaDB doc: https://mariadb.com/kb/en/mariadb/mysqladmin/ Q: How to check if MySQL Process is running? A: ps aux | grep mysql mysql 9555 0.0 … Continue reading

Posted in Linux | Leave a comment

MariaDB – Admin – MySQL Query commands

Information about mysqladmin (administrative program for mysqld daemon) XREF to: https://mariadb.com/kb/en/mariadb/mysqladmin/ Q: Where do you run mysql commands from? A: From within the mysql monitor Note: mysql -u root -p (Note: The password is what I set for the database … Continue reading

Posted in Linux | Leave a comment