mysql 5.6.25安装
useradd -M-s /sbin/nologinmysql;yum -y installgcc gcc-c++ gcc-g77 autoconf automake zlib* fiex* libxml* ncurses-devel libmcrypt* libtool-ltdl-devel* make cmake;
tar zxvf mysql-5.6.25.tar.gz ;tar zxvf cmake-3.2.3.tar.gz
cd cmake-3.2.3;
./bootstrap;
gmake;
make install ;
cd ../mysql-5.6.25;
cmake -DCMAKE_INSTALL_PREFIX=/opt/mysql/;make ;make install
chown -R mysql.mysql /opt/mysql
cd /opt/mysql/scripts
./mysql_install_db --user=mysql --basedir=/opt/mysql --datadir=/opt/mysql/data
cd /opt/mysql/support-files
cp mysql.server /etc/rc.d/init.d/mysqld
cp my-default.cnf /etc/my.cnf
chkconfig --add mysqld
chkconfig mysqld on
chkconfig --level 35 mysqld on
页:
[1]