在ubuntu上配置LAMP架构
Posted Frankiee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ubuntu上配置LAMP架构相关的知识,希望对你有一定的参考价值。
1. 安装mysql /* ubuntu默认进入系统是普通用户 所以在真实工作中,我们会得到root的授权。 所以我们需要用sudo做一切只有root才能完成的操作。 */ [[email protected] ~]# cd /usr/local/src [[email protected] src]# wget http://mirrors.sohu.com/mysql/MySQL-5.5/mysql-5.5.47-linux2.6-x86_64.tar.gz [[email protected] src]# tar zxvf mysql-5.5.47-linux2.6-x86_64.tar.gz [[email protected] src]# mv mysql-5.5.47-linux2.6-x86_64 /usr/local/mysql [[email protected] src]# useradd -s /sbin/nologin mysql //建立MySQL账户,账号用来运行mysql服务 [[email protected] src]# cd /usr/local/mysql [[email protected] mysql]# mkdir -p /data/mysql //创建datadir, 数据库文件都会放在这里面 [[email protected] mysql]# chown -R mysql:mysql /data/mysql //更改权限 并建立家目录 [[email protected] mysql]# ./scripts/mysql_install_db --user=mysql --datadir=/data/mysql //初始化 [[email protected] mysql]# cp support-files/my-large.cnf /etc/my.cnf //拷贝配置文件 [[email protected] mysql]# cp support-files/mysql.server /etc/init.d/mysqld //拷贝启动脚本 [[email protected] mysql]# chmod 755 /etc/init.d/mysqld //修改启动脚本的权限 [[email protected] mysql]# vim /etc/init.d/mysqld //修改启动脚本 ... ... basedir= datadir=/data/mysql ... ... [[email protected] mysql]# chkconfig --add mysqld //加入系统服务项 [[email protected] mysql]# chkconfig mysqld on //开机自启动 [[email protected] mysql]# service mysqld start //启动MySQL [[email protected] mysql]# ps aux|grep mysqld
!!此处会产生的错误!!
// 初始化时遇到的错误 1 ./bin/mysqld: error while loading shared libraries : libaio.so.1:cannot open shared object file:directory --> (root) apt-get install libaio1 (user) sudo apt-get install libaio1
以上是关于在ubuntu上配置LAMP架构的主要内容,如果未能解决你的问题,请参考以下文章