Chinaunix首页 | 论坛 | 博客
  • 博客访问: 171846
  • 博文数量: 40
  • 博客积分: 888
  • 博客等级: 准尉
  • 技术积分: 396
  • 用 户 组: 普通用户
  • 注册时间: 2010-09-01 10:17
文章分类
文章存档

2013年(10)

2012年(10)

2011年(11)

2010年(9)

分类: LINUX

2011-05-10 10:34:32

MySQL安装的一般步骤如下:

shell> groupadd mysql //增加组

shell> useradd -g mysql mysql //增加mysql用户
shell> tar zxvf mysql-VERSION.tar.gz  //
解压源码
shell> cd mysql-VERSION
s
hell> ./configure --prefix=/usr/local/mysql //编译参数
shell> make && make install   //
编译、安装(可能要自己创建/usr/local/mysql/var)

shell> cp xxx/my.cnf /etc/my.cnf  //把配置文件复制到全局位置,或者     mysql/etc/   (有可能是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 &

shell>cd /bin

shell> sudo ln -s /usr/local/mysql/bin/mysql mysql

 

http://blog.sina.com.cn/s/blog_643fbeef0100kkeh.html

 

阅读(1172) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~