您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“Linux如何搭建phpMyAdmin”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Linux如何搭建phpMyAdmin”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
我們先來搞定一些先決條件
關閉selinux并重啟系統生效
# sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config && shutdown -r now
然后我們安裝phpMyAdmin需要的php擴展
# yum install php73-php-mysqlnd.x86_64 php73-php-mbstring.x86_64 -y# chown -R nginx:nginx /var/opt/remi/php73/lib/php/
重啟php
# systemctl restart php73-php-fpm.service
下載phpMyAdmin源代碼
# wget https://files.phpmyadmin.net/phpMyAdmin/4.9.0.1/phpMyAdmin-4.9.0.1-all-languages.zip
安裝zip,并解壓下載的源代碼
# yum install zip unzip -y && unzip phpMyAdmin-4.9.0.1-all-languages.zip
移動phpMyAdmin源代碼到網頁目錄下并把權限設置為nginx
# mv phpMyAdmin-4.9.0.1-all-languages /usr/share/nginx/html/phpMyAdmin && chown -R nginx:nginx /usr/share/nginx/html/phpMyAdmin
配置phpMyAdmin的短語密碼
# sed -i "108 s/''/'自己隨機生成32為密碼就行'/g" /usr/share/nginx/html/phpMyAdmin/libraries/config.default.php
示例:
# sed -i "108 s/''/'M4HUkD8rwVPo919e36Rp5zItiPqprByh'/g" /usr/share/nginx/html/phpMyAdmin/libraries/config.default.php
我們打開網頁登錄phpMyAdmin,創建phpmyadmin數據庫,看下面的gif動態圖,登錄→查找原因→創建
http://IP地址/phpMyAdmin/index.php
我們先來搞定一些先決條件
安裝phpMyAdmin需要的php擴展
# apt install php7.3-mysql php7.3-mbstring -y
下載phpMyAdmin源代碼
# wget https://files.phpmyadmin.net/phpMyAdmin/4.9.0.1/phpMyAdmin-4.9.0.1-all-languages.zip安裝zip,并解壓下載的源代碼# apt install zip unzip -y && unzip phpMyAdmin-4.9.0.1-all-languages.zip
移動phpMyAdmin源代碼到網頁目錄下并把權限設置為nginx
# mv phpMyAdmin-4.9.0.1-all-languages /usr/share/nginx/html/phpMyAdmin && chown -R nginx:nginx /usr/share/nginx/html/phpMyAdmin
配置phpMyAdmin的短語密碼
# sed -i "108 s/''/'自己隨機生成32為密碼就行'/g" /usr/share/nginx/html/phpMyAdmin/libraries/config.default.php
示例:
# sed -i "108 s/''/'M4HUkD8rwVPo919e36Rp5zItiPqprByh'/g" /usr/share/nginx/html/phpMyAdmin/libraries/config.default.php
我們打開網頁登錄phpMyAdmin,創建phpmyadmin數據庫,看下面的gif動態圖,登錄→查找原因→創建
http://IP地址/phpMyAdmin/index.php
讀到這里,這篇“Linux如何搭建phpMyAdmin”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。