分离php和mysql搭建LAMP平台.docVIP

  • 1
  • 0
  • 约2.85千字
  • 约 5页
  • 2019-07-02 发布于江西
  • 举报
分离php和mysql搭建LAMP平台 正常情况下,同一台服务器上搭建LAMP平台各组件安装顺序:Linux-mysql-apache-php。其中,mysql和apache安装没有前后顺序。下面针对mysql和apache+php不在同一服务器,如何实现php连接到Mysql 安装mysql服务器() 创建mysql运行用户 Useradd -M -u 30 -s /sbin/nologin mysql(这里用户必须是mysql) b) 解码mysql源码包 Tar zxf mysql-5.1.55.tar.gz -C /usr/src/ c) 配置并制定安装路径 ./configure --prefix=/usr/local/mysql --with-charset=utf8 --with-collation=utf8_general_ci --with-extra-charsets=gbk,gb2312 d)修改include子文件夹下的config.h文件,实现完美支持gbk,gb2312字符集编码 Vim include/config,h #define HAVE_CHARSET_GBK 1 #define HAVE_CHARSET_GB2312 1 E) 编译安装 make make install F)建立f配置文件 cp support-files/f /etc/f G) 初始化数据库文件,授予Mysql用户运行权限 /usr/local/mysql/bin/mysql_install_db --user=mysql Chown -R root:mysql /usr/local/mysql Chown -R mysql /usr/local/mysql/var/ H)优化路径 Ln -s /usr/local/mysql/bin/* /usr/local/bin Ln -s /usr/local/mysql/lib/mysql/* /usr/lib/ Ln -s /usr/local/mysql/include/mysql/* /usr/include I) 添加系统服务 cp /usr/src/mysql-5.1.55/support-fils/mysql.server /etc/init.d/mysqld chmod a+x /etc/init.d/mysqld chkconfig --add mysqld 启动mysql服务 J) 授权mysql管理员远程登录mysql数据库 Update mysql.user set host=’’ where host=’’; Flush privileges; apache+php安装() Apache安装 卸载rpm包安装的httpd服务 Rpm -e httpd [--nodeps] 解包 Tar zxf httpd-2.2.17-tar.gz /usr/src 配置 ./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-charset-lite --enable-cgi 编译安装 Make make install 优化路径 Ln -s /usr/local/httpd/bin/* /usr/local/bin/ 添加系统服务 Cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd Vim /etc/init.d/httpd # chkconfig: 35 85 15 # description: sdfljsdljflsadjfljd!! Chkconfig --add httpd /etc/init.d/httpd start b)PHP安装 安装数据加密等扩展工具(libmcrypt mhash mcrypt) 注意:mcrypt包最后装 需要的路径优化: Ln -s /usr/local/lib/libmcrypt* /usr/lib Ln -s /usr/local/lib/libmhash.* /usr/lib 编译安装PHP Tar zxf php-5.3.6.tar.gz -C /usr/src/ Cd /usr/src/php-5.3.6/ ./configure --prefix=/usr/local/php5 -with-mcrypt --with-apxs2=/usr/local/httpd/bin/apxs -with-config-file-path=/usr/loca/php5 --

文档评论(0)

1亿VIP精品文档

相关文档