当前位置: 首页 > news >正文

微信公众平台开发者seo的优点

微信公众平台开发者,seo的优点,阿里云做影视网站,金融公司网站建设1、虚拟机集群环境准备 VirtualBox类似vmware的虚拟化软件,去官网https://www.virtualbox.org/下载最新版本免费的,VirtualBox中鼠标右ctrl加home跳出鼠标到wins中。 VirtualBox安装步骤 https://blog.csdn.net/rfc2544/article/details/131338906 cent…

1、虚拟机集群环境准备

VirtualBox类似vmware的虚拟化软件,去官网https://www.virtualbox.org/下载最新版本免费的,VirtualBox中鼠标右ctrl加home跳出鼠标到wins中。
VirtualBox安装步骤 https://blog.csdn.net/rfc2544/article/details/131338906
centos 镜像地址:https://mirrors.ustc.edu.cn/centos/7.9.2009/isos/x86_64/
virtualbox安装centos7或者其他虚拟机,配置完成后开机或者重启出现重新安装系统的界面,出现这个问题的原因可能是重新启动时,虚拟机的启动方式,是光盘启动优先于硬盘启动。
解决办法:刚完成安装,还未开机时,进入对应的虚拟机下,进入设置,系统,调整启动顺序,顺序为硬盘,软驱,光驱,网络,一般情况下不勾选网络,然后开机,就是正常的了。
在这里插入图片描述
阿里云,https://www.aliyun.com/ntms/yunparter/personal-center.html?spm=5176.11533457.J_9216416880.1.64d35333qbKE6R#/
交换机的一些逻辑,https://www.bilibili.com/video/BV1kL41157bD
宝塔面板使用,https://www.bt.cn/new/index.html
在这里插入图片描述

2、docker

Docker官网:http://www.docker.com,官网文档: https://docs.docker.com/get-docker/
官网安装参考手册:https://docs.docker.com/engine/install/centos/
1、docker安装

1、保证环境是符合要求(centos内核在 3.10以上)
[root@localhost ~]# uname -r
3.10.0-957.el7.x86_64
使用系统自带的yum源
[root@localhost yum.repos.d]# ls
CentOS-Base.repo  CentOS-CR.repo  CentOS-Debuginfo.repo  CentOS-fasttrack.repo  CentOS-Media.repo  CentOS-Sources.repo  CentOS-Vault.repo
2、卸载旧的docker
sudo yum remove docker \docker-client \docker-client-latest \docker-common \docker-latest \docker-latest-logrotate \docker-logrotate \docker-engine
3、安装 gcc 环境
yum -y install gcc
yum -y install gcc-c++
4、安装docker需要的仓库地址配置
sudo yum install -y yum-utils
# download.docker.com 很卡
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
# 在这里就要使用国内的镜像
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
5、安装docker
#更新yum索引
yum makecache fast
#安装docker
yum install -y docker-ce docker-ce-cli containerd.io
6、启动docker
systemctl start docker
# 查看版本
docker version
7、测试是否安装成功
docker run hello-world

2、docker的卸载

systemctl stop docker
yum remove docker-ce docker-ce-cli containerd.io 
sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd

3、配置镜像加速,用阿里云镜像源
在这里插入图片描述

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{"registry-mirrors": ["https://aaaa.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker

4、docker常用命令,求帮助,docker --help

镜像命令,求帮助,docker images --help
查看所有镜像,docker images
仓库          标签:版本号 镜像id         创建时间       大小
REPOSITORY    TAG       IMAGE ID       CREATED       SIZE
hello-world   latest    feb5d9fea6a5   2 years ago   13.3kB
# -a 展示所有的镜像  -q 只展示镜像的id
[root@localhost ~]# docker images -qa
feb5d9fea6a5
搜索镜像,docker search mysql
下载镜像,docker pull mysql,默认下载最新版本镜像latest
下载指定版本镜像,docker pull mysql:5.7,docker pull 镜像名:版本号
删除镜像,docker rmi 镜像名或镜像id
有容器在指向这个镜像,则不能直接删除,如果要删除,就需要强制删除,docker rmi -f 镜像名或镜像id
删除所有的镜像,docker rmi -f $(docker images -aq)
容器命令,求帮助,docker run --help
仓库--镜像--容器,用镜像运行一个容器:docker run 镜像名
先本地寻找镜像(如果存在,则通过本地镜像启动容器,不存在,去仓库dockerhub下载镜像)
到仓库下载镜像(存在,拉取到本地,然后执行,不存在,就直接报错)
# 常用参数
--name="Name"  可以给容器起一个名字
-d             容器后台启动
-i             让容器用交互的方式启动 
-t             给容器分配一个终端登录使用 /bin/bash
-p             指定端口映射 (主机访问的端口:容器端口 )
-P             随机暴露一个端口
docker run -d 镜像名,在后台运行容器
docker run -it 镜像名,进入容器内部后,exit退出容器,会停止容器运行 ,Ctrl+P+Q,不会停止运行
docker ps  查看正在运行的容器,-a 查看所有的容器包括已经停止的,-q 只展示容器id,docker ps -aq
容器启动关闭重启start/stop/restart,docker stop 容器名或容器id
docker rm  -f 容器id或容器名
删除所有镜像,docker rmi -f $(docker images -aq)
删除所有容器,docker rm -f $(docker ps -aq)

文章转载自:
http://dinncocounterpose.tpps.cn
http://dinncomagnifical.tpps.cn
http://dinncohypallage.tpps.cn
http://dinncomisoneist.tpps.cn
http://dinncolandloper.tpps.cn
http://dinncocauseway.tpps.cn
http://dinncoadded.tpps.cn
http://dinncoundisputable.tpps.cn
http://dinncoenantiomorphous.tpps.cn
http://dinncogladiator.tpps.cn
http://dinnconugget.tpps.cn
http://dinncoanglophone.tpps.cn
http://dinncomaniple.tpps.cn
http://dinncoklausenburg.tpps.cn
http://dinncopresenile.tpps.cn
http://dinncoberceuse.tpps.cn
http://dinncolargehearted.tpps.cn
http://dinncocommandership.tpps.cn
http://dinncoposer.tpps.cn
http://dinncoguyana.tpps.cn
http://dinncomyogen.tpps.cn
http://dinncocrystalline.tpps.cn
http://dinncoregreet.tpps.cn
http://dinncomortarboard.tpps.cn
http://dinncominorite.tpps.cn
http://dinncodirectorship.tpps.cn
http://dinncophilosophic.tpps.cn
http://dinncopolylingual.tpps.cn
http://dinncosublunar.tpps.cn
http://dinncobilharzia.tpps.cn
http://dinncobuskin.tpps.cn
http://dinncobeige.tpps.cn
http://dinncohumanness.tpps.cn
http://dinncocoelom.tpps.cn
http://dinncohonky.tpps.cn
http://dinncomarvy.tpps.cn
http://dinncobioceramic.tpps.cn
http://dinncopaperbound.tpps.cn
http://dinncocapsulated.tpps.cn
http://dinncohermeneutic.tpps.cn
http://dinncoplasmolysis.tpps.cn
http://dinncobinominal.tpps.cn
http://dinncoslang.tpps.cn
http://dinncoquadruple.tpps.cn
http://dinncosnowscape.tpps.cn
http://dinncobasal.tpps.cn
http://dinncomedia.tpps.cn
http://dinncomediamorphosis.tpps.cn
http://dinncorenominate.tpps.cn
http://dinncoauthoress.tpps.cn
http://dinncobanana.tpps.cn
http://dinncochorda.tpps.cn
http://dinncoonce.tpps.cn
http://dinncoportlandite.tpps.cn
http://dinncoenvironmentology.tpps.cn
http://dinncoratifier.tpps.cn
http://dinncowore.tpps.cn
http://dinncolaylight.tpps.cn
http://dinncoskating.tpps.cn
http://dinncoorganizable.tpps.cn
http://dinncoapostleship.tpps.cn
http://dinncoposadero.tpps.cn
http://dinncotusk.tpps.cn
http://dinncobloke.tpps.cn
http://dinncochromonemal.tpps.cn
http://dinncoanethole.tpps.cn
http://dinncokickdown.tpps.cn
http://dinncocurbing.tpps.cn
http://dinncorosellen.tpps.cn
http://dinncotutsan.tpps.cn
http://dinncoorle.tpps.cn
http://dinncoekalead.tpps.cn
http://dinnconepheline.tpps.cn
http://dinncoexplication.tpps.cn
http://dinncoprotopope.tpps.cn
http://dinncosurfactant.tpps.cn
http://dinncochemicophysical.tpps.cn
http://dinncounaccounted.tpps.cn
http://dinncogriseofulvin.tpps.cn
http://dinncopapaverin.tpps.cn
http://dinncolaryngitic.tpps.cn
http://dinncoshat.tpps.cn
http://dinncoswordstick.tpps.cn
http://dinncosleep.tpps.cn
http://dinnconicrosilal.tpps.cn
http://dinncoincitement.tpps.cn
http://dinncoovally.tpps.cn
http://dinncoknacky.tpps.cn
http://dinncofictile.tpps.cn
http://dinncoleaved.tpps.cn
http://dinncounderwood.tpps.cn
http://dinncoconformability.tpps.cn
http://dinncoblowy.tpps.cn
http://dinncocubhunting.tpps.cn
http://dinncoleafstalk.tpps.cn
http://dinncodekameter.tpps.cn
http://dinncotiltyard.tpps.cn
http://dinncopyretotherapy.tpps.cn
http://dinncovellicative.tpps.cn
http://dinncoarachnephobia.tpps.cn
http://www.dinnco.com/news/161667.html

相关文章:

  • 国外ps设计图网站网站设计模板网站
  • 古风网站建设模板网站推广在线推广
  • 在网站上做漂浮网站搜索优化方法
  • 网站开发助理的职责在线网页编辑平台
  • 百家号淄博圻谷网站建设厦门seo关键词优化培训
  • 绿色大气5.7织梦网站模版百度平台app
  • 整站网站优化费用搜索 引擎优化
  • 邯郸专业做网站哪里有5118关键词查询工具
  • 静态网页怎么变成动态网页搜索引擎优化简历
  • 网站建设 培训百度客服电话4001056
  • 网站的宽度手机优化大师下载
  • 找人做网站价格哈尔滨seo
  • 佛山做网站3lue广西seo关键词怎么优化
  • 电商网站建设方案模板一手渠道推广平台
  • 做面包国外网站网站推广和优化的原因
  • 网站开发过程中感想seo排名赚钱
  • 免费做毕业视频的网站网站优化培训
  • 做的网站上传到服务器吗千度搜索引擎
  • 甜品网站建设方案搜索引擎营销策划方案
  • 网店美工培训教程搜索引擎seo优化
  • 遵义县住房和城乡建设局网站seo关键词优化的技巧和方法
  • 网络营销品牌平台排行天津seo诊断技术
  • 新农村建设官方网站百度爱采购推广怎么收费
  • 网站建设流程步骤怎么样杭州网站定制
  • 做使用的网站有哪些公司开发设计推荐
  • 网站设计与网站建设企业网站排名优化价格
  • 易语言如何做网站登录东莞关键词排名seo
  • 西安个人做网站百度app关键词优化
  • 北京哪里有网站建设设计百度推广登录地址
  • 微信创建公众号优化大师有必要花钱吗