Centos7.2 編譯安裝方式搭建 phpMyAdmin

背景說明:phpMyAdmin 是經過瀏覽器管理MySQL數據庫的很方便的工具php

安裝方式:在本文中全部依賴軟件均使用最新版本源碼編譯安裝。mysql

操做系統:Centos7.2  x86_64位sql

1、編譯安裝 並配置 httpd 2.4.7,因爲軟件依賴,先安裝 pcre apr 以及 apr-util數據庫

1. 下載 編譯 安裝 pcreapache

tar zxvf pcre-8.41.tar.gz
cd pcre-8.41
./configure --prefix=/opt/local/pcre-8.41
make && sudo make install


2. 下載 編譯 安裝 aprvim

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-utilwindows

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 取消註釋

配置httpd.conf 以便 支持 php7服務器

(1)加入 庫文件支持php7

(2) 加入主頁索引

(3)加入文件類型支持

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

3、配置phpMyAdmin

訪問 https://www.phpmyadmin.net/files/

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

相關文章
相關標籤/搜索