摘要: 1,修改配置文件 sudo vi /opt/homebrew/etc/my.cnf 在【mysqld】下添加配置 skip-grant-tables 2,重启服务 brew services restart mysql@5.7 3,进入mysql mysql -uroot -p 回车进入mysql 阅读全文
posted @ 2022-08-03 11:47 Lafite-1820 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 1.安装镜像 docker pull rabbitmq 2.运行镜像 docker run -d --hostname my-rabbit --name rabbit -p 15672:15672 -p 5672:5672 rabbitmq 3.进入镜像容器启动MQ 通过docker ps -a查看 阅读全文
posted @ 2022-08-02 16:45 Lafite-1820 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 介绍 NUMERIC NUMERIC类型的语法: 1 | NUMERIC ( precision, scale ) 1 | numeric(x+y,y) 其中,y为小数位数,x为整数位数,x+y为总位数, 则:numeric(4,1)总位数为4,其中小数1位,整数4-1=3位 precision 表 阅读全文
posted @ 2022-07-26 14:17 Lafite-1820 阅读(2279) 评论(0) 推荐(0) 编辑
摘要: 解决办法: ALTER TABLE tableName REPLICA IDENTITY FULL; (tableName能替换成你自己的表名称) 阅读全文
posted @ 2022-07-26 10:06 Lafite-1820 阅读(880) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-07-25 15:03 Lafite-1820 阅读(2427) 评论(0) 推荐(0) 编辑
摘要: 一、安装方式 /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 二、常用命令 brew help 查看帮助 brew install <package name> 安装软件包 阅读全文
posted @ 2022-07-25 14:35 Lafite-1820 阅读(1165) 评论(0) 推荐(0) 编辑
摘要: 获取yml配置文件的中的endpoint、accessKeyId、accessKeySecret、bucketName aliyun: oss: endpoint: oss-cn-hangzhou.aliyuncs.com accessKeyId: 改成自己的id accessKeySecret: 阅读全文
posted @ 2022-07-22 15:53 Lafite-1820 阅读(3403) 评论(0) 推荐(0) 编辑
摘要: 通过报错信息,可以看出核心问题在于,依赖文件里找不到Sass文件,这个提示我们要重新安装Sass 1. 通过cd切换到当前项目的依赖文件夹下,也就是node_modules文件,然后运行命令安装Sass,命令如下 npm rebuild node-sass 2 .然后再切换到项目文件夹下,运行命令更 阅读全文
posted @ 2022-05-12 16:33 Lafite-1820 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 1),进入到Go安装目录下的src目录 2),1、安装 godoc go get -v golang.org/x/tools/cmd/godoc 3),启动小型的服务器 # 方式一 godoc -http=:6060 # 方式二 : -play可以使用playground运行Example代码 go 阅读全文
posted @ 2022-05-05 23:54 Lafite-1820 阅读(824) 评论(0) 推荐(0) 编辑
摘要: Ubuntu apt 安装 nodejs #先安装Python的软件仓库支持sudo apt-get install -y python-software-properties software-properties-common #增加nodejs 的仓库配置 sudo add-apt-repos 阅读全文
posted @ 2022-04-18 10:22 Lafite-1820 阅读(260) 评论(0) 推荐(0) 编辑