溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PhpMyAdmin 安裝手冊

發(fā)布時間:2020-06-29 22:27:25 來源:網(wǎng)絡 閱讀:941 作者:青衫解衣 欄目:web開發(fā)


首先安裝php,需要php版本大于等于5.6

CentOS 6.5的epel及remi源。

# rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm


以下是CentOS 7.0的源。

# yum install epel-release
# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm


使用yum list命令查看可安裝的包(Packege)。

# yum list --enablerepo=remi --enablerepo=remi-php56 | grep php


安裝PHP5.6


yum源配置好了,下一步就安裝PHP5.6。


# yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof


用PHP命令查看版本。

[root@Xxxxxx 15:13:48 ~]# php -v
# /etc/init.d/php-fpm restart
Stopping php-fpm:                                          [  OK  ]
Starting php-fpm:                                          [  OK  ]


安裝nginx:

yum install nginx


修改nginx的配置文件

# cat /etc/nginx/conf.d/admin.conf 
server
{
    listen 80;
    server_name _;
    index  index.html index.php;
    root /data;
    location ~ .*\.php$ {
        include fastcgi_params;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}

注釋:$document_root 這個nginx變量取的是root的值。



安裝Mysql服務:

這塊已經(jīng)封裝好的直接rpm安裝好后,啟動Mysql服務,登錄Mysql授權:

mysql> grant all privileges on *.* to 'root'@'%' identified by 'password';
Query OK, 0 rows affected (0.01 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)


下載PhpMyAdmin 軟件配置PhpMyAdmin配置文件.


首先將已經(jīng)下載的

phpMyAdmin-4.7.0-all-languages.tar.gz


解壓phpMyAdmin壓縮包重新命名.

tar zxf phpMyAdmin-4.7.0-all-languages.tar.gz
mv phpMyAdmin-4.7.0-all-languages phpMyAdmin

注釋:將phpMyAdmin移動到nginx root目錄下.



修改PhpMysqlAdmin的配置文件:

vim /data/phpMyAdmin/libraries/config.default.php


#修改為自己瀏覽器登錄訪問的url.

$cfg['PmaAbsoluteUri'] = 'http://172.16.2.24/phpMyAdmin/';

#cookie的加密密碼,防止模擬cookie破解,自己定義.

$cfg['blowfish_secret'] = '1qaz@WSX';


#Mysql server的ip

$cfg['Servers'][$i]['host'] = '172.16.2.24';


#Mysql的端口.

$cfg['Servers'][$i]['port'] = '3306';


#基于cookie認證的方式,默認為cookie.

$cfg['Servers'][$i]['auth_type'] = 'cookie';


#用戶隨便給,登錄phpMyAdmin 用Mysql授權的賬戶和密碼就能登錄

$cfg['Servers'][$i]['user'] = 'root';


#密碼隨便給,登錄phpMyAdmin 用Mysql授權的賬戶和密碼就能登錄

$cfg['Servers'][$i]['password'] = '123456';


#允許root登錄,默認開啟.

$cfg['Servers'][$i]['AllowRoot'] = true;


#關閉無密碼登錄,默認為關閉.

$cfg['Servers'][$i]['AllowNoPassword'] = false;


#修改PhpMysqlAdmin登錄默認的語言.

$cfg['DefaultLang'] = 'zh';


重啟php程序:

# /etc/init.d/php-fpm restart
Stopping php-fpm:                                          [  OK  ]
Starting php-fpm:                                          [  OK  ]



訪問瀏覽器:http://172.16.2.24/phpMyAdmin/

PhpMyAdmin 安裝手冊

用戶/密碼:Mysql 授權的用戶和密碼


網(wǎng)上很多資料說需要cp一份config.sample.inc.php 為config.inc.php,修改里面一些參數(shù),根本不需要。


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI