摘要:
禁用和启动Hyper-V: 使用管理员权限运行命令:bcdedit /set hypervisorlaunchtype off。 对应的打开Hyper-V的命令:bcdedit /set hypervisorlaunchtype auto。 然后重启电脑 An error occurred Hard 阅读全文
2020年5月12日 #
2020年5月8日 #
摘要:
第一次查出来的数据: 第二次查询,把上次查询的数据合并显示了: 正确的显示应该是: 解决方法: 一:在setOpiont前加入 chart.clear(); 二:在 setOpion方法修改默认值,不合并上次查询数据 setOption({},true); 【 chart.setOption(opt 阅读全文
摘要:
npm install moment --save (估计网络慢,造成失败) yarn add moment (成功) 阅读全文
2020年4月29日 #
摘要:
yarn add echarts --save 阅读全文
摘要:
实时查看docker容器日志 $ sudo docker logs -f -t --tail 行数 容器名 例:实时查看docker容器名为s12的最后10行日志 $ sudo docker logs -f -t --tail 10 s12 阅读全文
2020年4月27日 #
摘要:
1.停止所有的container,这样才能够删除其中的images: docker stop $(docker ps -a -q) 如果想要删除所有container的话再加一个指令: docker rm $(docker ps -a -q) 2.查看当前有些什么images docker imag 阅读全文
2020年4月18日 #
摘要:
在拉取镜像的时候速度过慢可以使用Aliyun的镜像来加速,设置如下(在服务器上设置)修改daemon配置文件/etc/docker/daemon.json来使用加速器# sudo mkdir -p /etc/docker# sudo tee /etc/docker/daemon.json <<-'E 阅读全文
2020年4月17日 #
摘要:
一:将前端打包 二:使用SCP上传至服务器对应的目录 # scp -r dist root@101.111.111.11:/data/nginx/nginx/web/html 【如有错误:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 阅读全文
摘要:
一:win10安装Docker Desktop community【版本:2.2.0.5(43884)】 二:运行Docker Desktop 三:在右下角Docker Desktop图标上右键选择: Switch to Linux containers 四:打开powershell,输入:dock 阅读全文
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 阅读全文