Added docs on using innodb_file_per_table=1 in my.cnf

This commit is contained in:
laf 2016-01-20 00:37:22 +00:00
parent dfc32107b5
commit 012c3eab0b
3 changed files with 10 additions and 1 deletions

View File

@ -43,6 +43,10 @@ If you are deploying a separate database server, you need to change the `bind-ad
vim /etc/mysql/my.cnf
Within the [mysqld] section please add:
innodb_file_per_table=1
Find the line: `bind-address = 127.0.0.1`
Change `127.0.0.1` to the IP address that your MySQL server should listen on. Restart MySQL:

View File

@ -73,8 +73,9 @@ If you are deploying a separate database server, you need to change the `bind-ad
vim /etc/my.cnf
Add the following line:
Add the following lines:
innodb_file_per_table=1
bind-address = <ip>
Change `<ip>` to the IP address that your MySQL server should listen on. Restart MySQL:

View File

@ -42,6 +42,10 @@ If you are deploying a separate database server, you need to change the `bind-ad
vim /etc/mysql/my.cnf
Within the [mysqld] section please add:
innodb_file_per_table=1
Find the line: `bind-address = 127.0.0.1`
Change `127.0.0.1` to the IP address that your MySQL server should listen on. Restart MySQL: