自学内容网 自学内容网

Liunx搭建小霸王游戏

前提准备

centos7虚拟机(需联网)

远程连接工具finalshell / xshell

游戏源码:

链接:https://pan.baidu.com/s/1Y4p2NICZNHzlKW_SkTuUVA?pwd=mptl 
提取码:mptl

#1.搭建准备
#永久关闭seliunx
sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config
#关闭防火墙
systemctl stop firewalld 
#禁止开机自启动
systemctl disable firewalld 
#下载时间同步包
yum install -y ntpdate
#进行时间同步
ntpdate time.windows.com

#2.安装nginx
#更新源
yum -y install yum-plugin-priorities 
#配置nginx官方源命令

cat >/etc/yum.repos.d/nginx.repo<<'EOF'
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
priority=1
EOF

#安装新版Nginx
yum install nginx -y
#进入到站点目录
cd /usr/share/nginx/
#使用远程工具将游戏源码上传到该目录,或者使用上传下载的命令
#安装上传下载工具
yum install lrzsz -y

rz回车即可上传弹窗

#解压游戏的代码
unzip -o html*.zip

#启动nginxeb服务
systemctl start nginx
systemctl enable nginx

#获取Linux服务器的ip地址
ifconfig


在浏览器中输入ip地址回车即可进入,小霸王游戏机!


原文地址:https://blog.csdn.net/Lzcsfg/article/details/137798985

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!