useful:mysql-mariadb
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
useful:mysql-mariadb [2022/11/27 15:38] – admin | useful:mysql-mariadb [2024/12/02 16:49] (current) – admin | ||
---|---|---|---|
Line 2: | Line 2: | ||
====== MySQL / MariaDB ====== | ====== MySQL / MariaDB ====== | ||
+ | |||
+ | ===== Set up replication ===== | ||
+ | |||
+ | This is the command to set everything: | ||
+ | |||
+ | | ||
+ | | ||
+ | |||
+ | where the numbers 000673 and 4 will need to be changed. | ||
===== Resync replication ===== | ===== Resync replication ===== | ||
Line 48: | Line 57: | ||
Edit / | Edit / | ||
- | sudo systemd | + | sudo systemctl |
sudo systemctl start mysql # and it should finally start | sudo systemctl start mysql # and it should finally start | ||
Line 60: | Line 69: | ||
The solution I have now used is well described at [[https:// | The solution I have now used is well described at [[https:// | ||
+ | |||
+ | Except that I had a big problem with one connection, and it seems the fix is to change " | ||
+ | |||
===== Data files under /home directory ===== | ===== Data files under /home directory ===== | ||
Line 71: | Line 83: | ||
| | ||
| | ||
+ | |||
+ | It should be possible to achieve this without knowing exactly where the file is by using: | ||
+ | |||
+ | | ||
+ | |||
+ | but when I tried, it seemed not to work. | ||
+ | |||
+ | ===== Change collation for all tables in a database ===== | ||
+ | |||
+ | Remember to set the correct name for the database in this code and make sure output file does not exist: | ||
+ | |||
+ | SET @MY_SCHEMA = " | ||
+ | | ||
+ | CONCAT(" | ||
+ | FROM INFORMATION_SCHEMA.TABLES | ||
+ | WHERE TABLE_SCHEMA=@MY_SCHEMA | ||
+ | AND TABLE_TYPE=" | ||
+ | INTO OUTFILE '/ | ||
+ | |||
+ | Then run this command (changing database name as appropriate): | ||
+ | |||
+ | mysql myremos_j41 < / | ||
+ | |||
+ | ===== Get basename or dirname from a file path or similar ===== | ||
+ | |||
+ | | ||
+ | |||
+ | | ||
+ | |||
+ | ===== Create a new root user ===== | ||
+ | |||
+ | | ||
+ | GRANT ALL PRIVILEGES ON *.* TO ' | ||
useful/mysql-mariadb.1669563534.txt.gz · Last modified: 2022/11/27 15:38 by admin