一、购买与访问
- 可以自己搭建一个,但是需要一台主机。
- 或者找个平台买个云服务器
阿里
、腾讯
…
- 这里买了个
腾讯云服务器
最便宜的那个,没办法,穷,镜像为:CentOS 7.6 64位
。
- 进入控制台
文章图片
- 拷贝一下公网
IP
,打开终端
,ping
一下(ping xxx.xxx.xx.xxx
)看是否能通,直接浏览器访问是403
,等装好nginx
之后就可以正常访问了。
文章图片
- 下面两种方式都可以设置或修改服务器登录密码,先设置好密码。
文章图片
- 可以通过平台自带的登录功能进行操作,但是这种往往不是很好用,或者可以使用
第三方 SSH工具 客户端
进行登录。
- 本机是
MAC
,这里就用自带的终端
进行登录即可,有个缺点就是关闭窗口就需要重新登录连接服务器,有的第三方工具会带自动登录或缓存记录功能,可以不需要每次都需要重新手动登录。
- 打开
终端
通过SSH
登录云服务器
$ ssh root@xxx.xxx.xx.xxx(公网IP)
// 询问是否继续连接(首次连接会询问) The authenticity of host 'xxx.xxx.xx.xxx (xxx.xxx.xx.xxx)' can't be established. ECDSA key fingerprint is SHA256:l0lXSZ/h/+vr9AJ5TXXrkUeimGr7FLOxQKixxxxx. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added 'xxx.xxx.xx.xxx' (ECDSA) to the list of known hosts.// 继续连接则输入服务器密码 root@xxx.xxx.xx.xxx's password: Last failed login: Tue Apr 27 14:06:03 CST 2021 from xxx.xxx.xx.xxx on ssh:notty There were 7980 failed login attempts since the last successful login. Last login: Fri Apr 23 16:31:29 2021 from xxx.xxx.xx.xxx// 连接成功,进入服务器控制台 [root@VM-0-11-centos ~]#
yum
的基本使用 五、安装 Nginx
及配置文件使用 六、安装 Git
- 安装
git
$ yum -y install git
- 【CentOS|CentOS 基础环境搭建(Nginx、Git、Lrzsz)】查看版本
$ git --version
-
cd
到项目文件夹,拉取代码
$ git clone https://github.com/dengzemiao/DZMLuckyDraw.git
php
、java
等之类的,自行安装对应服务。推荐阅读
- 人工智能|不再迷茫-我的第一篇博客
- nginx|Nginx获取真实用户IP
- git基本操作深入
- Linux|centos7 安装 mysql5.7走过的坑
- linux|zookeeper-3.4.14 出现 Client port found: 2181. Client address: localhost. 的解决办法
- git|Windows下使用git bash提示“fatal: protocol 'https' is not supported”的解决办法(不用删https再加上)
- [Git篇]保姆级建立git仓库教程!!!
- docker|Centos8的docker安装教程
- failed (111: Connection refused) while connecting to upstream