LAMP的fastcgi方式应用phpmyadm和wordpress
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LAMP的fastcgi方式应用phpmyadm和wordpress相关的知识,希望对你有一定的参考价值。
LAMP的fastcgi方式应用phpmyadm和wordpress
两台主机
一台A apache和php-fpm
一台B mariadb server
1.A安装所需要的包并启动服务
yum install httpd php-fpm php-mysql
systemctl start httpd
systemctl start php-fpm
B: yum install mariadb-server
systemctl start mariadb
运行安全脚本:mysql_secure_installation
2 A: vim /etc/httpd/conf.d/fcgi.conf
DirectoryIndex index.php
ProxyRequests Off
ProxyPassMatch ^/(.*\.php)$fcgi://127.0.0.1:9000/var/www/html/$1
systemctl reload httpd
3 B数据库创建用户并授权
mysql -uroot -pcentos
> create database blogdb;
> grant all wpdb.* to [email protected]‘192.168.136.%‘identified by ‘centos‘;
> flush privileges;
部署wordpress
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‘);
4 测试php的连接:http://192.168.136.170/index.php
测试wordpress http://192.168.136.170/blog
本文出自 “13162732” 博客,请务必保留此出处http://13172732.blog.51cto.com/13162732/1975463
以上是关于LAMP的fastcgi方式应用phpmyadm和wordpress的主要内容,如果未能解决你的问题,请参考以下文章
实战案例:编译安装基于 FastCGI 模式LAMP架构多虚拟主机WEB应用(WordPress 和Discuz)
编译安装基于FASTCGI模式LAMP架构多虚拟主机WEB应用及loganalyzer图形化日志
CentOS6源码安装LAMP----基于fastcgi方式(2台机器)