如何安装LNMP架构环境
* 1.安装nginx
* [root@web01 ~]# yum install nginx -y
* 安装php
* [root@web01 ~]# yum install php71w php71w-cli php71w-common php71w-devel php71w-embedded php71w-gd php71w-mbstring php71w-pdo php71w-xml php71w-fpm php71w-mysqlnd php71w-opcache php71w-mcrypt php71w-pecl-memcached php71w-pecl-mongodb php71w-pecl-redis php71w-pecl-zip php71w-bcmath
* 安装mariadb
* [root@web01 ~]# yum install mariadb-server mariadb -y
Nginx与PHP集成的原理
[root@web01 ~]# cat /etc/nginx/conf.d/php.oldxu.com.conf
server {
listen 80;
server_name php.oldxu.com;
root /code;
location / {
index index.php info.php;
}
location ~ \.php$ {
#将php请求交给本地9000端口处理,9000是php-fpm的默认端口
fastcgi_pass 127.0.0.1:9000;
#告诉php-fpm解析本地的哪个路径下的哪个文件
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#包含一些其他的相关信息的变量
include fastcgi_params;
}
}
#重载服务
[root@web01 ~]# systemctl restart nginx
[root@web01 ~]# systemctl start php-fpm
[root@web01 ~]# systemctl enable php-fpm
#准备一个php的文件
[root@web01 ~]# cat /code/info.php
<?php
phpinfo();
?>
#通过浏览器访问: http://php.oldxu.com/info.php
PHP与MySQL集成的原理
1.启动mariadb
[root@web01 ~]# systemctl start mariadb
[root@web01 ~]# systemctl enable mariadb
2.配置mariadb密码
[root@web01 ~]# mysqladmin password 'oldxu.com'
[root@web01 ~]# mysql -uroot -poldxu.com
MariaDB [(none)]> quit
3.准备一个php连接mysql的脚本文件
[root@web01 ~]# cat /code/tt.php
<?php
$servername = "localhost";
$username = "root";
$password = "oldxu.com";
// 创建连接
$conn = mysqli_connect($servername, $username, $password);
// 检测连接
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
echo "php连接MySQL数据库成功";
?>
4.执行php命令测试是否能正常连接mysql
[root@web01 ~]# php /code/tt.php
php连接MySQL数据库成功
LNMP架构部署Wordpress
1.统一nginx php 的用户身份
[root@web01 ~]# groupadd -g666 www
[root@web01 ~]# useradd -u666 -g666 www
[root@web01 ~]# sed -i '/^user/c user www;' /etc/nginx/nginx.conf #修改nginx身份
[root@web01 ~]# sed -i '/^user/c user = www' /etc/php-fpm.d/www.conf
[root@web01 ~]# sed -i '/^group/c group = www' /etc/php-fpm.d/www.conf
[root@web01 ~]# systemctl restart nginx php-fpm
2.添加wordpress博客站点信息
[root@web01 ~]# cat /etc/nginx/conf.d/blog.oldxu.com.conf
server {
listen 80;
server_name blog.oldxu.com;
root /code/wordpress;
client_max_body_size 100m;
location / {
index index.php index.html;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
2.上传代码,修改属主和属组
[root@web01 ~]# cd /code
[root@web01 ~]# rz wordpress.zip #<---
[root@web01 ~]# chown -R www.www /code/wordpress
3.配置wordpress项目需要使用的库
[root@web01 code]# mysql -uroot -poldxu.com #1.登录mysql数据库
MariaDB [(none)]> create database wordpress; #2.创建一个wordpress名称的库
MariaDB [(none)]> show databases; #3.查看数据中所有的库
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
| wordpress |
+--------------------+
5 rows in set (0.00 sec)
MariaDB [(none)]> use wordpress; #4.进入wordpress库
Database changed
MariaDB [wordpress]> show tables; #5.查看wordpress库中有多少表
Empty set (0.00 sec) <--空
[root@web01 ~]# cat /etc/nginx/conf.d/zh.oldxu.com.conf
server {
listen 80;
server_name zh.oldxu.com;
root /code/zh;
client_max_body_size 100m;
location / {
index index.php;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
2.上传代码
[root@web01 ~]# mkdir /code/zh -p
[root@web01 ~]# cd /code/zh
[root@web01 ~]# rz
[root@web01 zh]# unzip WeCenter_3-3-2.zip
3.修改权限
[root@web01 zh]# chown -R www.www /code/zh/
4.创建库
[root@web01 zh]# mysql -uroot -poldxu.com
MariaDB [(none)]> create database zh;
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
| wordpress |
| zh |
+--------------------+
6 rows in set (0.00 sec)
拆分数据库
1.准备一台172.16.1.51数据库, 安装mariadb-server
[root@db01 ~]# yum install mariadb-server -y
[root@db01 ~]# systemctl start mariadb
[root@db01 ~]# systemctl enable mariadb.service
[root@db01 ~]# netstat -lntp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 8296/mysqld
2.备份172.16.1.7 数据库 -->推送至 172.16.1.51
[root@web01 ~]# mysqldump -uroot -p'oldxu.com' --all-databases > mysql-all.sql
3.172.16.1.51 恢复数据库, 创建远程连接的用户
1.推送
[root@web01 ~]# scp mysql-all.sql root@172.16.1.51:~
2.登录51服务器恢复数据
[root@db01 ~]# mysql -uroot < mysql-all.sql
[root@db01 ~]# mysql
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
| wordpress |
| zh |
+--------------------+
6 rows in set (0.00 sec)
3.重启一下数据库
[root@db01 ~]# systemctl restart mariadb
[root@db01 ~]# mysql -uroot -poldxu.com #重启后密码会变更
4.创建远程连接用户
MariaDB [(none)]> grant all privileges on *.* to 'all'@'%' identified by 'oldxu.com';
5.远程连接测试 登录172.16.1.7
[root@web01 ~]# mysql -h172.16.1.51 -uall -poldxu.com
Welcome to the MariaDB monitor. Commands end with ; or \g.
MariaDB [(none)]>
4.应用割接 wordpress--->连接本地数据库 修改为 连接 远程数据库
1.停止本地数据库
[root@web01 ~]# systemctl stop mariadb
[root@web01 ~]# systemctl disable mariadb
2.修改wordpress连接数据库的信息
[root@web01 wordpress]# vim /code/wordpress/wp-config.php
/** WordPress数据库的名称 */
define( 'DB_NAME', 'wordpress' );
/** MySQL数据库用户名 */
define( 'DB_USER', 'all' );
/** MySQL数据库密码 */
define( 'DB_PASSWORD', 'oldxu.com' );
/** MySQL主机 */
define( 'DB_HOST', '172.16.1.51' );
3.修改wecenter连接数据库的信息
[root@web01 ~]# find ./ -type f | xargs grep -Ri "oldxu.com"
[root@web01 ~]# cat /code/zh/system/config/database.php
<?php
$config['charset'] = 'utf8mb4';
$config['prefix'] = 'aws_';
$config['driver'] = 'MySQLi';
$config['master'] = array (
'charset' => 'utf8mb4',
'host' => '172.16.1.51',
'username' => 'all',
'password' => 'oldxu.com',
'dbname' => 'zh',
);
$config['slave'] = false;
扩展应用节点 扩展web节点 多个web组织在一起—>web集群
主机名称 应用环境 外网地址 内网地址
web01 nginx+php 10.0.0.7 172.16.1.7
web02 nginx+php 10.0.0.8 172.16.1.8
db01 mysql 172.16.1.51
1.对web02进行初始化操作
[root@web02 ~]# groupadd -g666 www
[root@web02 ~]# useradd -u666 -g666 www
[root@web02 ~]# scp 172.16.1.7:/etc/yum.repos.d/* /etc/yum.repos.d/
2.在要扩展的节点上安装对应的环境: nginx+php
[root@web02 ~]# yum install nginx -y
[root@web02 ~]# rpm -e $(rpm -qa |grep php)
[root@web02 ~]# yum install php71w php71w-cli php71w-common php71w-devel php71w-embedded php71w-gd php71w-mbstring php71w-pdo php71w-xml php71w-fpm php71w-mysqlnd php71w-opcache php71w-mcrypt php71w-pecl-memcached php71w-pecl-mongodb php71w-pecl-redis php71w-pecl-zip php71w-bcmath -y
3.将web01上的Nginx php-fpm php.ini配置 以及 代码 拷贝至web02
1.nginx.conf nginx virtualHost
[root@web02 ~]# rsync -avz --delete 172.16.1.7:/etc/nginx/ /etc/nginx/
2.php-fpm.d/www.conf php.ini
[root@web02 ~]# rsync -avz 172.16.1.7:/etc/php.ini /etc/php.ini
[root@web02 ~]# rsync -avz 172.16.1.7:/etc/php-fpm.d/www.conf /etc/php-fpm.d/www.conf
3.代码目录 /code
[root@web02 ~]# rsync -avz --delete 172.16.1.7:/code /
[root@web02 ~]# ll /code/
drwxr-xr-x 5 www www 4096 12月 6 12:41 wordpress
drwxr-xr-x 15 www www 4096 12月 6 11:44 zh
4.重新加载 nginx php-fpm 服务
1.检查nginx与php的语法是否存在错误
[root@web02 ~]# nginx -t
[root@web02 ~]# php-fpm -t
2.重新加载nginx php-fpm程序
[root@web02 ~]# systemctl restart nginx php-fpm
3.将nginx php-fpm 加入开机自启动
[root@web02 ~]# systemctl enable nginx php-fpm