摘要: 问题记录 生成验证码服务部署到linuxdocker上发生错误。获取不到依赖包 添加依赖包 https://www.nuget.org/packages/SkiaSharp.NativeAssets.Linux.NoDependencies 阅读全文
posted @ 2021-09-06 17:50 芝幽幽 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1.初始化为git 仓库 git init 2 添加全部文件到仓库 git add . 3. 提交信息 git commit -m "commit all file" 4.添加远程仓库地址 git remote add origin git@github.com:xxx.git 5.提交到远程仓库 阅读全文
posted @ 2021-09-03 11:29 芝幽幽 阅读(453) 评论(0) 推荐(1) 编辑
摘要: 添加远程仓库出错 因为已经存在了一个错误的地址 查看当前配置的远程仓库地址 git remote -v 删除本地指定的远程地址 git remote remove origin 再执行-v的查看 可以添加新的远程仓库地址了 阅读全文
posted @ 2021-09-03 11:20 芝幽幽 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 创建新的数据库失败 原因:无法获得数据库 'model' 上的排他锁 执行sql查询 是谁占用了model进程。发现是进程数是51 select spid from master.sys.sysprocesses where dbid = db_id('model'); 执行如下指令删除 decla 阅读全文
posted @ 2021-09-03 10:44 芝幽幽 阅读(115) 评论(0) 推荐(0) 编辑
摘要: docker run -dit --restart=always --name mssql -p 1401:1433\ -e 'ACCEPT_EULA=Y' \ -e 'SA_PASSWORD=mssq123456' \ -e 'MSSQL_LCID=2052' \ -e 'MSSQL_COLLAT 阅读全文
posted @ 2021-09-03 10:31 芝幽幽 阅读(77) 评论(0) 推荐(0) 编辑
摘要: windows 系统操作 C:\Users>docker cp F:\Downloads\jdk-8u301-linux-x64.rpm containerName:/home linux系统操作 docker cp /opt/doc containerName:/home 阅读全文
posted @ 2021-08-25 15:18 芝幽幽 阅读(62) 评论(0) 推荐(0) 编辑
摘要: https://helpcdn.aliyun.com/knowledge_detail/41206.html https://help.aliyun.com/knowledge_detail/36279.html http://www.hackdig.com/07/hack-405114.htm Y 阅读全文
posted @ 2021-07-22 16:50 芝幽幽 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 背景 Elasticsearch是一个开源的搜索引擎,建立在一个全文搜索引擎库 Apache Lucene™ 基础之上。 Elasticsearch是使用 Java 编写的,它的内部使用 Lucene 做索引与搜索,但是它的目的是使全文检索变得简单, 通过隐藏 Lucene 的复杂性,取而代之的提供 阅读全文
posted @ 2021-06-21 11:36 芝幽幽 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 查询语句 curl -X GET "localhost:9200/megacorp/employee/_search?pretty" -H 'Content-Type: application/json' -d' { "aggs": { "all_interests": { "terms": { " 阅读全文
posted @ 2021-06-21 11:31 芝幽幽 阅读(724) 评论(0) 推荐(0) 编辑
摘要: 1.下载安装公共签名密钥 rpm --import https://packages.elastic.co/GPG-KEY-elasticsearch 2.进入/etc/yum.repos.d 文件夹创建 kibana.repo文件 cd /etc/yum.repos.d vim kibana.re 阅读全文
posted @ 2021-06-21 10:37 芝幽幽 阅读(431) 评论(0) 推荐(0) 编辑