zj2092 发表于 2018-9-29 06:53:26

linux下mysql源码安装

源码编译安装:   shell> groupadd mysql  shell> useradd -g mysql mysql
  shell> gunzip < mysql-VERSION.tar.gz | tar -xvf -
  shell> cd mysql-VERSION
  shell> ./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/var--with-
  shell> make
  shell> make install
  shell> cp support-files/my-medium.cnf /etc/my.cnf
  shell> cd /usr/local/mysql
  shell> bin/mysql_install_db --user=mysql
  shell> chown -R root.
  shell> chown -R mysql var
  shell> chgrp -R mysql .
  shell> bin/mysqld_safe --user=mysql &

页: [1]
查看完整版本: linux下mysql源码安装