会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
芝幽幽
记录 分享 成长
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
下一页
2021年9月6日
docker部署+验证码错误
摘要: 问题记录 生成验证码服务部署到linuxdocker上发生错误。获取不到依赖包 添加依赖包 https://www.nuget.org/packages/SkiaSharp.NativeAssets.Linux.NoDependencies
阅读全文
posted @ 2021-09-06 17:50 芝幽幽
阅读(204)
评论(0)
推荐(0)
编辑
2021年9月3日
git 推送本地文件到远程仓库
摘要: 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 芝幽幽
阅读(455)
评论(0)
推荐(1)
编辑
git remote 删除已添加的远程仓库地址
摘要: 添加远程仓库出错 因为已经存在了一个错误的地址 查看当前配置的远程仓库地址 git remote -v 删除本地指定的远程地址 git remote remove origin 再执行-v的查看 可以添加新的远程仓库地址了
阅读全文
posted @ 2021-09-03 11:20 芝幽幽
阅读(848)
评论(0)
推荐(0)
编辑
mssql新建数据库
摘要: 创建新的数据库失败 原因:无法获得数据库 'model' 上的排他锁 执行sql查询 是谁占用了model进程。发现是进程数是51 select spid from master.sys.sysprocesses where dbid = db_id('model'); 执行如下指令删除 decla
阅读全文
posted @ 2021-09-03 10:44 芝幽幽
阅读(119)
评论(0)
推荐(0)
编辑
docker+mssql安装问题记录
摘要: 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 芝幽幽
阅读(78)
评论(0)
推荐(0)
编辑
2021年8月25日
docker从宿主机拷贝文件
摘要: 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)
编辑
2021年7月22日
记录一次服务器被攻击
摘要: 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 芝幽幽
阅读(31)
评论(0)
推荐(0)
编辑
2021年6月21日
Elasticsearch日志-docker安装Elasticsearch
摘要: 背景 Elasticsearch是一个开源的搜索引擎,建立在一个全文搜索引擎库 Apache Lucene™ 基础之上。 Elasticsearch是使用 Java 编写的,它的内部使用 Lucene 做索引与搜索,但是它的目的是使全文检索变得简单, 通过隐藏 Lucene 的复杂性,取而代之的提供
阅读全文
posted @ 2021-06-21 11:36 芝幽幽
阅读(337)
评论(0)
推荐(0)
编辑
Elasticsearch日志-错误记录-聚合查询
摘要: 查询语句 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 芝幽幽
阅读(740)
评论(0)
推荐(0)
编辑
Elasticsearch日志-yum安装Kibana
摘要: 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 芝幽幽
阅读(437)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
下一页
公告