摘要: <template> <el-progress :percentage="percentage"></el-progress> <h1>{title}</h1> <el-button :disabled="isDisabled" @click="getProgress">下载文件</el-butto 阅读全文
posted @ 2024-01-16 17:24 时间的漩涡1992 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 一、安装Docker Desktop for Windows 在官网下载 Docker Desktop for Windows:https://docs.docker.com/desktop/install/windows-install/; 双击下载的 Docker for Windows Ins 阅读全文
posted @ 2024-01-15 10:05 时间的漩涡1992 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 分析慢SQL的步骤1.慢查询的开启并捕获:开启慢查询日志,设置阈值,比如超过5秒钟的就是慢SQL,至少跑1天,看看生产的慢SQL情况,并将它抓取出来2.explain + 慢SQL分析3.show Profile。(比explain还要详细,可以查询SQL在MySQL数据库中的执行细节和生命周期情况 阅读全文
posted @ 2023-12-26 14:20 时间的漩涡1992 阅读(603) 评论(0) 推荐(0) 编辑
摘要: 1、使用 docker run 命令运行时 增加 --restart=always 参数即可 2、使用 docker-compose 命令运行时 在 yml 文件中,需要自启动的 service 下 增加 restart: always 项目即可 3、已运行的容器修改其自启动策略 执行命令: doc 阅读全文
posted @ 2023-12-18 08:35 时间的漩涡1992 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 查看端口占用占用情况: netstat -ano |findStr 80 findStr相当于linux的grep 13964代表占用端口的pid 可以到任务管理器查看pid所对应的应用程序是哪个 阅读全文
posted @ 2023-12-17 14:28 时间的漩涡1992 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 小tip1 mysql> use testReading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -A 阅读全文
posted @ 2023-12-16 17:18 时间的漩涡1992 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 一、crontab概述1、crontab是Linux和类Unix操作系统下的一个任务调度工具,用于周期性地执行指定的任务或命令。2、crontab存储在文件中,该文件位于/var/spool/cron/目录中。3、除了管理员,可以将命令添加到crontab中,通常用户需要执行周期性操作时使用。 二、 阅读全文
posted @ 2023-12-16 15:27 时间的漩涡1992 阅读(1617) 评论(0) 推荐(0) 编辑
摘要: Linux下解压命令、压缩命令大全,详细教程 linux常用的解压和压缩命令如下: 1、.tar 解包:tar xvf FileName.tar打包:tar cvf FileName.tar DirName(注:tar是打包,不是压缩!) 2、.gz 解压1:gunzip FileName.gz解压 阅读全文
posted @ 2023-12-15 16:58 时间的漩涡1992 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 安装第三方包:get_command_4_run_container docker pull cucker/get_command_4_run_container 执行命令: docker run --rm -v /var/run/docker.sock:/var/run/docker.sock c 阅读全文
posted @ 2023-12-15 11:04 时间的漩涡1992 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 复制ctrl+c/鼠标右键 粘贴ctrl+v/鼠标右键 删除整行命令esc 删除光标前一个单词ctrl+backsapce 删除光标后一个单词ctrl+delete 删除光标前一个字符backsapce 删除光标后一个字符delete 删除光标前所有字符ctrl+home 删除光标后所有字符ctrl 阅读全文
posted @ 2023-12-15 10:47 时间的漩涡1992 阅读(182) 评论(0) 推荐(0) 编辑