Database

Installing sqlitebrowser on RHEL7 / CentOS7

Install some dependencies I was also using devtoolset-8 for GCC 8.3 (default in CentOS 7 is GCC 4.8). I’m guessing GCC 4.8 will probably build OK, but I didn’t test this. Instructions for installing and enabling devtoolset-8 are here. Prepare, acquire, configure, build, install Now, there should be a “sqlitebrowser” command to start the app …

Installing sqlitebrowser on RHEL7 / CentOS7 Read More »

Transferring all MySQL/MariaDB databases

This command will export everything… mysqldump -u root -p –all-databases –skip-lock-tables > everything.sql This command will import everything (and overwrite old stuff)… mysql -u root -p < everything.sql