第1节 云平台


❤️💕💕新时代拥抱云原生,云原生具有环境统一、按需付费、即开即用、稳定性强特点。Myblog:http://nsddd.topopen in new window


[TOC]

什么是云平台

百度百科介绍⬇️

云计算平台也称为云平台open in new window,是指基于硬件资源和软件资源的服务,提供计算、网络和存储能力。云计算平台可以划分为3类:以数据存储open in new window为主的存储型云平台,以数据处理为主的计算型云平台以及计算和数据存储处理兼顾的综合open in new window云计算平台open in new window

安装服务器并且远程登陆

nginx安装和远程访问

yum install nginx

本地yumopen in new window源中没有我们想要的nginx,那么我们就需要下载新的CentOS-Base.repo

解决步骤

备份原来的CentOS-Base.repo

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak20200321

下载新的CentOS-Base.repo/etc/yum.repos.d/

####centos 6版本
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
 
####centos 7版本  --- 我是用的版本,服务器大多数默认是这个~
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
 
####centos 8版本
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo

运行yum makecache:

yum makecache

作用:就是把服务器的包信息下载到本地电脑缓存起来,makecache建立一个缓存,以后用install时就在缓存中搜索,提高了速度。

安装epel源:

yum -y install epel-release 

安装NGINX服务:

yum -y install nginx

启动nginx

当前的ip地址:43.142.124.85

启动nginx服务:

systemctl start nginx
whereis nginx

远程访问即可 43.142.124.85:80

修改nginx配置端口

  1. 修改端口为88
  2. 调整安全组,发放88端口

远程访问即可 43.142.124.85:88

私有网络VPC

我们都知道云服务器分为公网IP和私有IP

那么私有IP的存在主要是用于集群,在同一个集群中用私网IP是不会走公网的流量,而且速度更快~

⬇️ 下面就可以引入VPC了

VPC(私有网络、专用网络)划分网段

输入IP 192 168 0 1 掩码位 16 
点格式十进制 192 168 0 1 
或 二进制 11000000 10101000 00000000 00000001
# 前面的11000000 10101000不变,后面的00000000 00000000 到11111111 11111111	

IP组播地址范围

  • 所有的多播地址可以很容易被认出,因为同位模式“1110”开始。
  • 224.0.0.0 - 224.0.0.255知名多播地址,控制通道
  • 224.0.1.0 - 238.255.255.255全球范围的(互联网宽)组播地址
  • 239.0.0.0 - 239.255.255.255本地多播地址

image-20221018091621531

END 链接