Fork me on GitHub
摘要: vim /etc/mysql/conf.d/docker.cnf 再上面文件添加下面这一句 skip-grant-tables UPDATE user SET authentication_string="" WHERE user="root"; flush privileges; 重启 skip- 阅读全文
posted @ 2022-07-29 17:25 爱悟空 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 借助LibreOffice, 该软件是openoffice办公套件衍生版,开源,支持多系统 下载地址:https://zh-cn.libreoffice.org/download/libreoffice/ linux下安装方式 具体可见:https://wiki.documentfoundation 阅读全文
posted @ 2022-03-10 14:46 爱悟空 阅读(942) 评论(0) 推荐(0) 编辑
摘要: 微软官网教程 https://docs.microsoft.com/en-us/visualstudio/install/create-an-offline-installation-of-visual-studio?view=vs-2019 先下载exe安装程序 然后再所在目录下的命令行输入以下内 阅读全文
posted @ 2022-01-26 14:55 爱悟空 阅读(333) 评论(0) 推荐(0) 编辑
摘要: docker运行发生错误 docker: Error response from daemon: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "docker-e 阅读全文
posted @ 2021-11-15 19:26 爱悟空 阅读(2277) 评论(0) 推荐(0) 编辑
摘要: 做个错误记录吧, 我是通过windows 系统的powershell 进行 保存 docker save xxx | gzip > xxx.tgz 出现这行错误 Error processing tar file(exit status 1): archive/tar: invalid tar he 阅读全文
posted @ 2021-11-12 15:04 爱悟空 阅读(3042) 评论(1) 推荐(2) 编辑
摘要: Could not execute because the application was not found or a compatible .NET SDK is not installed.Possible reasons for this include: * You intended to 阅读全文
posted @ 2021-11-11 10:39 爱悟空 阅读(1917) 评论(0) 推荐(0) 编辑
摘要: 使用netcore 3.1 + nginx + Swashbuckle.AspNetCore 5.6.3 部署 出现如下错误 部署在windows下 项目正常,直接用VS调试运行也正常显示,发布在Linux下无法访问,Linux下使用的是nginx代理,所以推测是nginx代理问题, 经过两天查阅和 阅读全文
posted @ 2021-01-07 15:54 爱悟空 阅读(1456) 评论(1) 推荐(1) 编辑
摘要: 是什么 事务是一个单独的隔离操作:事务中的所有命令都会序列化、按顺序地执行。事务在执行的过程中,不会被其他客户端发送来的命令请求所打断。 事务是一个原子操作:事务中的命令要么全部被执行,要么全部都不执行。 Redis事务的三个阶段 开始事务 命令入队 执行事务 Redis 事务相关的命令及用法 MU 阅读全文
posted @ 2020-10-30 16:42 爱悟空 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 中文官方文档地址:http://www.redis.cn/topics/persistence.html Redis 持久化 Redis 提供了不同级别的持久化方式: RDB持久化方式能够在指定的时间间隔能对你的数据进行快照存储. AOF持久化方式记录每次对服务器写的操作,当服务器重启的时候会重新执 阅读全文
posted @ 2020-10-30 11:22 爱悟空 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 安装 InfluxDB v1.8.3 wget https://dl.influxdata.com/influxdb/releases/influxdb_1.8.3_amd64.deb sudo dpkg -i influxdb_1.8.3_amd64.debsystemctl enable inf 阅读全文
posted @ 2020-10-23 15:14 爱悟空 阅读(1074) 评论(0) 推荐(0) 编辑