目录 安装LNMP 搭建wordpress 搭建WeCenter 根据需求实现动静分离,当客户端访问Nginx网站服务时,静态网页nginx本机反馈,动态网页访问PHP,所以需要在nginx服务器
目录
根据需求实现动静分离,当客户端访问Nginx网站服务时,静态网页nginx本机反馈,动态网页访问PHP,所以需要在nginx服务器中部署论坛后需要拷贝到php服务器中。但是如果有NFS或GFS服务器时可以把nginx和php指定文件服务器。
所需安装包如下:
安装并启动:
[root@nginx ~]# rpm -ivh /media/nginx-rpmdefine('DB_NAME', 'blog');define('DB_USER', 'lisi');define('DB_PASSWord', '123456');define('DB_HOST', '192.168.1.5');[root@php /]# cd /wordpress/[root@php wordpress]# mv wp-config-sample.php wp-config.php [root@php wordpress]# scp -rp /wordpress root@192.168.1.4:/[root@php ~]# vim /etc/php-fpm.d/www.conf //修改下面两行内容listen = 192.168.1.6:9000 //PHP服务器IPlisten.allowed_clients = 192.168.1.4 //WEB服务器IP,表示允许web主机访问php服务器[root@php ~]# systemctl restart php-fpm
5.通过客户端服务器验证
注意下面使用测试机1.10访问。
因为只搭建了第一个app,所以直接访问IP即可,如多个app需要通过修改本机hosts文件或者搭建DNS访问 。Http://192.168.1.4,后台网址为http://192.168.1.4/wp-admin。根据下图点击(现在就开始!)。
创建站点标题,用户名密码后点击安装。
登录管理用户密码后即进入账户首页,根据自己需求添加或修改即可。
1.安装
[root@php ~]# mkdir /zh[root@php ~]# cp -rp /media/WeCenter_3-3-4.zip /zh[root@php ~]# cd /zh[root@php zh]# unzip WeCenter_3-3-4.zip[root@php zh]# chmod -R 777 /zh
2.nginx服务器创建虚拟主机配置文件
[root@nginx ~]# vim /etc/nginx/conf.d/zh.confserver { listen 80; server_name www.zh.com; root /zh; index index.php index.html; location ~ \.php$ { root /zh; fastcgi_pass 192.168.1.6:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }[root@nginx ~]# nginx -tnginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: configuration file /etc/nginx/nginx.conf test is successful[root@nginx ~]# systemctl restart nginx
mysql> create database zh;Query OK, 1 row affected (0.00 sec)mysql> grant all on zh.* to zh@'%' identified by '123456';Query OK, 0 rows affected (0.00 sec) 4.PHP服务器修改配置文件后把PHP服务器中的/zh文件复制到nginx服务器中。[root@php ~]# cd /zh/system/config/[root@php config]# mv system.php databaes.php[root@php config]# vim databaes.php //添加下面文档$config['charset'] = 'utf8mb4';^M$config['prefix'] = 'aws_';^M$config['driver'] = 'MySQLi';^M$config['master'] = array ( 'charset' => 'utf8mb4', 'host' => '192.168.1.5', //数据库主机IP 'username' => 'zh', //用户名 'password' => '123456', //用户密码 'dbname' => 'zh', //数据库名称);^M$config['slave'] = false;^M[root@php config]# systemctl restart php-fpm[root@php config]# scp -rp /zh root@192.168.1.4:/
5.验证
访问http://www.zh.com查看配置无误后点击下一步,输入{数据库主机,账号,密码,名称}后点击开始安装。
新建管理员用户密码,输入邮箱号后点击完成。
来源地址:https://blog.csdn.net/qq_61116007/article/details/128045048
--结束END--
本文标题: 动静分离LNMP
本文链接: https://lsjlt.com/news/416737.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0