摘要: 窗口-》首选项-》外观/颜色字体-》dbeaver fonts 阅读全文
posted @ 2024-06-21 16:16 24601 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 一.设置idea看不到文件 preferences->FIle Types->Ignored Files and Folders 编辑忽略文件,这个编辑idea会直接不显示你忽略的文件 2.在项目的根目录下面添加.gitignore文件,这个会忽略git提交文件 # Compiled class f 阅读全文
posted @ 2024-06-03 10:53 24601 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 查看centos版本cat /etc/centos-release 1.安装docker curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 启动dockersudo systemctl start docker 设置 阅读全文
posted @ 2024-05-28 11:05 24601 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 一.防火墙的启动关闭 启动: systemctl start firewalld关闭: systemctl stop firewalld查看状态: systemctl status firewalld开机禁用 : systemctl disable firewalld开机启用 : systemctl 阅读全文
posted @ 2024-05-28 10:26 24601 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 简介:openrestry是一个与lua脚本结合的高性能服务器 一:根据官网下载安装包 https://openresty.org/cn/linux-packages.html 二..配置环境 export PATH=/usr/local/openresty/nginx/sbin:$PATH 默认安 阅读全文
posted @ 2024-05-28 10:16 24601 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1.拉取镜像 sudo docker pull mysql:8.0.18 编辑配置文件 /home/cy/soft/mysql/conf/mysql.conf # For advice on how to change settings please see # http://dev.mysql.c 阅读全文
posted @ 2024-05-27 22:17 24601 阅读(14) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # 应用程序的名字 APP_NAME="wecom" BASE_PATH="/home/cy/soft/wecom/" # JAR文件的新版本路径 JAR_PATH="${BASE_PATH}${APP_NAME}.jar" # PID文件的路径 PID_PATH="${BA 阅读全文
posted @ 2024-05-27 21:02 24601 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.下载jdk yum install java-1.8.0-openjdkcd /usr/lib/jvmlsmv java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 java8 2.配置环境变量 nano /etc/profile 在末尾添加:expor 阅读全文
posted @ 2024-05-27 20:57 24601 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1.拉取镜像 docker pull redis:6.2.14 2.运行镜像 sudo docker run --name redis -d -p 6379:6379 \-v /home/cy/soft/redis/data:/data \-v /home/cy/soft/redis/conf/re 阅读全文
posted @ 2024-05-27 20:51 24601 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 一.springboot整合security后一般要配置security的跨域和mvc的跨域才能实现跨域 1.spring-security配置跨域 @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exce 阅读全文
posted @ 2024-05-27 16:50 24601 阅读(35) 评论(0) 推荐(0) 编辑