以前のリビジョンの文書です


このwikiでは基本的にCentOSなどREDHAT系OSでの操作方法をまとめています。

インストール

yumを使ってインストール

# yum -y install mysql-server

設定

  • 文字コードをUTF-8にする

# vi /etc/my.cnf

 [mysqld]
 datadir=/var/lib/mysq\\l  socket=/var/lib/mysql/mysql.sock
 # Default to using old password format for compatibility with mysql 3.x
 # clients (those using the mysqlclient10 compatibility package).
 old_passwords=1
 default-character-set = utf8  ←追加

 [mysql]                  ←追加
 default-character-set = utf8  ←追加

起動

# service mysqld start

 MySQL データベースを初期化中: Installing MySQL system tables…
 OK
 Filling help tables…
 OK

 To start mysqld at boot time you have to copy
 support-files/mysql.server to the right place for your system

 PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
 To do so, start the server, then issue the following commands:
 /usr/bin/mysqladmin -u root password 'new-password'
 /usr/bin/mysqladmin -u root -h fedora9.fedorasrv.com password 'new-password'

 Alternatively you can run:
 /usr/bin/mysql_secure_installation

 which will also give you the option of removing the test
 databases and anonymous user created by default. This is
 strongly recommended for production servers.

 See the manual for more instructions.

 You can start the MySQL daemon with:
 cd /usr ; /usr/bin/mysqld_safe &

 You can test the MySQL daemon with mysql-test-run.pl
 cd mysql-test ; perl mysql-test-run.pl

 Please report any problems with the /usr/bin/mysqlbug script!

 The latest information about MySQL is available on the web at
 http://www.mysql.com
 Support MySQL by buying support/licenses at http://shop.mysql.com
                                  [ OK ]
 MySQL を起動中:                         [ OK ]

  • 自動起動するように設定しておく

chkconfig mysqld on

linux/mysql.1222188615.txt.gz · 最終更新: 2008/09/23 16:50 by miyako
CC Attribution-Noncommercial-Share Alike 3.0 Unported
www.chimeric.de Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0