CentOSにyumでmysqlをインストールするメモ
1.versionの確認
#yum list mysql*
2.MySQLをインストール
#yum install mysql-server* -y
3.mySQL起動
#service mysqld start
4.mysqlにログイン
#mysql uroot -p
5.databaseの確認
#show databases;
6.データベースrootユーザの権限を修正
#grant all privileges on *.* to 'root’@’%’ identified by 'startNewsPwd#24’ with grant option;
#flush privileges
7.ファイアウォールの管理
有効:chkconfig iptables on
無効:chkconfig iptables off
起動:service iptables start
停止:service iptables stop