摘要:
kubectl get pods -n xxx kubectl logs -f designer-service-xxxx -n xxx 阅读全文
摘要:
Debian Docker 安装 Docker 支持以下的 Debian 版本: Buster 10 Stretch 9 (stable) / Raspbian Stretch Docker Engine-Community 在 x86_64(或 amd64 )armhf,和 arm64 体系结构上 阅读全文
摘要:
1 在后台查看日志 1.1 查看容器信息 watch -n1 kubectl get pods -n epros 1.2 查看对应的容器日志 kubectl logs 服务器容器id -n epros 阅读全文
摘要:
ll并不是linux下一个基本的命令,它实际上是ls -l的一个别名。 Ubuntu默认不支持命令ll,必须用 ls -l,这样使用起来不是很方便。 如果要使用此命令,可以作如下修改:打开 ~/.bashrc找到 #alias ll=’ls -l’,去掉前面的#就可以了。(关闭原来的终端才能使命令生 阅读全文
摘要:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '自己数据的密码' WITH GRANT OPTION; FLUSH PRIVILEGES; 阅读全文
摘要:
2023-05-29 16:25:31 [main] ERROR o.s.boot.SpringApplication - Application run failed java.lang.IllegalStateException: Logback configuration error dete 阅读全文
摘要:
# 172.18.150.198 epros-test-01 upstream eprosdesignerService { server 172.18.150.198:8080; } upstream eprosviewerService { server 172.18.150.198:8088; 阅读全文