05 2024 档案
摘要:查看centos版本cat /etc/centos-release 1.安装docker curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 启动dockersudo systemctl start docker 设置
阅读全文
摘要:一.防火墙的启动关闭 启动: systemctl start firewalld关闭: systemctl stop firewalld查看状态: systemctl status firewalld开机禁用 : systemctl disable firewalld开机启用 : systemctl
阅读全文
摘要:简介:openrestry是一个与lua脚本结合的高性能服务器 一:根据官网下载安装包 https://openresty.org/cn/linux-packages.html centos7.9的安装命令 # add the yum repo: wget https://openresty.org
阅读全文
摘要: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.my
阅读全文
摘要:#!/bin/bash # 应用程序的名字 APP_NAME="wecom" BASE_PATH="/home/cy/soft/wecom/" # JAR文件的新版本路径 JAR_PATH="${BASE_PATH}${APP_NAME}.jar" # PID文件的路径 PID_PATH="${BA
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文
摘要:一.springboot整合security后一般要配置security的跨域和mvc的跨域才能实现跨域 1.spring-security配置跨域 @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exce
阅读全文