摘要: Uncaught TypeError: Error in invocation of runtime.sendMessage(optional string extensionId, any message, optional object options, optional function ca 阅读全文
posted @ 2022-12-30 00:27 崩溃大喵 阅读(692) 评论(0) 推荐(0)
摘要: C#的接口 IEnumerable 定义了 GetEnumerator 方法,它的拓展方法是都是基于这个迭代器实现的。 当我们使用比如,First、Where等泛型方法时,会实例化一个迭代器 Enumerator 包含 属性Current,方法MoveNext() public interface 阅读全文
posted @ 2022-10-30 13:30 崩溃大喵 阅读(209) 评论(0) 推荐(0)
摘要: /etc/docker/daemon.json { "insecure-registries":["myregistry.example.com:5000"] } 或者使用 --insecure-registry flag --insecure-registry=myip:5000 sudo ser 阅读全文
posted @ 2021-07-07 22:13 崩溃大喵 阅读(157) 评论(0) 推荐(0)
摘要: 将lower_case_table_names=1追加到mysqld.cnf,然后重启服务即可。 docker exec mysql bash -c 'echo "lower_case_table_names=1" >> etc/mysql/mysql.conf.d/mysqld.cnf' dock 阅读全文
posted @ 2021-05-24 08:47 崩溃大喵 阅读(635) 评论(0) 推荐(0)
摘要: 先决条件: 本地 Java研发环境(idea) docker(用来打包镜像) 服务器 k3s集群 镜像仓库 步骤概要 搭建 k3s 集群 构建 Java 项目,打包本地镜像 将本地镜像上传至镜像仓库 编写 yaml 文件,执行 kubectl 命令部署集群。 使用国内镜像k3s集群搭建 server 阅读全文
posted @ 2021-05-20 20:17 崩溃大喵 阅读(2412) 评论(0) 推荐(0)
摘要: server { listen 80; server_name localhost; root "C:/Users/pc/source/repo/WordPress"; location / { index index.php index.html; error_page 400 /error/40 阅读全文
posted @ 2021-04-12 18:10 崩溃大喵 阅读(206) 评论(0) 推荐(0)
摘要: System.InvalidOperationException: Failed to set version to docker-desktop: exit code: -1 stdout: �S��v�[a�{|�W N/ec\Ջ�v�d\O0 stderr: 在 Docker.ApiS 阅读全文
posted @ 2021-03-29 21:53 崩溃大喵 阅读(815) 评论(0) 推荐(0)
摘要: 重写configureRepositoryRestConfiguration方法。将特定Entity使用exposeIdsFor方法配置进去就可以把id字段暴露出来了。 import org.springframework.data.rest.core.config.RepositoryRestCo 阅读全文
posted @ 2021-03-17 14:22 崩溃大喵 阅读(195) 评论(0) 推荐(0)
摘要: 从docker上拉mysql 8.x镜像无法远程访问。提示错误代码1251。 Client does not support authentication protocol requested by server; consider upgrading MySQL client 原因是mysql中默 阅读全文
posted @ 2021-03-08 17:31 崩溃大喵 阅读(340) 评论(0) 推荐(0)
摘要: 在使用docker容器启动netcore3.x的项目连接 mysql5.7 时遇到如下错误 An excepetion has been rasied that is likely due to a transient failure. System.Net.Http.HttpRequestExce 阅读全文
posted @ 2020-04-04 18:58 崩溃大喵 阅读(1364) 评论(1) 推荐(1)