您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么用Centos編譯安裝方式搭建phpMyAdmin”,在日常操作中,相信很多人在怎么用Centos編譯安裝方式搭建phpMyAdmin問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么用Centos編譯安裝方式搭建phpMyAdmin”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
背景說明:phpmyadmin 是通過瀏覽器管理mysql數(shù)據(jù)庫的很方便的工具
安裝方式:在本文中所有依賴軟件均使用最新版本源碼編譯安裝。
操作系統(tǒng):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 取消注釋
配置httpd.conf 以便 支持 php7
(1)加入 庫文件支持
(2) 加入主頁索引
(3)加入文件類型支持
二、編譯安裝php
5. php 源碼下載時,在網(wǎng)頁無法復(fù)制下載鏈接,所以先將文件下載到本機windows,然后上傳到服務(wù)器
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復(fù)制到htdocs下,省略了httpd.conf的配置,直接在瀏覽器訪問 phpmyadmin即可 sudo cp -rf phpmyadmin /opt/local/apache2/htdocs/ # 配置 phpmyadmin的數(shù)據(jù)庫連接 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
到此,關(guān)于“怎么用Centos編譯安裝方式搭建phpMyAdmin”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。