FreeBSD MySQL - eiichiromomma/CVMLAB GitHub Wiki

(FreeBSD) MySQL

インストール

portsを使ってインストール

make -DWITH_CHARSET=sjis install

起動

rc.confに

mysql_enable="YES"

を追加して

/usr/local/etc/rc.d/mysql-server.sh start

以後は再起動の度に自動起動

初めにやること

%mysqladmin -u root password ********

パスは丸出しなので色々注意。 パス無しのユーザが登録されているらしいので削除。

%mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 47 to server version: 4.0.26

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> delete from user where password = "";
Query OK, 3 rows affected (0.00 sec)

mysql>\q

ifconfigでaliasを使う時

listenを明示する。

mysql_args="--bind-address= aliasしたIP"