The example of Docs layout.
参考文档: https://juejin.cn/post/6966067195428208653 https://blog.51cto.com/riverxyz/2527498 https://kubesphere.com.cn/forum/d/1272-kubeadm-k8s-kubesphere-2-1-1 NFS 服务端操作(可按照在任意服务器): 1# 安装nfs 2yum install -y nfs-utils 3 4# 创建nfs目录 5mkdir -p /data/nfs 6 7# 授予权限 8chmod -R 777 /data/nfs 9 10# 编辑export文件 11cat > /etc/exports...
参考文档: https://v2-1.docs.kubesphere.io/docs/zh-CN/appendix/install-openebs/ 1[root@k8s-node1 ~]# kubectl create ns openebs 2namespace/openebs created 3 4[root@k8s-node1 ~]# kubectl apply -f https://openebs.github.io/charts/openebs-operator.yaml 5Warning: resource namespaces/openebs is missing the...
参考文档: https://v3-1.docs.kubesphere.io/zh/docs/reference/storage-system-installation/glusterfs-server/ https://v3-1.docs.kubesphere.io/zh/docs/installing-on-linux/persistent-storage-configurations/install-glusterfs/ https://blog.csdn.net/qq_40907977/article/details/108776021 安装的主要参考文档:...
k8s集群安装KubeSphere3.2.1 https://www.cnblogs.com/lfl17718347843/p/14131111.html https://www.cnblogs.com/lfl17718347843/p/14131062.html (主要参考文档) https://v3-1.docs.kubesphere.io/zh/docs/quick-start/minimal-kubesphere-on-k8s/ https://github.com/kubesphere/ks-installer/blob/master/deploy/cluster-configuration.yaml K8S 安装请参考当...
参考文档: https://blog.csdn.net/zfw_666666/article/details/129383403 https://blog.csdn.net/justlpf/article/details/131894626 https://blog.51cto.com/flyfish225/5364379 k8s containerd查看镜像报错的解决办法:https://blog.csdn.net/just_lion/article/details/133685375 Containerd容器镜像管理 docker使用docker images命令管理镜像 单机containerd使用ctr images命令管理...
ubuntu 安装 docker apt install docker.io 查询远程镜像: docker search <镜像名> 拉取镜像: docker image pull <镜像名> 查看本地镜像: docker images 删除镜像(确保改镜像下没有相关容器): docker rmi <镜像ID> 查询容器: docker ps -a 启动容器: docker run [参数] <镜像名> 例如: 使用镜像 nginx:latest,以后台模式启动一个容器, 将容器的 80 端口映射到主机的 80 端口,主机的目录 /data 映射到容器的 /data: docker run -p 80:80 -v...
参考文档 在docker中构建镜像 https://blog.csdn.net/gmaaa123/article/details/134164838 https://blog.csdn.net/wangooo/article/details/133127774 https://blog.csdn.net/wangooo/article/details/109148640 https://blog.csdn.net/lejustdoit/article/details/130275792 https://zhuanlan.zhihu.com/p/667075764...
文档: https://blog.csdn.net/gmaaa123/article/details/134164838 https://blog.csdn.net/wangooo/article/details/133127774 https://blog.csdn.net/wangooo/article/details/109148640 https://blog.csdn.net/lejustdoit/article/details/130275792 https://zhuanlan.zhihu.com/p/667075764...
参考文档: https://www.jianshu.com/p/a842358b451b https://zhuanlan.zhihu.com/p/80256918 建议先设置hosts,这样后面可以用host name 代替 IP echo ‘\n192.168.0.201 fastdfs-tracker-server’ » /etc/hosts 所有跟踪服务器和存储服务器均执行如下操作 编译和安装所需的依赖包: yum install make cmake gcc gcc-c++ 安装 libfastcommon: 下载 libfastcommon 到/usr/local/src 目录 下载地...
https://www.jianshu.com/p/a842358b451b https://zhuanlan.zhihu.com/p/80256918 一、所有跟踪服务器和存储服务器均执行如下操作 1、编译和安装所需的依赖包: yum install make cmake gcc gcc-c++ 2、安装 libfastcommon: (1)下载 libfastcommon 到/usr/local/src 目录 下载地址:https://github.com/happyfish100/libfastcommon/archive/refs/tags/V1.0.53.tar.gz (2)解压 cd /usr/local/src/...