摘要: 准备工作 下载安装vagrant https://releases.hashicorp.com/vagrant/2.3.4/vagrant_2.3.4_windows_amd64.msi 选择自己需要的版本傻瓜式安装 下载安装vartualbox https://download.virtualbo 阅读全文
posted @ 2023-02-24 10:51 芫霸 阅读(174) 评论(0) 推荐(0) 编辑
 
摘要: 下载和安装 官网下载地址:https://git-scm.com/ 国内镜像下载地址:https://registry.npmmirror.com/binary.html?path=git-for-windows/ 傻瓜式下一步安装。 配置SSH密钥 Git Bash Here ssh-keygen 阅读全文
posted @ 2023-02-18 10:58 芫霸 阅读(19) 评论(0) 推荐(0) 编辑
  2023年10月6日
摘要: 查看文件大小 [root@hb logs]# du -h catalina.out 重定向清空文件 [root@hb logs]# > catalina.out 重定向true命令清空文件 [root@hb logs]# true > catalina.out 使用cat/cp/dd命令及/dev/ 阅读全文
posted @ 2023-10-06 10:15 芫霸 阅读(1927) 评论(0) 推荐(0) 编辑
  2023年3月27日
摘要: 本地war上传到linux scp ROOT.war serverIP:/home/ 查看目标容器ID docker ps 复制war到指定容器 docker cp ROOT.war 容器ID:/usr/local/tomcat/webapps/ 进入指定容器查看 docker exec -it 容 阅读全文
posted @ 2023-03-27 16:53 芫霸 阅读(21) 评论(0) 推荐(0) 编辑
  2023年3月21日
摘要: 本地库和远程库没有同步导致无法提交合并,冲突导致无法push git pull origin master --allow-unrelated-histories //从远端仓库拉去不相关历史 git push origin master//推送到远端master分支 阅读全文
posted @ 2023-03-21 09:35 芫霸 阅读(14) 评论(0) 推荐(0) 编辑
  2023年3月17日
摘要: CMD1(管理员) net stop mysql mysqld --console --skip-grant-tables --shared-memory (–skip-grant-tables 会让 MySQL 服务器跳过验证步骤,允许所有用户以匿名的方式,无需做密码验证就可以直接登录 MySQL 阅读全文
posted @ 2023-03-17 10:50 芫霸 阅读(15) 评论(0) 推荐(0) 编辑
  2023年3月2日
摘要: 1.拉取tomcat镜像 docker pull tomcat docker images 2.根据tomcat镜像创建一个tomcat container docker run -d -it --name yyb-tomcat tomcat docker ps 3.进入yyb-tomcat容器 d 阅读全文
posted @ 2023-03-02 16:09 芫霸 阅读(53) 评论(0) 推荐(0) 编辑
  2023年2月24日
摘要: 镜像 #以tomcat为基础镜像创建一个容器,容器名为my-tomcat #拉取tomcat最新镜像,实际生产中,docker pull 这一步可以省略,docker run的时候会自己去拉取。 docker pull tomcat docker run --name my-tomcat tomca 阅读全文
posted @ 2023-02-24 17:15 芫霸 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 国内Image仓库地址:https://hub.docker.com/search?q=tomcat 安装tomcat docker pull tomcat:8.5 查看Image docker images 运行tomcat docker run -d --name my-tomcat -p 90 阅读全文
posted @ 2023-02-24 16:21 芫霸 阅读(22) 评论(0) 推荐(0) 编辑
摘要: **在centos上安装docker** cat /etc/redhat-release -- uname -r : 显示操作系统的发行版号 -- uname -a :显示系统名、节点名称、操作系统的发行版号、内核版本等等。uname -r 1.卸载老版本 sudo yum remove docke 阅读全文
posted @ 2023-02-24 14:07 芫霸 阅读(56) 评论(0) 推荐(0) 编辑