摘要: 列出所有标签为“none”的镜像 docker images --filter "dangling=true" 删除所有标签为“none”的镜像 docker rmi $(docker images -f "dangling=true" -q) 阅读全文
posted @ 2024-08-21 23:57 低调码农哥! 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 在创建redis时,注意指定docker内使用的网络为当前主机 --network host docker run --name redis -p 6379:6379 --restart=always --network host -d redis 阅读全文
posted @ 2024-08-21 23:15 低调码农哥! 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 问题,项目启动报错: Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Fai 阅读全文
posted @ 2024-08-19 22:43 低调码农哥! 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 修改daemon.json配置 vim /etc/docker/daemon.json 输入i 替换为: { "builder": { "gc": { "defaultKeepStorage": "20GB", "enabled": true } }, "experimental": true, " 阅读全文
posted @ 2024-08-07 21:50 低调码农哥! 阅读(23) 评论(0) 推荐(0) 编辑
摘要: IF NOT EXISTS可以用于创建表或者数据库的语句中,用于避免重复创建。 创建表时使用IF NOT EXISTS: 如果你不确定表是否存在,你可以在创建新表时使用IF NOT EXISTS,这样如果表已经存在,SQL语句将不会执行创建表的操作,也不会报错。 CREATE TABLE IF NO 阅读全文
posted @ 2024-07-22 18:20 低调码农哥! 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 查询更新 UPDATE tab1 as t1 INNER JOIN tab2 as t2 ON t1.sampleId= t2.sampleId set t1.TaskCon='4' where t2.GroupCode='5814344' AND t1.taskCon = '6' 阅读全文
posted @ 2024-06-06 16:07 低调码农哥! 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 问题1: apache2: Could not reliably determine the server's fully qualified domain name, using XXX.XXX.XXX.XXX. Set the 'ServerName' directive globally to 阅读全文
posted @ 2024-06-05 21:43 低调码农哥! 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 清除规则 iptables -F 移除nginx apt remove nginx 关闭防火墙 sudo ufw disable 安装apache apt update sudo apt install apache2 启动apache sudo systemctl start apache2 查看 阅读全文
posted @ 2024-05-29 22:51 低调码农哥! 阅读(16) 评论(0) 推荐(0) 编辑
摘要: centos环境: ubuntu环境: sudo vi /var/www/html/index.nginx-debian.html 注意 :vi编辑时,dd命令删除当前行,dG组合命令,删除整页 阅读全文
posted @ 2024-05-29 22:11 低调码农哥! 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 一、Docker服务 设置开机启动 docker设置开机启动 systemctl enable docker.service docker关闭开机启动 systemctl disable docker.service 重新设置docker在系统中的自启动 systemctl reenable doc 阅读全文
posted @ 2024-05-14 22:58 低调码农哥! 阅读(445) 评论(0) 推荐(0) 编辑