上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: The request was rejected because the URL contained a potentially malicious String "%2e" org.springframework.security.web.firewall.RequestRejectedException: The request was rejected because the URL contained a potentially malicious String 阅读全文
posted @ 2024-04-17 21:08 leepandar 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 清理系统centos下缓存并释放内存 问题描述 在启动容器的时候报错 Exception in thread "main" java.lang.RuntimeException: starting java failed with [1] output: # # There is insufficient memory for the 阅读全文
posted @ 2024-03-25 15:24 leepandar 阅读(969) 评论(0) 推荐(0) 编辑
摘要: MAC安装elasticsearch-head插件 1.下载插件源码 git clone https://github.com/mobz/elasticsearch-head.git 2.进入文件夹 npm install 3.安装 npm install 4.启动 npm run start 5.访问http://localhost:910 阅读全文
posted @ 2024-03-22 14:26 leepandar 阅读(6) 评论(0) 推荐(0) 编辑
摘要: SpringBoot整合Redis 1、pom.xml 中引入 redis 依赖 <!-- Redis依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactI 阅读全文
posted @ 2024-01-26 10:12 leepandar 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Java中遍历方法对比 Demo public class Test { public static void main(String[] args) { test(10); test(100); test(1000); test(10000); } public static void test(int size) { 阅读全文
posted @ 2024-01-21 16:04 leepandar 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Mac/Centos安装elasticsearch7.14.0 一、安装包安装 1.下载 访问 ElasticSearch 官网 进行下载 2.解压 3.配置 进入 ElasticSearch 安装目录的 config 目录在 elasticsearch.yml 文件中添加如下信息。 action.auto_create_index: .security,.mo 阅读全文
posted @ 2024-01-21 13:10 leepandar 阅读(55) 评论(0) 推荐(0) 编辑
摘要: Docker运行Jnekins 下载镜像 docker pull jenkins/jenkins:2.419 赋予权限 chown -R 1000:1000 /opt/workspace/ chown -R 1000:1000 /usr/local/maven chown -R 1000:1000 /usr/local/git c 阅读全文
posted @ 2024-01-18 15:31 leepandar 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Mac安装influxdb influxdb安装以及配置 brew update brew install influxdb #开机启动 ln -sfv /opt/homebrew/Cellar/influxdb/2.7.5/*.plist ~/Library/LaunchAgents #启动服务 launchctl load 阅读全文
posted @ 2024-01-16 17:01 leepandar 阅读(73) 评论(0) 推荐(0) 编辑
摘要: brew安装nvm、node及配置 用brew安装nvm brew install nvm 创建nvm的工作目录 mkdir ~/.nvm 配置环境变量 vim ~/.bash_profile ## 添加配置 export NVM_DIR="$HOME/.nvm" [ -s "/opt/homebrew/opt/nvm/nvm.sh" 阅读全文
posted @ 2023-11-10 11:47 leepandar 阅读(303) 评论(0) 推荐(0) 编辑
摘要: centos7安装node指定版本 1.下载nodejs包 下载地址 本文下载的是v16.17.1 2.解压 上传文件到/usr/local/目录下,并解压 tar zxvf node-v16.17.1-linux-x64.tar.gz 3.更名 mv node-v16.17.1-linux-x64/ nodejs 4.建立软连接 l 阅读全文
posted @ 2023-10-23 17:58 leepandar 阅读(362) 评论(0) 推荐(0) 编辑
摘要: centos安装jenkins 使用 jenkins 的安装仓库 sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo sudo rpm --import https://pkg.jenkins.io 阅读全文
posted @ 2023-10-17 18:31 leepandar 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Harbor私服构建发布项目 Docker配置 1.安装docker #!/bin/sh set -e # 在线安装脚本 # k3s 不建议安装swap 系统内存小的时候没有swap会卡死 if [ ! -f "/var/swap" ];then echo "create swap" dd if=/dev/zero of=/va 阅读全文
posted @ 2023-09-18 22:46 leepandar 阅读(58) 评论(0) 推荐(0) 编辑
摘要: centos7安装redis 1.普通安装,非最新版本 yum install redis 2.yum安装最新redis 如果要安装最新的redis,需要安装Remi的软件源,官网地址 yum install -y http://rpms.famillecollet.com/enterprise/remi-release-7.r 阅读全文
posted @ 2023-09-18 22:28 leepandar 阅读(35) 评论(0) 推荐(0) 编辑
摘要: centos7安装maven 1.下载 1.1通过官网下载 Maven官网:http://maven.apache.org/ Maven下载地址:http://maven.apache.org/download.cgi 将下载好的包通过ftp上传到服务器。 1.2.wget下载 这里使用了华中科技大学开源镜像站,网上有很多,自行 阅读全文
posted @ 2023-09-18 22:27 leepandar 阅读(14) 评论(0) 推荐(0) 编辑
摘要: centos7安装nginx 1.安装前准备 对于nginx编译安装需要先安装编译 的工具,然后再安装nginx依赖 yum -y install gcc gcc-c++ autoconf automake make yum -y install zlib zlib-devel openssl openssl-devel pcr 阅读全文
posted @ 2023-09-18 22:25 leepandar 阅读(20) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页