摘要: nginx.conf 配置文件中配置 auth_basic "please input username and password"; auth_basic_user_file "/usr/local/nginx/conf/passwd.db"; passwd.db 的配置 zhangsan: 加密 阅读全文
posted @ 2022-02-24 17:29 紫川先生 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 安装Nginx rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm wget -O /etc/yum.repos.d/CentOS-Base.repo 阅读全文
posted @ 2022-02-17 15:32 紫川先生 阅读(59) 评论(0) 推荐(0) 编辑
摘要: nacos 部署 docker run --env MODE=standalone --name his-nacos.his --network ruoyi -d -p 8848:8848 -e SPRING_DATASOURCE_PLATFORM=mysql -e MYSQL_SERVICE_HO 阅读全文
posted @ 2022-02-15 17:00 紫川先生 阅读(216) 评论(0) 推荐(0) 编辑
摘要: vi /etc/profile JAVA_HOME=/usr/local/java/jdk1.8.0_45 export M2_HOME=/usr/local/maven/apache-maven-3.6.2 export JRE_HOME=/usr/local/java/jre export CL 阅读全文
posted @ 2022-02-15 16:47 紫川先生 阅读(26) 评论(0) 推荐(0) 编辑
摘要: maven 配置 JDK 配置 Git 配置 configuration system 配置 ssh-copy-id 192.168.66.103 拷贝公钥 阅读全文
posted @ 2022-02-15 16:29 紫川先生 阅读(22) 评论(0) 推荐(0) 编辑
摘要: pipeline { agent any stages { stage('拉取代码') { agent none steps { checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfig 阅读全文
posted @ 2022-02-15 16:17 紫川先生 阅读(171) 评论(0) 推荐(0) 编辑
摘要: rpm 包下载地址 https://mirrors.tuna.tsinghua.edu.cn/jenkins/ rpm安装 rpm -ivh jenkins-2.183-1.1.noarch.rpm 修改配置文件 vi /etc/sysconfig/jenkins #修改:JENKINS_USER 阅读全文
posted @ 2022-02-09 17:29 紫川先生 阅读(269) 评论(0) 推荐(0) 编辑
摘要: #防火墙关闭 service firewalld stop #防火墙开启 service firewalld start #查看防火墙状态 systemctl status firewalld #设置开机禁用防火墙 systemctl disable firewalld #设置开机启用防火墙 sys 阅读全文
posted @ 2022-01-28 10:00 紫川先生 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 一、安装依赖 yum -y install policycoreutils openssh-server openssh-clients postfix #启动ssh服务&设置为开机启动 systemctl enable sshd && sudo systemctl start sshd 查看ssh 阅读全文
posted @ 2021-12-27 16:30 紫川先生 阅读(53) 评论(0) 推荐(0) 编辑
摘要: import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import java.util.concurrent.atomic.AtomicInteger; import st 阅读全文
posted @ 2021-12-05 17:58 紫川先生 阅读(26) 评论(0) 推荐(0) 编辑