vCenter6.7问题集合 一、 后台root账户无法登录原因分析:首先确认了密码一定对。那么问题就是vCenter创建后root密码默认90天过期,过期后不能登录WEBvCenter. 解决:通过SSH终端命令讲密码设置为永不过期 方法: 1234567891011Use service-control command to manage applmgmt service * List APIs: "hel 2024-04-30 #vCenter
Ubuntu安装后不能SSH连接 一、首先确保SSH服务开启1sudo /etc/init.d/ssh start 二、修改SSH配置文件由于ubuntu默认是不允许root用户远程登录的,所以要特意开启ROOT用户的远程配置。 1sudo vim /etc/ssh/sshd_config 找到#PermitRootLogin yes 把前面的#号删除,保存。 三、重启SSH服务1sudo service ssh restart 2024-04-07 #linux #ubuntu #ssh
JS_clipboardjs 安装1npm install clipboard --save 或下载文件,引入项目。https://github.com/zenorocha/clipboard.js/archive/master.zip 使用1<script src="dist/clipboard.min.js"></script> 创建对象,例如: 1new Clipboard 2024-03-25
Outlook中Skype会议按钮丢失 Outlook中Skype会议按钮丢失问题原因Outlook中Skype会议COM加载项不能自动加载 解决方案: 方案一:直接使用管理员模式打开Outlook;(不推荐) 方案二:使用管理员模式打开Outlook,在加载项中删除Skype会议的COM组件,然后重新添加(删除与添加都需要在管理员模式下运行Outlook)#有时候没有效果,可以选择第三种方法 方案三:在注册表中的当前用户的注册表项 2024-03-25 #windows
PowerShell遇到问题:cannot be loaded because running scripts is disabled on this system. 在PowerShell运行ps1文件会得到下面的错误:1File \Test.ps1 cannot be loaded because the execution of scripts is disabled on this system. Please see "get- help about_signing" for more details. 原因是:PowerShel 2024-03-25 #Windows #PowerShell
RouterOS的优化配置方案 ROS的防火墙配置方案/ip firewall address-list add address=192.168.100.1 comment=”onuconf: local ONU address” list=local_onu_ipv4add address=172.16.1.0/24 comment=”lanconf: lo 2024-03-25 #NETWORK #RouterOS
ESP8266使用AT命令操作手册 AT\r\n 测试AT启动AT+RST\r\n 重启模块AT+GMR\r\n 查看版本信息ATE1\r\n 打开回显ATE0\r\n 关闭回显AT+CWMODE?\r\n 查询WIFI应用模式AT+CUMODE= \r\n 设置WIFI应用模式 1:station模式 2:AP模式 3:AP+STATION 2024-03-25 #ESP
Windows中设置网口地址 使用CMD命令直接设置网卡的IP地址。12345678netsh interface ip set address "以太网" dhcpnetsh interface ip set dns "以太网" dhcpnetsh interface ip set address "以太网" static 10.10.30.94 255.255.2 2024-03-25 #windows #Net
Ubuntu安装时提示的mirror address设置 在安装Ubantu server版的过程中,有一个设置镜像地址的选项,我们可以设置为清华大学的镜像站点以提高速度。 清华大学开源软件镜像站地址:https://mirrors.tuna.tsinghua.edu.cn 所以这一步可以设置为:https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ 2024-03-22 #linux #Ubuntu
Service_CA 通过openssl创建CA证书第一步是创建一个秘钥,这个便是CA证书的根本,之后所有的东西都来自这个秘钥: # 通过rsa算法生成2048位长度的秘钥 openssl genrsa -out myCA.key 2048 第二步是通过秘钥加密机构信息形成公钥: # 公钥包含了机构信息,在输入下面的指令之后会有一系列的信息输入,这些信息便是机构信息,公司名称地址什么的 # 这里还有一个过期信息,CA证 2024-03-01