freebsd12 mysql
topへ
おすすめ記事
emyuu cms Freebsd12.0LAMP Freebsd10.0LAMP

2019-07-23 01:54:27

freebsd12 mysql
freebsd12 mysql

pkg install mysql57-server

vi rc.conf

mysql_enable=YES

起動
 /usr/local/etc/rc.d/mysql-server start



起動すると

/rootに
.mysql_secret
があるそれがrootパスワード

 
停止

 /usr/local/etc/rc.d/mysql-server stop


vi 
/usr/local/etc/mysql/my.cnf
[client]
default-character-set = utf8
[mysqld]
character-set-server = utf8
変更




ついでにmysqlのrootパスワード変更

mysql -u root -p
パスワード

root@localhost [(none)]> alter user 'root'@'localhost' identified by '新しいrootパスワード';


 
再起動

/usr/local/etc/rc.d/mysql-server restart