Home > Database > Mysql Tutorial > body text

Linux下安装MySQL 5.1.31过程总结

WBOY
Release: 2016-06-07 16:54:04
Original
1116 people have browsed it

参考了网上几篇资料,终于在Linux下成功安装了mysql-5.1.31。 5.1版本和之前版本的安装过程多有一些细节上的出入,造成几次都没有

参考了网上几篇资料,终于在Linux下成功安装了mysql-5.1.31。 5.1版本和之前版本的安装过程多有一些细节上的出入,,造成几次都没有安装成功,现总结如下:
# cd /home/data
# tar zxvf mysql-5.1.31.tar.gz
# cd /home/data/mysql-5.1.31
# groupadd mysql
# useradd mysql -g mysql
# ./configure --prefix=/usr/local/mysql 指定安装目录
--with-extra-charsets=GBK  添加GBK中文字符支持 ,根据实际开发决定是否需要此想象
--with-plugins=all 如果从源代码编译安装mysql,缺省安装时,是没有innodb引擎的.所以,在configure的时候,要加入--with- plugins=all(或者max),这样才会支持innodb.在mysql里可以执行show engines命令来查看当前的mysql服务器所支持的存储引擎.
# make
# make install
# cp support-files/my-medium.cnf /etc/my.cnf copy配置文件,有large,medium,small三个环境下的,根据机器性能选择,如果负荷比较大,可修改里面的一些变量的内存使用值
注意:my.cnf里注释掉--skip-federated新版本不需要这个参数了。如果需要这个引擎的在编译的时候要加上--with-plugins=federated,在my.cnf里用federated参数就行了。
先修改my.cnf,再初使化数据库,要不然过不去的。
# scripts/mysql_install_db 生成mysql用户数据库和表文件
# cp support-files/mysql.server /etc/init.d/mysqld copy启动的mysqld文件
# chmod 700 /etc/init.d/mysqld
# cd /web
# chmod 750 mysql -R
# chgrp mysql mysql -R
# chown mysql mysql/var -R  #var目录为新建的目录
# cd /web/mysql/libexec
# cp mysqld mysqld.old
# strip mysqld
# chkconfig --add mysqld
# chkconfig --level 345 mysqld on
# service mysqld start
# netstat -atln

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!