edrp.cn的Blog

学习,需要交流,欢迎大家和我共同来学习C#,ASP.NET,MS SQL Server开发Web项目,欢迎大家和我交流

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 43 下一页

2020年5月12日 #

摘要: 禁用和启动Hyper-V: 使用管理员权限运行命令:bcdedit /set hypervisorlaunchtype off。 对应的打开Hyper-V的命令:bcdedit /set hypervisorlaunchtype auto。 然后重启电脑 An error occurred Hard 阅读全文
posted @ 2020-05-12 15:50 edrp.cn 阅读(1492) 评论(0) 推荐(0) 编辑

2020年5月8日 #

摘要: 第一次查出来的数据: 第二次查询,把上次查询的数据合并显示了: 正确的显示应该是: 解决方法: 一:在setOpiont前加入 chart.clear(); 二:在 setOpion方法修改默认值,不合并上次查询数据 setOption({},true); 【 chart.setOption(opt 阅读全文
posted @ 2020-05-08 21:41 edrp.cn 阅读(315) 评论(0) 推荐(0) 编辑

摘要: npm install moment --save (估计网络慢,造成失败) yarn add moment (成功) 阅读全文
posted @ 2020-05-08 20:37 edrp.cn 阅读(205) 评论(0) 推荐(0) 编辑

2020年4月29日 #

摘要: yarn add echarts --save 阅读全文
posted @ 2020-04-29 22:37 edrp.cn 阅读(236) 评论(0) 推荐(0) 编辑

摘要: 实时查看docker容器日志 $ sudo docker logs -f -t --tail 行数 容器名 例:实时查看docker容器名为s12的最后10行日志 $ sudo docker logs -f -t --tail 10 s12 阅读全文
posted @ 2020-04-29 10:21 edrp.cn 阅读(1012) 评论(0) 推荐(0) 编辑

2020年4月27日 #

摘要: 1.停止所有的container,这样才能够删除其中的images: docker stop $(docker ps -a -q) 如果想要删除所有container的话再加一个指令: docker rm $(docker ps -a -q) 2.查看当前有些什么images docker imag 阅读全文
posted @ 2020-04-27 13:12 edrp.cn 阅读(1038) 评论(0) 推荐(0) 编辑

2020年4月18日 #

摘要: 在拉取镜像的时候速度过慢可以使用Aliyun的镜像来加速,设置如下(在服务器上设置)修改daemon配置文件/etc/docker/daemon.json来使用加速器# sudo mkdir -p /etc/docker# sudo tee /etc/docker/daemon.json <<-'E 阅读全文
posted @ 2020-04-18 15:22 edrp.cn 阅读(317) 评论(0) 推荐(0) 编辑

2020年4月17日 #

摘要: 一:将前端打包 二:使用SCP上传至服务器对应的目录 # scp -r dist root@101.111.111.11:/data/nginx/nginx/web/html 【如有错误:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 阅读全文
posted @ 2020-04-17 23:24 edrp.cn 阅读(1366) 评论(0) 推荐(0) 编辑

摘要: 一:win10安装Docker Desktop community【版本:2.2.0.5(43884)】 二:运行Docker Desktop 三:在右下角Docker Desktop图标上右键选择: Switch to Linux containers 四:打开powershell,输入:dock 阅读全文
posted @ 2020-04-17 16:34 edrp.cn 阅读(465) 评论(0) 推荐(0) 编辑

2020年4月16日 #

摘要: 一、下载Harbor # wget https://storage.googleapis.com/harbor-releases/release-1.9.0/harbor-offline-installer-v1.9.4.tgz (# 以 /data/ 目录为例 # mkdir /data/ # c 阅读全文
posted @ 2020-04-16 22:58 edrp.cn 阅读(251) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 43 下一页