1:使用命令安装openssh-server sudo apt-get install openssh-server openssh-client 2:这是因为没有更新apt-get,更新命令 sudo apt-get update 3:更新完之后执行 sudo apt-get install op ...
分类:
系统相关 时间:
2021-03-01 12:57:39
阅读次数:
0
In this series for SQL Server Always On Availability Groups, we are covering end to end configurations for SQL Server 2019 on Windows Server 2016. In ...
分类:
数据库 时间:
2021-02-27 13:31:13
阅读次数:
0
This article explores the configuration of Windows failover clusters, storage controllers, and quorum configurations for SQL Server Always On Availabi ...
分类:
数据库 时间:
2021-02-27 13:30:23
阅读次数:
0
基于上一篇部署完成了企业级仓库harbor的部署,今天我们来聊聊什么是harbor的高可用 Harbor 支持基于策略的 Docker 镜像复制功能,这类似于 MySQL 的主从同步,其可以实现不同的数据中心、不同的运行环境之间同步镜像,并提供友好的管理界面,大大简化了实际运维中的镜像管理工作,已经 ...
分类:
其他好文 时间:
2021-02-27 13:17:00
阅读次数:
0
同一个nginx配置文件,请求不同的域名可以指定对应的目录 nginx配置 cat long.conf server { listen 80; server_name a.com b.com c.com; location / { root /home/long/$host/; index inde ...
分类:
其他好文 时间:
2021-02-27 13:10:39
阅读次数:
0
Docker的常用命令 一、帮助命令 # 显示docker的版本信息 docker version # 显示docker的系统信息 docker info # 帮助命令 docker 命令 --help 帮助文档地址 二、镜像命令 1、docker images 查看所有本地的主机上的镜像 [roo ...
分类:
其他好文 时间:
2021-02-27 13:07:07
阅读次数:
0
NFS服务器配置和操作演示 实验设置: Server-nfs:192.168.6.233 Client-nfs-linux:192.168.6.243 Client-nfs-windows:192.168.6.3 实验步骤: 1、配置网络环境(静态IP地址) 2、在服务器端安装nfs服务 nfs-u ...
分类:
其他好文 时间:
2021-02-27 13:03:37
阅读次数:
0
//观察者模式 //监听对象属性的修改,如果属性值发生变化,打印出对象的属性信息(to do somthing) let queuedObservers = new Set() //将需要处理的函数,添加到set结构中 let observe = fn => queuedObservers.add( ...
分类:
其他好文 时间:
2021-02-26 13:24:00
阅读次数:
0
一、sqlachemy(是一个orm框架) 1 orm框,可以独立出来用 2 orm执行原生sql 生成engine(链接池) 详见上一篇博客 engine = create_engine() 获取链接 conn = engine.raw_connection() 后续就一样了 3 创建表,删除表和 ...
分类:
数据库 时间:
2021-02-26 13:16:19
阅读次数:
0
准备数据库 还原SQL Server数据库备份,或使用MySQL的SQL代码创建库后,使用DBeaver或navicat等工具转换为SQL Server库 修改数据库链接字符串 driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriv ...
分类:
数据库 时间:
2021-02-26 13:15:41
阅读次数:
0