Skip to content

Commit

Permalink
Merge pull request #755 from jmrenouard/master
Browse files Browse the repository at this point in the history
Adding specific MariaDB sysschema installer
  • Loading branch information
jmrenouard committed Feb 6, 2024
2 parents 6cc7ff2 + d9ccab2 commit cbb2534
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ Sysschema is installed by default under MySQL 5.7 and MySQL 8 from Oracle.
By default, on MySQL 5.6/5.7/8, performance schema is enabled by default.
For previous MySQL 5.6 version, you can follow this command to create a new database sys containing very useful view on Performance schema:

Sysschema for MySQL old version
--

```bash
curl "https://codeload.github.com/mysql/mysql-sys/zip/master" > sysschema.zip
# check zip file
Expand All @@ -150,6 +153,19 @@ cd mysql-sys-master
mysql -uroot -p < sys_56.sql
```

Sysschema for MariaDB old version
--

```bash
curl "https://github.com/FromDual/mariadb-sys/archive/refs/heads/master.zip" > sysschema.zip
# check zip file
unzip -l sysschema.zip
unzip sysschema.zip
cd mariadb-sys-master
mysql -u root -p < ./sys_10.sql
```


Performance schema setup
--

Expand Down

0 comments on commit cbb2534

Please sign in to comment.