• 最新文章

Redis 简介

Redis具备如下特性:     1、基于内存运行,性能高效     2、支持分布式,理论上可以无限扩展     3、key-value 存储系统     4、开源的使用ANSI C语言编写、遵守BSD协议、支持网络、可基于内存亦可持久化的

制作 Visual Studio 2019 离线安装包

下载安装工具:https://visualstudio.microsoft.com/zh-hans/ 可直接下载:vs_enterprise(企业版).exe 版本说明: Enterprise (企业版)-------------vs_enterprise.exe Professional (专业版)----------vs_professional.exe Community (社区版, 免费)

mysql 8.0以上版本用户密码修改

执行以下命令: mysql -uroot -p use mysql;  update user set authentication_string=\'\' where user=\'root\'; //将 authentication_string 置空 alter user \'root\'@\'%\' identified by \'newpassword\'; flush privileges; 注

mysql 8.0以上版本添加用户并授权

执行如下命令: grant all privileges on *.* to \'root\'@\'%\' identified by \'123456\' with grant option 报错: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for

Ubuntu MySql连接错误码10060/10061的排查及解决方法

错误码10060一般是因为防火墙: ufw allow 3306; //允许外部访问3306端口 ufw allow from 192.168.5.38; //允许此IP访问所有的本机端口 ufw status; //查看防火墙状态 ufw disable/enable; //关闭或打开防火墙 没装 ufw 就执行安装既可:apt-get install ufw; 错误码10061错误为配置原因:

MQTT测试工具

下载地址:https://repo.eclipse.org/content/repositories/paho-releases/org/eclipse/paho/org.eclipse.paho.ui.app/1.1.1/ 点击下载:org.eclipse.paho.ui.app-1.1.1-win32.win32.x86_64(MQTT测试工具).zip