摘要: 安装模块 pip install pywinrm 脚本如下 #!/usr/bin/env python3 # coding=utf-8 # author:LJX # describe:一键创建hype-v虚拟机 # createdate:2021.5.26 import winrm class VM 阅读全文
posted @ 2021-09-28 18:13 兰嘉轩 阅读(120) 评论(0) 推荐(0) 编辑
摘要: SVN操作脚本 安装模块 pip install pywinrm 脚本如下 #!/usr/bin/env python3 # coding=utf-8 # author:LJX # describe:仓库授权 # createdate:2021.5.27 import winrm import js 阅读全文
posted @ 2021-09-28 18:07 兰嘉轩 阅读(735) 评论(0) 推荐(0) 编辑
摘要: 1、仓库搭建(harbor) 注意: 基础环境为docker 使用docker-compose安装 1.1、docker安装 # 安装需要的软件包 # yum-util 提供yum-config-manager功能,另外两个是devicemapper驱动依赖的 $ sudo yum install 阅读全文
posted @ 2021-08-06 10:17 兰嘉轩 阅读(539) 评论(0) 推荐(0) 编辑
摘要: 一、文档简介 作者:lanjiaxuan 邮箱:lanheader@163.com 博客地址:https://www.cnblogs.com/lanheader/ 更新时间:2021-07-09 Docker 简介 Docker 是一种运行于 Linux 和 Windows 上的软件,用于创建、管理 阅读全文
posted @ 2021-07-09 20:09 兰嘉轩 阅读(836) 评论(0) 推荐(0) 编辑
摘要: 1、查看系统要求 Docker 要求 CentOS 系统的内核版本高于 3.10 ,查看CentOS的内核版本。 uname -a 2、删除旧版本 yum remove docker docker-common docker-selinux docker-engine 3、安装需要的软件包 yum- 阅读全文
posted @ 2021-01-11 09:37 兰嘉轩 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 创建BUCKET脚本 安装模块 pip install pymysql pip install aliyun-python-sdk-core pip install aliyun-python-sdk-rds pip install aliyun-python-sdk-ram 脚本如下 #!/usr 阅读全文
posted @ 2020-12-18 14:51 兰嘉轩 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 使用一下语句杀掉进程 USE master go DECLARE @dbname VARCHAR(200) SET @dbname = 'xxxx' --要关闭进程的数据库名 DECLARE @sql NVARCHAR(500) DECLARE @spid NVARCHAR(20) DECLARE 阅读全文
posted @ 2020-12-18 11:53 兰嘉轩 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 一、文档简介 作者:lanjiaxuan 邮箱:lanheader@163.com 博客地址:https://www.cnblogs.com/lanheader/ 更新时间:2021-07-09 安装方式 kubectl apply -f redis.yaml -n xxxxx 安装配置文件 分别创 阅读全文
posted @ 2020-12-18 11:18 兰嘉轩 阅读(8450) 评论(2) 推荐(0) 编辑
摘要: 安装方式 kubectl apply -f rabbitmq.yaml -n yunda-dev-cache rabbitmq.yaml ##创建PV # 注意更换存储方式 apiVersion: v1 kind: PersistentVolume metadata: name: rabbitmq- 阅读全文
posted @ 2020-12-18 11:14 兰嘉轩 阅读(662) 评论(0) 推荐(1) 编辑
摘要: 集群版zookeeper安装 第一步:添加helm镜像源 helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator 第二步:下载Zookeeper helm fetch incubator/zo 阅读全文
posted @ 2020-12-18 11:02 兰嘉轩 阅读(1742) 评论(0) 推荐(0) 编辑