mysql安装

Posted on 2011-01-21 11:16 李春生 阅读(242) 评论(0)  编辑  收藏 所属分类: linuxmysql
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
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 &

只有注册用户登录后才能发表评论。


网站导航:
 

posts - 5, comments - 10, trackbacks - 0, articles - 23

Copyright © 李春生