系统运维
实验: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