摘要:
org.springframework.security.web.firewall.RequestRejectedException: The request was rejected because the URL contained a potentially malicious String 阅读全文
摘要:
问题描述 在启动容器的时候报错 Exception in thread "main" java.lang.RuntimeException: starting java failed with [1] output: # # There is insufficient memory for the 阅读全文
摘要:
1.下载插件源码 git clone https://github.com/mobz/elasticsearch-head.git 2.进入文件夹 npm install 3.安装 npm install 4.启动 npm run start 5.访问http://localhost:910 阅读全文
摘要:
1、pom.xml 中引入 redis 依赖 <!-- Redis依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactI 阅读全文
摘要:
Demo public class Test { public static void main(String[] args) { test(10); test(100); test(1000); test(10000); } public static void test(int size) { 阅读全文
摘要:
一、安装包安装 1.下载 访问 ElasticSearch 官网 进行下载 2.解压 3.配置 进入 ElasticSearch 安装目录的 config 目录在 elasticsearch.yml 文件中添加如下信息。 action.auto_create_index: .security,.mo 阅读全文
摘要:
下载镜像 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 阅读全文
摘要:
influxdb安装以及配置 brew update brew install influxdb #开机启动 ln -sfv /opt/homebrew/Cellar/influxdb/2.7.5/*.plist ~/Library/LaunchAgents #启动服务 launchctl load 阅读全文
摘要:
用brew安装nvm brew install nvm 创建nvm的工作目录 mkdir ~/.nvm 配置环境变量 vim ~/.bash_profile ## 添加配置 export NVM_DIR="$HOME/.nvm" [ -s "/opt/homebrew/opt/nvm/nvm.sh" 阅读全文
摘要:
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 阅读全文
摘要:
使用 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 阅读全文
摘要:
Docker配置 1.安装docker #!/bin/sh set -e # 在线安装脚本 # k3s 不建议安装swap 系统内存小的时候没有swap会卡死 if [ ! -f "/var/swap" ];then echo "create swap" dd if=/dev/zero of=/va 阅读全文
摘要:
1.普通安装,非最新版本 yum install redis 2.yum安装最新redis 如果要安装最新的redis,需要安装Remi的软件源,官网地址 yum install -y http://rpms.famillecollet.com/enterprise/remi-release-7.r 阅读全文
摘要:
1.下载 1.1通过官网下载 Maven官网:http://maven.apache.org/ Maven下载地址:http://maven.apache.org/download.cgi 将下载好的包通过ftp上传到服务器。 1.2.wget下载 这里使用了华中科技大学开源镜像站,网上有很多,自行 阅读全文
摘要:
1.安装前准备 对于nginx编译安装需要先安装编译 的工具,然后再安装nginx依赖 yum -y install gcc gcc-c++ autoconf automake make yum -y install zlib zlib-devel openssl openssl-devel pcr 阅读全文