自宅サーバー構築メモ(9) MySQL

MySQL インストール

# yum install mysql-server

=============================================================================
 Package                 Arch       Version          Repository        Size
=============================================================================
Installing:
 mysql-server            i386       5.0.45-6.fc8     updates           9.8 M
Installing for dependencies:
 mysql                   i386       5.0.45-6.fc8     updates           2.7 M
 mysql-libs              i386       5.0.45-6.fc8     updates           1.5 M
 perl-DBD-MySQL          i386       4.005-2.fc8.1    fedora            143 k
 perl-DBI                i386       1.58-2.fc8       fedora            715 k
=============================================================================

設定

# vi /etc/my.cnf
default-character-set=utf8

起動

# /etc/rc.d/init.d/mysqld start

# chkconfig mysqld on
# chkconfig --list mysqld

root パスワード設定

# mysql -u root