OSS Fan ~OSSでLinuxサーバ構築~

このエントリーをはてなブックマークに追加

MySQL 5.0をCentOS 5.5へインストールして初期設定

カテゴリ:OSSセットアップ | ソフトウェア:MySQL | タグ:
最終更新日:2020/11/23 | 公開日:2011/02/21

目次

構成

サーバ構成

OSバージョン

CentOS 5.5 x86_64

パッケージ一覧

  • perl-DBI-1.52-2.el5.x86_64.rpm
  • mysql-5.0.77-4.el5_4.2.x86_64.rpm
  • perl-DBD-MySQL-3.0007-2.el5.x86_64.rpm
  • mysql-server-5.0.77-4.el5_4.2.x86_64.rpm

環境構築

インストール

 MySQLサーバに必要なパッケージを4つインストールします。 DVDドライブにCentOS 5.5のDVD-ROMをセットし、以下のコマンドを実行します。

# mount -t iso9660 /dev/cdrom /media/cdrom
mount: block device /dev/cdrom is write-protected, mounting read-only
# cd /media/cdrom/CentOS/
# rpm -ihv perl-DBI-1.52-2.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:perl-DBI               ########################################### [100%]
# rpm -ihv mysql-5.0.77-4.el5_4.2.x86_64.rpm
Preparing...                ########################################### [100%]
   1:mysql                  ########################################### [100%]
# rpm -ihv perl-DBD-MySQL-3.0007-2.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:perl-DBD-MySQL         ########################################### [100%]
# rpm -ihv mysql-server-5.0.77-4.el5_4.2.x86_64.rpm
Preparing...                ########################################### [100%]
   1:mysql-server           ########################################### [100%]
# cd
# umount /media/cdrom

設定

MySQLサーバの起動ランレベル変更

 OSの起動に併せてデーモンを自動起動する設定に変更します。

# chkconfig mysqld on

MySQLサーバの起動

 rcスクリプトを使用してデーモンを起動します。

# /etc/rc.d/init.d/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 mysql.ranonet.ne.jp 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  ]

MySQLサーバのrootユーザのパスワード設定

 MySQLのrootユーザは初期状態ではパスワードが設定されていません。 そのため、パスワードを入力しなくてもMySQLサーバにログインできてしまします。 ここでは仮に「mysqlroot」というパスワードを設定します。

# mysql -u root -p
Enter password: (何も入力せずにEnterキーを押す)
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.0.77 Source distribution

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

mysql> set password for root@"localhost"=password("mysqlroot");
Query OK, 0 rows affected (0.00 sec)

mysql> exit
Bye