Open chenjianou opened 3 years ago
vmware 虚拟机 centos 7.x版本
`vi /etc/sysconfig/network-scripts/ifcfg-ens33` onboot=yes :wq 退出 重启网络 service network restart systemctl restart network /etc/init.d/network restart
-y 表示无需确认直接安装
安装node
curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
安装nginx
https://nginx.org/en/linux_packages.html
nginx服务配置
/etc/nginx/nginx.conf
站点配置
/etc/nginx/confi.d/default.conf
重载配置
/usr/sbin/nginx -s reload
重启服务
service nginx restart
配置防火墙
/usr/sbin/iptables -F 关闭防火墙(尽量不使用)
/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT 开放端口
/var/log 错误日志
通过反向代理proxy_pass
linux基础
安装
vmware 虚拟机 centos 7.x版本
联网
yum包管理
-y 表示无需确认直接安装
安装node
安装nginx
nginx服务配置
/etc/nginx/nginx.conf
站点配置
/etc/nginx/confi.d/default.conf
重载配置
/usr/sbin/nginx -s reload
重启服务
service nginx restart
配置防火墙
/usr/sbin/iptables -F 关闭防火墙(尽量不使用)
/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT 开放端口
/var/log 错误日志
nginx和node共存
通过反向代理proxy_pass