欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

阿里云服务器购买与搭建 博客分类: 服务器

程序员文章站 2024-03-13 13:10:27
...

 

 

1. 登录阿里云, 购买ecs服务器

https://ecs-buy.aliyun.com/wizard?spm=5176.8789780.1092585.1.3a0c55caQDVGPI#/prepay/cn-hangzhou?periodType=Yearly&period=1&instanceType=ecs.g5.large

 

2.进入ecs服务器的中控台,第一次创建需要设置系统登录密码

    

 

3. 创建服务器后, 上面是空的,上面软件都没有,推荐使用宝塔面板(需要把8888端口添加到安全组配置)

     https://yq.aliyun.com/articles/656965

 

4. 为服务器安装必备软件

https://blog.csdn.net/m0_37654893/article/details/79198414

一般安装nginx , ftp, tomcat

 

5.购买一个域名

 

6.将域名绑定ip

https://help.aliyun.com/knowledge_detail/39783.html?spm=a2c4e.11153987.0.0.8b3ce21f8rfDeq

 

 

7.上传jar包

   (1)阿里云安全组, 允许ssl链接,端口22

    (2)使用filezilla工具,连接阿里云

         输入公网的ip, 服务器的账户名和密码, 端口22

    (3) 拖动jar包上传

 

 

8.部署springboot项目

https://blog.csdn.net/hyy1206317124/article/details/80584210

https://blog.csdn.net/anxuanzi/article/details/80400217

注意反向代理:

  server{

    listen 8099;    //你的web地址一定要带上端口号,不带端口号默认的端口是80
    server_name 47.112.134.153; 

     .......

 location /
    {
        proxy_pass http://127.0.0.1:8011;  // 这个是你的web项目的server.port

  }

}