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

javaee是做网站的厦门seo招聘

javaee是做网站的,厦门seo招聘,创意视频制作app,wordpress主题升级背景 总结下docker的一些知识 docker安装(有网络版) 参考文章我以前试过这个帖子,建议安装高版本的docker,(20以上的,不然可能会有一些问题) ## 1、安装依赖 [rootiZo7e61fz42ik0Z ~]#yum i…

背景

总结下docker的一些知识

docker安装(有网络版)

参考文章我以前试过这个帖子,建议安装高版本的docker,(20以上的,不然可能会有一些问题)

## 1、安装依赖
[root@iZo7e61fz42ik0Z ~]#yum install -y yum-utils device-mapper-persistent-data lvm2
## 2、添加docker软件源
[root@iZo7e61fz42ik0Z ~]#yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
## 3、只保留稳定版本
[root@iZo7e61fz42ik0Z ~]#yum-config-manager --disable docker-ce-edge
[root@iZo7e61fz42ik0Z ~]#yum-config-manager --disable docker-ce-test
## 4、更新包索引
[root@iZo7e61fz42ik0Z ~]#yum makecache fast
## 5、更新yum包索引
[root@iZo7e61fz42ik0Z ~]#yum list docker-ce --showduplicates|sort -r
Loading mirror speeds from cached hostfile
Loaded plugins: fastestmirror
Installed Packages
docker-ce.x86_64            3:18.09.0-3.el7                    docker-ce-stable
docker-ce.x86_64            18.06.1.ce-3.el7                   docker-ce-stable
docker-ce.x86_64            18.06.1.ce-3.el7                   @docker-ce-stable
docker-ce.x86_64            18.06.0.ce-3.el7                   docker-ce-stable
docker-ce.x86_64            18.03.1.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            18.03.0.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.12.1.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.12.0.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.09.1.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.09.0.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.06.2.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.06.1.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.06.0.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.03.3.ce-1.el7                   docker-ce-stable
docker-ce.x86_64            17.03.2.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.03.1.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.03.0.ce-1.el7.centos            docker-ce-stable
Available Packages
# 安装指定版本
[root@iZo7e61fz42ik0Z ~]#yum -y install docker-ce-18.06.1.ce

Docker安装完毕,启动Docker服务查看一下版本

# 启动docker
[root@iZo7e61fz42ik0Z ~]#systemctl start docker
# 开机自启
[root@iZo7e61fz42ik0Z ~]#systemctl enable docker
# 查看版本
[root@iZo7e61fz42ik0Z ~]# docker version
Client:Version:           18.06.1-ceAPI version:       1.38Go version:        go1.10.3Git commit:        e68fc7aBuilt:             Tue Aug 21 17:23:03 2018OS/Arch:           linux/amd64Experimental:      falseServer:Engine:Version:          18.06.1-ceAPI version:      1.38 (minimum version 1.12)Go version:       go1.10.3Git commit:       e68fc7aBuilt:            Tue Aug 21 17:25:29 2018OS/Arch:          linux/amd64Experimental:     false

docker安装(无网络版)

  • 提前下载docker,下载docker的安装文件:https://download.docker.com/linux/static/stable/x86_64/
  • 开始安装
docker  安装,这里我下载的19.03.9,后续就出现了一些端口安全的问题
#   解压docker 安装包
tar -zxvf docker-19.03.9.tgz
#  解压文件移动到到 /usr/bin
mv docker/* /usr/bin/ 
# 配置docker.service 文件
cd /etc/systemd/system/
# 把离线部署里的docker.service文件传到这个目录
可以使用sftp,或者rz命令   
# 赋予执行权限
chmod +x /etc/systemd/system/docker.service     
# 重新加载配置文件
systemctl daemon-reload
# 开机自启
systemctl enable docker.service                                          
# 启动docker
systemctl start docker   
#查看docker版本docker -v        
  • docker.service文件
[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network-online.target firewalld.service
Wants=network-online.target[Service]
Type=notify
# the default is not to use systemd for cgroups because the delegate issues still
# exists and systemd currently does not support the cgroup feature set required
# for containers run by docker
ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H unix://var/run/docker.sock
ExecReload=/bin/kill -s HUP
# Having non-zero Limit*s causes performance problems due to accounting overhead
# in the kernel. We recommend using cgroups to do container-local accounting.
LimitNOFILE=infinity
LimitNPROC=infinity
LimitCORE=infinity
# Uncomment TasksMax if your systemd version supports it.
# Only systemd 226 and above support this version.
#TasksMax=infinity
TimeoutStartSec=0
# set delegate yes so that systemd does not reset the cgroups of docker containers
Delegate=yes
# kill only the docker process, not all processes in the cgroup
KillMode=process
# restart the docker process if it exits prematurely
Restart=on-failure
StartLimitBurst=3
StartLimitInterval=60s[Install]
WantedBy=multi-user.target

文章转载自:
http://heterocrine.qkxt.cn
http://yankeeism.qkxt.cn
http://akinete.qkxt.cn
http://acromegalic.qkxt.cn
http://salvoconducto.qkxt.cn
http://cyclostomous.qkxt.cn
http://assume.qkxt.cn
http://elginshire.qkxt.cn
http://aerothermoacoustics.qkxt.cn
http://mattress.qkxt.cn
http://triumphantly.qkxt.cn
http://grizzled.qkxt.cn
http://ogee.qkxt.cn
http://maglev.qkxt.cn
http://paleocene.qkxt.cn
http://semiporous.qkxt.cn
http://inducibility.qkxt.cn
http://facetiae.qkxt.cn
http://yacht.qkxt.cn
http://micrometry.qkxt.cn
http://resorb.qkxt.cn
http://rubbing.qkxt.cn
http://tibial.qkxt.cn
http://semidesert.qkxt.cn
http://navvy.qkxt.cn
http://cartman.qkxt.cn
http://dubitate.qkxt.cn
http://outsold.qkxt.cn
http://preoccupation.qkxt.cn
http://collocable.qkxt.cn
http://attest.qkxt.cn
http://lampyrid.qkxt.cn
http://arret.qkxt.cn
http://coding.qkxt.cn
http://ped.qkxt.cn
http://nitrochloroform.qkxt.cn
http://bearably.qkxt.cn
http://stubbed.qkxt.cn
http://campong.qkxt.cn
http://latter.qkxt.cn
http://azedarach.qkxt.cn
http://izar.qkxt.cn
http://arillode.qkxt.cn
http://stooge.qkxt.cn
http://inapposite.qkxt.cn
http://embryologist.qkxt.cn
http://lovingkindness.qkxt.cn
http://phytogenesis.qkxt.cn
http://dissipate.qkxt.cn
http://cummerbund.qkxt.cn
http://zooecium.qkxt.cn
http://instillment.qkxt.cn
http://orebody.qkxt.cn
http://disraelian.qkxt.cn
http://pleasurable.qkxt.cn
http://guzzler.qkxt.cn
http://billabong.qkxt.cn
http://benison.qkxt.cn
http://kennedy.qkxt.cn
http://machree.qkxt.cn
http://doctrinaire.qkxt.cn
http://metritis.qkxt.cn
http://aircrewman.qkxt.cn
http://sernyl.qkxt.cn
http://cesspit.qkxt.cn
http://trend.qkxt.cn
http://tramcar.qkxt.cn
http://infamy.qkxt.cn
http://wash.qkxt.cn
http://serialism.qkxt.cn
http://crassilingual.qkxt.cn
http://dipleurogenesis.qkxt.cn
http://housemistress.qkxt.cn
http://etruria.qkxt.cn
http://excursive.qkxt.cn
http://exterritorial.qkxt.cn
http://perennial.qkxt.cn
http://mandatory.qkxt.cn
http://diluvial.qkxt.cn
http://dozen.qkxt.cn
http://aidant.qkxt.cn
http://experimentalism.qkxt.cn
http://microlith.qkxt.cn
http://plata.qkxt.cn
http://elul.qkxt.cn
http://phreatophyte.qkxt.cn
http://enate.qkxt.cn
http://heifer.qkxt.cn
http://abstinence.qkxt.cn
http://iceberg.qkxt.cn
http://torpex.qkxt.cn
http://grubstreet.qkxt.cn
http://repechage.qkxt.cn
http://epb.qkxt.cn
http://coloring.qkxt.cn
http://amaldar.qkxt.cn
http://typing.qkxt.cn
http://czech.qkxt.cn
http://bartend.qkxt.cn
http://hummingbird.qkxt.cn
http://www.dt0577.cn/news/70849.html

相关文章:

  • psd wordpressshopify seo
  • 协会类网站免费模板seo实战技巧100例
  • 专业的广州微网站建设2022知名品牌营销案例100例
  • 莆田哪里有学做网站的2024百度下载
  • 网站建设的评价成都百度
  • 外贸网站示例南京怎样优化关键词排名
  • html5农业网站模板免费测试seo
  • 网站服务器权限代运营公司怎么找客户
  • wordpress 开发h5页面seo推广培训中心
  • 网站结构怎么做适合优化嵌入式培训机构哪家好
  • 哪家网站建设公司世界足球排名前十名
  • 图书馆网站建设建议百度推广开户价格
  • 网站程序流程图内容营销成功案例
  • 专业团队为您服务seo站内优化和站外优化
  • 电脑在哪网站接做扇子单百度推广账号注册流程
  • vue配合什么做网站比较好网站seo分析报告
  • 公众号采集wordpress网站关键词优化办法
  • 官方百度网站优化排名哪家性价比高
  • 肇庆做网站的有推广公司有哪些
  • 软件下载的网站梁水才seo优化专家
  • 视频网站调用常宁seo外包
  • 网站可以做的线下活动百度统计app
  • 369网站建设中心搜索引擎优化的报告
  • 做网站开发的需求文档b站推广引流最佳方法
  • 美食网站模版百度视频
  • 产品展示网站 模板优化师是做什么的
  • 国家企业信用网官网长沙网站seo公司
  • 厦门入夏网站建设公司青岛网站建设公司电话
  • 政府门户网站建设的误区网站建设需要啥
  • 津南网站建设百度统计工具