安装方式:在本文中所有依赖软件均使用最新版本源码编译安装。
操作系统:Centos7.2 x86_64位
一、编译安装 并配置 httpd 2.4.7,由于软件依赖,先安装 pcre apr 以及 apr-util
1. 下载 编译 安装 pcre
tar zxvf pcre-8.41.tar.gz cd pcre-8.41 ./configure --prefix=/opt/local/pcre-8.41 make && sudo make install
2. 下载 编译 安装 apr
wget http://mirrors.hust.edu.cn/apache//apr/apr-1.6.2.tar.gz tar zxvf apr-1.6.2.tar.gz cd apr-1.6.2 # /bin/rm: cannot remove `libtoolT': No such file or directory :/\$RM "\$cfgfile" 注释掉 :/RM=\'$RM 改为 RM='$RM -f' make && sudo make install
3. 下载 编译 安装 apr-util
cd apr-util-1.6.0 ./configure --prefix=/opt/local/apr-util-1.6.0 --with-apr=/opt/local/apr-1.6.2 --with-expat=/opt/local/expat make && sudo make install
4. 下载 编译 安装 apache2
rpm -qa | grep apr ; yum erase apr -y ./configure --prefix=/opt/local/apache2 --enable-module=shared --with-pcre=/opt/local/pcre-8.41 --with-apr-util=/opt/local/apr-util-1.6.0 --with-apr=/opt/local/apr-1.6.2 #ServerName localhost:80 取消注释
(2) 加入主页索引
二、编译安装PHP
5. PHP 源码下载时,在网页无法复制下载链接,所以先将文件下载到本机windows,然后上传到服务器
scp PHP-7.1.8.tar.gz zheng@172.16.11.236:~/
tar zxf PHP-7.1.8.tar.gz && cd PHP-7.1.8 ./configure --prefix=/opt/local/PHP-7.1.8 --with-apxs2=/opt/local/apache2/bin/apxs --with-MysqLi --with-pdo-MysqL --enable-mbstring # 通过 --with-apxs2选项,编译后会在 /opt/local/apache2/modules/ 生成 libPHP7.so文件 make && sudo make install
三、配置PHPMyAdmin
6. 下载 配置 PHPMyAdmin
wget https://files.PHPmyadmin.net/PHPMyAdmin/4.7.4/PHPMyAdmin-4.7.4-all-languages.tar.gz tar zxf PHPMyAdmin-4.7.4-all-languages.tar.gz ; mv PHPMyAdmin-4.7.4-all-languages PHPMyAdmin
# apache2 文档默认位置是 /opt/local/apache2/htdocs/,将PHPMyAdmin复制到htdocs下,省略了httpd.conf的配置,直接在浏览器访问 PHPMyAdmin即可
sudo cp -rf PHPMyAdmin /opt/local/apache2/htdocs/
# 配置 PHPMyAdmin的数据库连接
sudo cp /opt/local/apache2/htdocs/PHPMyAdmin/config.sample.inc.PHP /opt/local/apache2/htdocs/PHPMyAdmin/config.inc.PHP
sudo vim /opt/local/apache2/htdocs/PHPMyAdmin/config.inc.PHP
7.浏览器访问 PHPMyAdmin
原文链接:https://www.f2er.com/centos/375894.html