1. 程式人生 > >實驗:LAMP的php模塊方式應用phpmyadm和wordpress

實驗:LAMP的php模塊方式應用phpmyadm和wordpress

linux

實驗:LAMP的php模塊方式應用phpmyadm和wordpress


兩臺主機

一臺A:httpd,php

一臺B:mariadb server


1 A:

yum httpd php php-mysql


vim /etc/php.ini

date.timezone = Asia/Shanghai


vim /etc/httpd/conf/httpd.conf


DirectoryIndex index.php index.html



systemctl restart httpd



vim /var/www/html/index.php



2 B

yum install mariadb-server

systemctl start mariadb


mysql_secure_installation


mysql -uroot -pcentos

>grant all on *.* to root@‘192.168.37.%‘ identified by ‘centos‘;


vim /var/www/html/index2.php

close();



測試 http://websrv/


3 實現phpmyadmin

yum install php-mbstring


unzip phpMyAdmin-4.0.10.20-all-languages.zip

cp -r phpMyAdmin-4.0.10.20-all-languages /var/www/html/pma

cd /var/www/html/pma

cp config.sample.inc.php config.inc.php

vim config.inc.php

$cfg[‘Servers‘][$i][‘host‘] = ‘mysqlserverip‘;


測試 http://websrv/pma/

root,centos


4 A上部署wordpress


mysql -uroot -pcentos

> create database wpdb;

> grant all wpdb.* to wpuser@‘192.168.37.%‘ identified by ‘centos‘;

> flush privileges;


tar xvf wordpress-4.8.1-zh_CN.tar.gz

cp -r wordpress /var/www/html/blog

cd /var/www/html/blog

cp wp-config-sample.php wp-config.php

vim wp-config.php

define(‘DB_NAME‘, ‘wpdb‘);

define(‘DB_USER‘, ‘wpuser‘);

define(‘DB_PASSWORD‘, ‘centos‘);

define(‘DB_HOST‘, ‘192.168.37.107‘);


測試http://websrv/blog

技術分享

技術分享

技術分享

技術分享

技術分享

技術分享

實驗:LAMP的php模塊方式應用phpmyadm和wordpress