上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 76 下一页
摘要: 1 关闭windows防火墙,或者 添加入站规则允许mysql的端口(默认3306) 2 授权mysql允许其他电脑访问 mysql -uroot -p use mysql; select host,user from user; update user set host ='%' where us 阅读全文
posted @ 2023-06-22 17:03 浮尘微光 阅读(351) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_45279180/article/details/121684723 今天给大家分享一下如何然让Google Chrome禁用触摸板滑动前进后退。本来这个是一个不错的功能,但是甲方在使用触摸屏的电脑浏览页面的时候准备用滑动去切换轮播,但是出现了退出了 阅读全文
posted @ 2023-06-21 15:12 浮尘微光 阅读(2411) 评论(1) 推荐(0)
摘要: 无缓冲 channel 的用法 无缓冲 channel 兼具通信和同步特性,在并发程序中应用颇为广泛。现在我们来看看几个无缓冲 channel 的典型应用: 第一种用法:用作信号传递 无缓冲 channel 用作信号传递的时候,有两种情况,分别是 1 对 1 通知信号和 1 对 n 通知信号。我们先 阅读全文
posted @ 2023-05-15 17:33 浮尘微光 阅读(825) 评论(0) 推荐(0)
摘要: 如下面代码所示: package main import ( "bytes" "fmt" "runtime" "strconv" ) /** 实现一个自动注入跟踪代码,并输出有层次感的函数调用链跟踪命令行工具. */ func Trace() func() { //通过 runtime.Caller 阅读全文
posted @ 2023-05-13 18:18 浮尘微光 阅读(150) 评论(0) 推荐(0)
摘要: 把https模式换成ssh 用git remote -v查看使用的是https还是ssh等$ git remote -v> origin https://github.com/USERNAME/REPOSITORY.git (fetch)> origin https://github.com/USE 阅读全文
posted @ 2023-05-10 14:54 浮尘微光 阅读(376) 评论(0) 推荐(0)
摘要: brew services start rabbitmqError: uninitialized constant Homebrew::Service::System/usr/local/Homebrew/Library/Taps/homebrew/homebrew-services/cmd/ser 阅读全文
posted @ 2023-05-10 11:53 浮尘微光 阅读(2190) 评论(0) 推荐(1)
摘要: mysql版本5.7 在my.cnf配置文件中增加下面的配置信息: [mysqld_multi] #mysqld = /usr/local/mysql/bin/mysqld_safe mysqladmin = /usr/local/mysql/bin/mysqladmin user = root p 阅读全文
posted @ 2023-04-26 16:08 浮尘微光 阅读(16) 评论(0) 推荐(0)
摘要: 通过 brew install telnet 时会要求安装 xcode brew install telnet Warning: No remote 'origin' in /usr/local/Homebrew/Library/Taps/homebrew/homebrew-services, sk 阅读全文
posted @ 2023-04-12 16:06 浮尘微光 阅读(1793) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/cphovo/p/16355202.html 1. 修改my.inf# [root@VM-12-15-centos ~]# vim /etc/my.cnf 添加如下 skip-grant-tables 2. 重启MySQL服务# [root@VM-12 阅读全文
posted @ 2023-03-30 15:12 浮尘微光 阅读(243) 评论(0) 推荐(0)
摘要: https://www.yangdx.com/2019/09/56.html 本文地址: https://www.yangdx.com/2019/09/56.html 转载请注明出处 前段时间把服务器的 OpenSSL 升级了到 1.1.1c 版本,今天安装 Composer 的时候报错了! 报错的 阅读全文
posted @ 2022-12-24 20:09 浮尘微光 阅读(2952) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 76 下一页