一、动态网络架构
资源
资源文件识别 语言识别 框架识别
index.php 开源的php Windows/Linux+nginx+php+mysql
index.py 开源python Windows/Linux+apache+python+mysql
index.jsp 商业JAVA windows/Linux+tomcat+JDK+Oracle
index.asp 商业c# Windows+iis+asp.net+sql-rver/oracle/mogodb
二、LNMP动态网站环境部署
1、LINUX部署
stop firewallddisable linux
2、NGINX部署
yum -y install nginx
3、php-fpm部署
部署方法
rpm部署:
yum -y install 买火车票一定要身份证吗php-fpm php-mysql php-gdsystemctl restart php-fpmsystemctl enable php-fpmnetstat -anpt | grep 9000vim /usr/share/nginx/html/index.php //测试php页面<?phpphpinfo();?>vim /etc/nginx/conf.d/default.conf//增加PHP主页名称:index.phprver {location / {...index index.php index.html;...}}vim /etc/nginx/conf.d/default.conf //启动nginx_fastcgi功能,解除#注释修改路径即可。rver {location / {index index.php;}location ~ \.php$ {root /usr/share/nginx/html;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;include fastcgi_params;}}systemctl 广西师范学院restart nginx
访问ip查看测试页面
4、mysql部署
rpm部署:
yum -y install mariadb-rver mariadbsystemctl start mariadbsystemctl enable mariadbmysqladmin password '123456'create databa bbs; grant all on bbs.* to phptest@'192.168.100.10' identified by '123456';flush privileges;vim /usr/share/nginx/html/index.php<?php$link=mysql_connect('192.168.100.10','phptest','123456');if ($link) 让自己美好 echo "Successfuly";el echo "Faile";mysql_clo();?>//修改主页,测试MYSQL的链接状态//如果测试为faile,请检查数据库授权结果。
测试结果:
5、业务上线
购买服务器/云主机
购买域名&IP
上传app
wget https://sm.myapp.com/original/net_app/wordpress-4.7.4-zh_CN.zipunzip wordpress-4.9.1-zh_CN.ziprm -rf /usr/share/nginx/html/index.phpcp -rf /root/wordpress/* /usr/share/nginx/htmlchown -R nginx.nginx /usr/share/nginx/html/*chmod 777 /usr/share/nginx/html/
访问ip美食点评地址:(就显示安装的页面)
数据库名称、数据库用户、数据密码必须和前方授权一致。
安装完成:
ps:如果出现wp-conf独唱团ig.php文件不可写。请手动创建。
vim /usr/local/nginx/html/wp-config.php //配置连接数据库,非商业的应用需要手动配置连接数据库
本文地址:https://blog.csdn.net/yiweii/article/details/108703561
本文发布于:2023-04-08 23:07:41,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/27cc444c7539c020e85d2ea6351773ae.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:LNMP动态网络部署.doc
本文 PDF 下载地址:LNMP动态网络部署.pdf
留言与评论(共有 0 条评论) |