MySQLのインストール
●事前準備 |
# yum -y install ncurses-devel |
●インストール |
# groupadd -g 27 mysql $ cd /tmp |
●設定 |
# vi /etc/ld.so.conf.d/mysql.conf # ldconfig # cp /usr/local/share/mysql/my-medium.cnf /etc/my.cnf : # cp /usr/local/share/mysql/mysql.server /etc/rc.d/init.d/mysql --- 以下、Heartbeat管理のスタンバイの場合はしない --- # cd /data/db/mysql # chkconfig mysql on ※Heartbeat管理の場合はしない # mysqladmin -u root password '********' Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> USE mysql; mysql> FLUSH PRIVILEGES; mysql> exit |