首先安裝php,需要php版本大于等于5.6
站在用戶的角度思考問題,與客戶深入溝通,找到惠陽網(wǎng)站設(shè)計與惠陽網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站設(shè)計制作、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名注冊、虛擬空間、企業(yè)郵箱。業(yè)務(wù)覆蓋惠陽地區(qū)。
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服務(wù):
這塊已經(jīng)封裝好的直接rpm安裝好后,啟動Mysql服務(wù),登錄Mysql授權(quán):
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認(rèn)證的方式,默認(rèn)為cookie.
$cfg['Servers'][$i]['auth_type'] = 'cookie';
#用戶隨便給,登錄phpMyAdmin 用Mysql授權(quán)的賬戶和密碼就能登錄
$cfg['Servers'][$i]['user'] = 'root';
#密碼隨便給,登錄phpMyAdmin 用Mysql授權(quán)的賬戶和密碼就能登錄
$cfg['Servers'][$i]['password'] = '123456';
#允許root登錄,默認(rèn)開啟.
$cfg['Servers'][$i]['AllowRoot'] = true;
#關(guān)閉無密碼登錄,默認(rèn)為關(guān)閉.
$cfg['Servers'][$i]['AllowNoPassword'] = false;
#修改PhpMysqlAdmin登錄默認(rèn)的語言.
$cfg['DefaultLang'] = 'zh';
重啟php程序:
# /etc/init.d/php-fpm restart Stopping php-fpm: [ OK ] Starting php-fpm: [ OK ]
訪問瀏覽器:http://172.16.2.24/phpMyAdmin/
用戶/密碼:Mysql 授權(quán)的用戶和密碼
網(wǎng)上很多資料說需要cp一份config.sample.inc.php 為config.inc.php,修改里面一些參數(shù),根本不需要。