Home > Database > Mysql Tutorial > linux 源码安装mysql5.5_MySQL

linux 源码安装mysql5.5_MySQL

WBOY
Release: 2016-06-01 13:13:03
Original
1001 people have browsed it

linux下源码安装mysql步骤如下:

yum updateyum upgradeyum install -y vim man wgetyum install -y gcc gcc-c++ gcc-g77 pcre-devel openssl-devel bison autoconf automake make libcurl-devel gd-devel zlib* fiex* libxml* ncurses-devel libmcrypt* libtool-ltdl-devel*wget http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gzwget http://mysql.cs.pu.edu.tw/Downloads/MySQL-5.5/mysql-5.5.30.tar.gztar -zxvf cmake-2.8.10.2.tar.gz cd cmake-2.8.10.2./bootstrap gmake gmake install cd .. cmake --help cmake --versioncp -rf ./cmake-2.8.10.2 /usr/local/cmakerm -rf ./cmake-2.8.10.2 ls cmake --version groupadd mysql useradd -r -g mysql mysqltar -zxvf mysql-5.5.30.tar.gzcd mysql-5.5.30 cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DSYSCONFDIR=/usr/local/mysql -DWITH_INNOBASE_STORAGE_ENGINE=1 -DDEFAULT_CHARSET=utf8 -DEXTRA_CHARSETS=all -DDEFAULT_COLLATION=utf8_general_ci -DMYSQL_USER=mysql -DMYSQL_TCP_PORT=3306 -DWITH_DEBUG=0 makemake installchown -R mysql.mysql /usr/local/mysql/cp /usr/local/mysql/support-files/my-medium.cnf /etc/my.cnfcd /usr/local/mysql//usr/local/mysql/scripts/mysql_install_db --user=mysqlcp support-files/mysql.server /etc/init.d/mysqld chmod +x /etc/init.d/mysqldchkconfig --level 345 mysqld on Vim /etc/profileexportPATH=$PATH:$HOME/bin:/usr/local/mysql/bin:/usr/local/mysql/lib service mysqld start service mysqld stop
Copy after login
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