摘要: 问题原因: 执行InetAddress.getLocalHost()方法的时候,根据系统名称去hosts文件里找匹配的ip发现找不到合适的IP,一直处于等待状态。 解决办法: 1、查看本机系统名称 2、编辑hosts文件,在其后补充“cenos1” 参考链接:https://blog.csdn.ne 阅读全文
posted @ 2024-03-20 16:01 小泉哥 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1、 在企业微信界面按ctrl+shift+alt+D打开调试模式 2、 在进入本地会议预约应用后,右击页面点showDevTools 3、勾选Disable cache(停用缓存) 4、刷新应用页面 5、在企业微信界面按ctrl+shift+alt+D关闭调试模式 阅读全文
posted @ 2024-01-31 17:48 小泉哥 阅读(107) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/HongZeng_CSDN/article/details/130094219 阅读全文
posted @ 2023-08-04 14:03 小泉哥 阅读(43) 评论(0) 推荐(0) 编辑
摘要: -- 将表自增id改为从24开始 alter table 表名 auto_increment= 24; 阅读全文
posted @ 2023-02-16 16:31 小泉哥 阅读(71) 评论(0) 推荐(0) 编辑
摘要: mysql> create user 'admin2'@'%' identified with mysql_native_password by '123456'; 4058 - 1 factor authentication method does not match against authen 阅读全文
posted @ 2022-10-13 11:47 小泉哥 阅读(1857) 评论(0) 推荐(0) 编辑
摘要: 使用Navicat,打开命令行; ALTER USER 'root'@'%' IDENTIFIED BY '新密码'; 阅读全文
posted @ 2022-10-12 19:23 小泉哥 阅读(52) 评论(0) 推荐(0) 编辑
摘要: CREATE USER 'pcms'@'%' IDENTIFIED BY '123456'; -- 创建用户pcms,密码为123456GRANT SELECT,INSERT,UPDATE,DELETE ON database1.* TO 'pcms'; -- 赋予pcms账号,database1库 阅读全文
posted @ 2022-10-12 18:30 小泉哥 阅读(104) 评论(0) 推荐(0) 编辑
摘要: var contactPhone = ''; //手机格式 var mobilePhone = /^1[3|4|5|7|8|9]\d{9}$/; //座机格式 var telePhone = /^((0\d{2,3})-)?(\d{7,8})$/; if(!mobilePhone.test(cont 阅读全文
posted @ 2022-07-09 14:31 小泉哥 阅读(1736) 评论(0) 推荐(0) 编辑
摘要: style="-webkit-user-select: auto" 阅读全文
posted @ 2022-06-06 18:07 小泉哥 阅读(333) 评论(0) 推荐(0) 编辑
摘要: $.ajaxSetup({ contentType:"application/x-www-form-urlencoded;charset=utf-8", complete:function(XMLHttpRequest,textStatus){ }, statusCode: { 401: funct 阅读全文
posted @ 2022-03-31 17:59 小泉哥 阅读(71) 评论(0) 推荐(0) 编辑