Chinaunix首页 | 论坛 | 博客
  • 博客访问: 818549
  • 博文数量: 94
  • 博客积分: 1767
  • 博客等级: 上尉
  • 技术积分: 1168
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-13 23:16
个人简介

ha

文章分类

全部博文(94)

文章存档

2014年(2)

2013年(17)

2012年(6)

2011年(15)

2010年(23)

2009年(23)

2008年(8)

我的朋友

分类: Mysql/postgreSQL

2010-02-22 11:43:27

rpm -e mysql --nodeps
groupadd mysql
useradd -g mysql mysql
tar zxvf mysql-5.0.33.tar.gz
cd mysql-5.0.33
./configure --prefix=/usr/local/mysql --with-charset=utf8 --enable-thread-safe-client
make
make install
sh scripts/mysql_install_db 
chown -R mysql.mysql /usr/local/mysql/
cp support-files/my-medium.cnf /etc/my.cnf
cp support-files/mysql.server  /etc/rc.d/init.d/mysqld
chmod +x /etc/rc.d/init.d/mysqld
chkconfig --add mysqld
chkconfig --level 35 mysqld on
chkconfig --list |grep mysql
service mysqld start

echo 'export PATH=/usr/local/mysql/bin:$PATH' >> /etc/profile
source /etc/profile

如果连接慢,可在service脚本中添加参数:
--skip-name-resolve
阅读(1028) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~