码迷,mamicode.com
首页 > 数据库 > 详细

LNMP_mysql安装_1

时间:2016-07-31 08:02:59      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:lnmp

cd /usr/local/src
wget http://mirrors.sohu.com/mysql/MySQL-5.6/mysql-5.6.31-linux-glibc2.5-x86_64.tar.gz
tar zxvf mysql-5.6.29-linux-glibc2.5-x86_64.tar.gz
mv mysql-5.6.29-linux-glibc2.5-x86_64 /usr/local/mysql
useradd -s /sbin/nologin mysql
cd /usr/local/mysql
mkdir -p /data/mysql ; chown -R mysql:mysql /data/mysql
./scripts/mysql_install_db --user=mysql --datadir=/data/mysql
cp support-files/my-default.cnf /etc/my.cnf
cp support-files/mysql.server /etc/init.d/mysqld
chmod 755 /etc/init.d/mysqld
vim /etc/init.d/mysqld   #修改datadir
技术分享
chkconfig --add mysqld
chkconfig mysqld on
service mysqld start
错误:

技术分享

技术分享

技术分享

技术分享


本文出自 “IT屌丝” 博客,请务必保留此出处http://68686789.blog.51cto.com/10438688/1832228

LNMP_mysql安装_1

标签:lnmp

原文地址:http://68686789.blog.51cto.com/10438688/1832228

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!