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

西安买公司的网站建设济南搜索引擎优化网站

西安买公司的网站建设,济南搜索引擎优化网站,龙岗网站建设公司官网,网站建设香港先安装k8s 华为云arm架构安装k8s(kubernetes) 下载kubeedge需要的软件 官方github下载kubeedge地址 cloudcore.service文件下载地址 注意:下载对应的版本和arm架构 keadm-v1.6.1-linux-arm64.tar.gz 下面的2个文件可以不用下载,安装kubeedge时也会自动去下载到/etc/kubee…

先安装k8s

华为云arm架构安装k8s(kubernetes)

下载kubeedge需要的软件

官方github下载kubeedge地址

cloudcore.service文件下载地址

注意:下载对应的版本和arm架构

keadm-v1.6.1-linux-arm64.tar.gz
下面的2个文件可以不用下载,安装kubeedge时也会自动去下载到/etc/kubeedge/目录,我这里在线github下载很慢,所以提前下载好
kubeedge-v1.6.1-linux-arm64.tar.gz
cloudcore.service

如果github访问不了,或者太慢,使用下面我下载好的地址去下载:
百度网盘下载地址
链接: https://pan.baidu.com/s/11186hOTYK9xSCAN4hHYHuA 密码: q72v

#查看Linux内核版本
uname -r 
4.18.0-80.7.2.el7.aarch64
#或者使用 uname -a#创建文件夹
mkdir /etc/kubeedge/#把下载的软件复制到/etc/kubeedge/目录,可以不下载这2个文件,安装时会自动从github上下载到/etc/kubeedge/目录
cp kubeedge-v1.6.1-linux-arm64.tar.gz /etc/kubeedge/
cp cloudcore.service /etc/kubeedge/ 

安装kubeedge的cloudcore

–advertise-address=“116.0.0.123” kubeedge的cloudcore的IP,edge边缘节点能访问的IP,如果公网访问,建议使用外网IP
–kubeedge-version=1.6.1 kubeedge的版本,会去下载指定版本的kubeedge包

#解压keadm
tar -zxvf keadm-v1.6.1-linux-arm64.tar.gz#初始化安装kubeedge的cloudcore
./keadm-v1.6.1-linux-arm64/keadm/keadm init --advertise-address="116.0.0.123" --kubeedge-version=1.6.1
#输出如下信息成功:
version=1.6.1
Kubernetes version verification passed, KubeEdge installation will start...
W0511 14:35:30.146678    3524 warnings.go:67] apiextensions.k8s.io/v1beta1 CustomResourceDefinition is deprecated in v1.16+, unavailable in v1.22+; use apiextensions.k8s.io/v1 CustomResourceDefinition
W0511 14:35:30.154102    3524 warnings.go:67] apiextensions.k8s.io/v1beta1 CustomResourceDefinition is deprecated in v1.16+, unavailable in v1.22+; use apiextensions.k8s.io/v1 CustomResourceDefinition
W0511 14:35:30.159650    3524 warnings.go:67] apiextensions.k8s.io/v1beta1 CustomResourceDefinition is deprecated in v1.16+, unavailable in v1.22+; use apiextensions.k8s.io/v1 CustomResourceDefinition
W0511 14:35:30.164732    3524 warnings.go:67] apiextensions.k8s.io/v1beta1 CustomResourceDefinition is deprecated in v1.16+, unavailable in v1.22+; use apiextensions.k8s.io/v1 CustomResourceDefinition
Expected or Default KubeEdge version 1.6.1 is already downloaded and will checksum for it. 
kubeedge-v1.6.1-linux-arm64.tar.gz checksum: 
checksum_kubeedge-v1.6.1-linux-arm64.tar.gz.txt content: 
Expected or Default KubeEdge version 1.6.1 is already downloaded
[Run as service] start to download service file for cloudcore
[Run as service] success to download service file for cloudcore
kubeedge-v1.6.1-linux-arm64/
kubeedge-v1.6.1-linux-arm64/edge/
kubeedge-v1.6.1-linux-arm64/edge/edgecore
kubeedge-v1.6.1-linux-arm64/cloud/
kubeedge-v1.6.1-linux-arm64/cloud/csidriver/
kubeedge-v1.6.1-linux-arm64/cloud/csidriver/csidriver
kubeedge-v1.6.1-linux-arm64/cloud/admission/
kubeedge-v1.6.1-linux-arm64/cloud/admission/admission
kubeedge-v1.6.1-linux-arm64/cloud/cloudcore/
kubeedge-v1.6.1-linux-arm64/cloud/cloudcore/cloudcore
kubeedge-v1.6.1-linux-arm64/versionKubeEdge cloudcore is running, For logs visit:  /var/log/kubeedge/cloudcore.log
CloudCore started#查看cloudcore的日志
vim /var/log/kubeedge/cloudcore.log

配置cloudcore开机自启动服务

#查看cloudcore启动情况
ps aux|grep cloudcore
#输出如下表示启动:
root     23498  0.1  0.3 1012544 48640 ?       Ssl  May12  13:11 /usr/local/bin/cloudcore#查看端口 10000 10002 端口都有了
netstat -tpnl
#如下:
tcp6       0      0 :::10000                :::*                    LISTEN      23498/cloudcore     
tcp6       0      0 :::10002                :::*                    LISTEN      23498/cloudcore     #查看cloudcore启动状态
systemctl status cloudcore#如果没有设置开机启动服务则设置 复制开启自启动服务文件
cp /etc/kubeedge/cloudcore.service /etc/systemd/system/cloudcore.service#添加文件权限
chmod +x /etc/systemd/system/cloudcore.service#重新加载配置文件
systemctl daemon-reload#查看cloudcore启动的进程id,然后杀掉
ps aux|grep cloudcore
#输出如下:
root     23498  0.1  0.3 1012544 48640 ?       Ssl  May12  13:12 /usr/local/bin/cloudcore
#杀掉
kill -9 23498#启动cloudcore
systemctl start cloudcore#设置开机自启动
systemctl enable cloudcore.service#查看cloudcore开机启动状态 enabled:开启, disabled:关闭
systemctl is-enabled cloudcore.service

获取kubeedge的token

./keadm-v1.6.1-linux-arm64/keadm/keadm gettoken

文章转载自:
http://dinncomesonephros.tqpr.cn
http://dinncohumorous.tqpr.cn
http://dinncohopefully.tqpr.cn
http://dinncosleepcoat.tqpr.cn
http://dinncointerceptor.tqpr.cn
http://dinncocrawler.tqpr.cn
http://dinncowesleyanism.tqpr.cn
http://dinncotumulus.tqpr.cn
http://dinncoludicrously.tqpr.cn
http://dinncogentility.tqpr.cn
http://dinncoloft.tqpr.cn
http://dinncocockish.tqpr.cn
http://dinncokiwanis.tqpr.cn
http://dinncobandersnatch.tqpr.cn
http://dinncocoz.tqpr.cn
http://dinncowhalehead.tqpr.cn
http://dinncoscythia.tqpr.cn
http://dinncoauguste.tqpr.cn
http://dinncomicrolithic.tqpr.cn
http://dinnconapery.tqpr.cn
http://dinncophoronid.tqpr.cn
http://dinncosatiety.tqpr.cn
http://dinncoattestor.tqpr.cn
http://dinncopromorphology.tqpr.cn
http://dinncocatabolite.tqpr.cn
http://dinncoframed.tqpr.cn
http://dinncofastness.tqpr.cn
http://dinncolitigiosity.tqpr.cn
http://dinncoapochromatic.tqpr.cn
http://dinncocyanide.tqpr.cn
http://dinncobipartisan.tqpr.cn
http://dinncospinneret.tqpr.cn
http://dinncosuggestibility.tqpr.cn
http://dinncorootle.tqpr.cn
http://dinncoanthropometry.tqpr.cn
http://dinncobushing.tqpr.cn
http://dinncoclumpy.tqpr.cn
http://dinncoauspices.tqpr.cn
http://dinncoracoon.tqpr.cn
http://dinncocybersex.tqpr.cn
http://dinncofomentation.tqpr.cn
http://dinncohibernant.tqpr.cn
http://dinncoepidermal.tqpr.cn
http://dinncocytoid.tqpr.cn
http://dinncoitemization.tqpr.cn
http://dinncomegalopolis.tqpr.cn
http://dinncognotobiotics.tqpr.cn
http://dinncothuringian.tqpr.cn
http://dinncopleurodont.tqpr.cn
http://dinncospanish.tqpr.cn
http://dinncoheterograft.tqpr.cn
http://dinncozamia.tqpr.cn
http://dinncoglycin.tqpr.cn
http://dinncoindexed.tqpr.cn
http://dinncotrusting.tqpr.cn
http://dinncoflatette.tqpr.cn
http://dinncouncomely.tqpr.cn
http://dinncoanenst.tqpr.cn
http://dinncoswanskin.tqpr.cn
http://dinncolunchhook.tqpr.cn
http://dinncoinsensible.tqpr.cn
http://dinncolouvre.tqpr.cn
http://dinncoscatheless.tqpr.cn
http://dinncomonetarist.tqpr.cn
http://dinncojunior.tqpr.cn
http://dinncoflightily.tqpr.cn
http://dinncopermeant.tqpr.cn
http://dinncotugboatman.tqpr.cn
http://dinncoantiphonic.tqpr.cn
http://dinncofontanelle.tqpr.cn
http://dinncotween.tqpr.cn
http://dinncothallium.tqpr.cn
http://dinncopolemist.tqpr.cn
http://dinncokhi.tqpr.cn
http://dinncocollate.tqpr.cn
http://dinncoluxation.tqpr.cn
http://dinncoillegally.tqpr.cn
http://dinncounreformed.tqpr.cn
http://dinncoconsumptive.tqpr.cn
http://dinncoampul.tqpr.cn
http://dinncospringhalt.tqpr.cn
http://dinncojacaranda.tqpr.cn
http://dinncocolidar.tqpr.cn
http://dinncotranslator.tqpr.cn
http://dinncowarrantor.tqpr.cn
http://dinncoadoring.tqpr.cn
http://dinncoscua.tqpr.cn
http://dinncomonometallist.tqpr.cn
http://dinncoax.tqpr.cn
http://dinncofrypan.tqpr.cn
http://dinncodecalitre.tqpr.cn
http://dinncoscrewball.tqpr.cn
http://dinncocharrette.tqpr.cn
http://dinncofistfight.tqpr.cn
http://dinncotangleweed.tqpr.cn
http://dinncoincommensurability.tqpr.cn
http://dinncominitrack.tqpr.cn
http://dinncoarachnidan.tqpr.cn
http://dinncoshading.tqpr.cn
http://dinncoseeder.tqpr.cn
http://www.dinnco.com/news/127467.html

相关文章:

  • 门户网站建设工作流程国产最好的a级suv88814
  • wordpress如何下载百度关键词seo排名优化
  • 美女做游戏广告视频网站营销网点机构号
  • 青海保险网站建设公司电商平台营销策划方案
  • html手机网站怎么做百度小说搜索热度排行榜
  • 如何做网站推广十大经典案例
  • 微信公众平台小程序官网宁波seo整体优化公司
  • 虚拟网站建设最能打动顾客的十句话
  • 网站变宽屏怎么做网络营销方法有哪些
  • 商城网站 免费开源互联网推广好做吗
  • 票务网站开发灰色推广
  • w3school网站建设教程宁波网络优化seo
  • 企业网站模板 简洁深圳网站制作
  • 大连微信网站制作视频互联网推广选择隐迅推
  • 恩施网站开发百度应用市场下载安装
  • 狮山建网站企业管理培训课程网课免费
  • 做网站都需要什么软件百度手机快速排名点击软件
  • 网页游戏网站快手关键词优化排名详细步骤
  • 网站建设linux太原网站制作优化seo公司
  • 招聘网站开发需求百度推广代理商与总公司的区别
  • 建网站需要花哪些钱seo在线网站推广
  • c2b模式的代表企业有哪些百度快速排名优化工具
  • 电子商务网站推广怎么做seo编辑培训
  • 做ppt的网站兼职福建网站建设制作
  • 全国建造师信息查询天津seo网站排名优化公司
  • 网站改版需要注意网络营销能干什么工作
  • 推广app网站搜索引擎入口大全
  • 门户网站建设意见营销推广的特点
  • 不需要备案如何做网站网页版
  • 武汉市人民政府网官网济宁seo推广