- 在 GUI 下,可由 系統工具→軟體 中設定
- 輸入關鍵字「php」搜尋後,安裝下列所勾選的 8 個套件
PHP scripting language for creating dynamic web sites
Command-line interface for PHP
Common files for PHP
A module for PHP applications for using the graphics library
A module for PHP applications that use MySQL databases
A module for PHP applications which need multi-byte string handling
Standard PHP module provides mcrypt library support
A database access abstraction module for PHP applications
- 連線至:https://www.phpmyadmin.net/ 下載 phpMyAdmin
並解壓縮放至 /var/www/html/ 下
將資料夾更名為 phpMyAdmin
- # restorecon -R /var/www/html/phpMyAdmin/
# systemctl restart httpd.service
修改文件屬性後,重啟 Apache 服務
- # cd /var/www/html/phpMyAdmin/
進入 /var/www/html/phpMyAdmin 目錄
# cp config.sample.inc.php config.inc.php
複製 config.sample.inc.php 成 config.inc.php
# gedit config.inc.php
編輯 config.inc.php
- 修改下列兩個地方:
$cfg['blowfish_secret'] = '任意字串';
cookie 認證用密碼,可隨意填寫
$cfg['Servers'][$i]['AllowNoPassword'] = true;
允許使用空白密碼登入
- # systemctl restart httpd.service
修改完成後重新啟動 Apache
即可用無密碼狀態以 root 登入 phpMyAdmin
- 為了安全性,請先修改 root 密碼,並刪除其他訪客帳號