Chinaunix首页 | 论坛 | 博客
  • 博客访问: 103653776
  • 博文数量: 19283
  • 博客积分: 9968
  • 博客等级: 上将
  • 技术积分: 196062
  • 用 户 组: 普通用户
  • 注册时间: 2007-02-07 14:28
文章分类

全部博文(19283)

文章存档

2011年(1)

2009年(125)

2008年(19094)

2007年(63)

分类: Mysql/postgreSQL

2008-04-05 13:20:45

作者: itchinax 出自:
 shell> groupadd mysql(不要变这个名字)
shell> useradd -g mysql mysql(不要变这个名字)
shell> tar zxvf mysql-VERSION.tar.gz
shell> cd mysql-VERSION
shell> ./configure --prefix=/usr/local/mysql --with-charset=gb2312
shell> make
shell> make install
shell> scripts/mysql_install_db
shell> chown -R root /usr/local/mysql
shell> chown -R mysql /usr/local/mysql/var
shell> chgrp -R mysql /usr/local/mysql
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> /usr/local/mysql/bin/mysqld_safe --user=mysql &

这样进入:
shell> cd /use/local/mysql/bin
shell> ./mysql -u root -p(我也不知道问什么要加个./)
enter password:回车就OK了

开机自动加载MySQL

/usr/local/mysql/share/mysql/mysql.server复制到/etc/init.d
shell>chkconfig –add mysql.server使MySQL在开机时自动运行
阅读(451) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~