摘要: 阅读全文
posted @ 2023-05-25 09:33 捕获到一只小白 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 1.查看端口9080占用情况 netstat -aon | findstr 9080 2.杀掉占用端口的进程号4752 taskkill /f /pid 4752 阅读全文
posted @ 2023-04-04 17:32 捕获到一只小白 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1.在/usr下新建java 2.上传安装包到java,并解压 tar -xvf jdk....tar.gz 3.ln -s /usr/java/jdk1.8.0_351 /usr/jdk 设置链接,节约目录长度 4.vim /etc/profile 5. 配置环境变量 export JAVA_HO 阅读全文
posted @ 2022-11-10 15:02 捕获到一只小白 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1.进入redis安装目录 2.redis-server --service-install redis.windows-service.conf --loglevel verbose 3.找到服务启动redis 阅读全文
posted @ 2022-08-29 10:57 捕获到一只小白 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 实现WebMvcConfigurer里面的addCorsMappings方法 @Configuration public class corsFilter1 implements WebMvcConfigurer { @Override public void addCorsMappings(Cor 阅读全文
posted @ 2022-08-25 16:43 捕获到一只小白 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1.DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker} 2.mkdir -p $DOCKER_CONFIG/cli-plugins 3.curl -SL https://github.com/docker/compose/releases/download/v 阅读全文
posted @ 2022-07-28 11:39 捕获到一只小白 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1.Set up the repository sudo yum install -y yum-utils sudo yum-config-manager \ --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo 2 阅读全文
posted @ 2022-07-28 11:37 捕获到一只小白 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_45774645/article/details/122942611 ln -s /usr/local/mysql/mysql-8.0.20/bin/mysql /usr/bin 此处路径有问题 阅读全文
posted @ 2022-06-17 17:47 捕获到一只小白 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/4e97b03e53ba 阅读全文
posted @ 2022-06-16 16:54 捕获到一只小白 阅读(20) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Always206/article/details/123694815 阅读全文
posted @ 2022-06-16 16:53 捕获到一只小白 阅读(73) 评论(0) 推荐(0) 编辑