-
Notifications
You must be signed in to change notification settings - Fork 0
MySQL
mitochondrion edited this page Jan 12, 2018
·
9 revisions
brew update
brew install mysqlbrew services start mysql
brew services stop mysqlmysql.service start
mysql.service stopmysqladmin -u root -p statusSET PASSWORD FOR 'user'@'localhost' = PASSWORD('MyNewPass');
Create file /etc/my.cnf:
[client]
port = 3307
[mysqld]
port = 3307
bind-address = 127.0.0.1
[mysqld_safe]
[mysqldump]
[mysql]
[isamchk]