style: fix markdownlint issues
This commit is contained in:
parent
dee1f340b8
commit
1d4829a4d8
1 changed files with 9 additions and 3 deletions
|
|
@ -130,17 +130,22 @@ MariaDB:
|
|||
|
||||
```shell
|
||||
mysql -u root -p -e "CREATE DATABASE IF NOT EXISTS databeast;"
|
||||
mariadb-dump -h source.example.com -u root -p --single-transaction --databases databeast | mysql -u root -psupersecure
|
||||
mariadb-dump -h source.example.com -u root -psupersecuresource \
|
||||
--single-transaction \
|
||||
--databases databeast | mysql -u root -psupersecure
|
||||
```
|
||||
|
||||
MySQL:
|
||||
|
||||
```shell
|
||||
mysql -u root -psupersecuresource -e "CREATE DATABASE IF NOT EXISTS databeast;"
|
||||
mysqldump -u root -h source.example.com -psupersecuresource --single-transaction --set-gtid-purged=ON --source-data=1 --databases pms | mysql -u root -psupersecure
|
||||
mysqldump -u root -h source.example.com -psupersecuresource \
|
||||
--single-transaction \
|
||||
--set-gtid-purged=ON \
|
||||
--source-data=1 \
|
||||
--databases pms | mysql -u root -psupersecure
|
||||
```
|
||||
|
||||
|
||||
### Activate replication
|
||||
|
||||
```shell
|
||||
|
|
@ -161,6 +166,7 @@ START SLAVE;
|
|||
```
|
||||
|
||||
MySQL:
|
||||
|
||||
```shell
|
||||
STOP REPLICA;
|
||||
RESET REPLICA;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue