上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 46 下一页
摘要: 1. 打开系统配置,配置 Extended E-mail Notification 注意添加认证凭据 2. 打开系统配置,配置邮件通知 3. 为maven构建项目配置邮件通知 基本默认即可 4. 手动触发,查看邮件发送 到此基本完成 参考:https://www.cnblogs.com/imyalo 阅读全文
posted @ 2022-01-06 19:20 代码诠释的世界 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 一、相关文档 https://wiki.archlinux.org/title/Dnsmasq 二、安装 Ubuntu 18.04附带了systemd-resolve,需要禁用它,因为它绑定到53端口,与Dnsmasq端口冲突。 运行以下命令以禁用已解析的服务: sudo systemctl dis 阅读全文
posted @ 2022-01-06 16:35 代码诠释的世界 阅读(2508) 评论(0) 推荐(0) 编辑
摘要: 1. 官网 # http://doc.ewomail.com/docs/ewomail/install 2. docker hub 镜像 # https://registry.hub.docker.com/r/bestwu/ewomail 3. 安装docker https://www.cnblog 阅读全文
posted @ 2022-01-06 15:45 代码诠释的世界 阅读(1812) 评论(0) 推荐(1) 编辑
摘要: 1. 官网 https://docs.sonarqube.org/8.9/setup/install-server/ 文档 Try Out SonarQube | SonarQube Docs 2. 安装Java环境 https://www.cnblogs.com/fireblackman/p/15 阅读全文
posted @ 2021-12-28 17:45 代码诠释的世界 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 1. 解决办法 打开数据库,数据库配置文件一般在conf/sonar.properties文件中配置在数据库中执行如下sql,将管理员admin密码重置为admin postgres=# \c sonarqube sonar=# update users set crypted_password = 阅读全文
posted @ 2021-12-28 17:15 代码诠释的世界 阅读(2139) 评论(0) 推荐(0) 编辑
摘要: 1. 用户及数据库创建 sudo -u postgres psql # 创建用户postgres=# create user test with password '123456'; # 创建数据库并指定拥有者postgres=# create database testdb owner test; 阅读全文
posted @ 2021-12-28 15:07 代码诠释的世界 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: 1. 官网 https://www.postgresql.org/download/linux/ubuntu/ 文档 PostgreSQL: Documentation 2. 安装 sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/a 阅读全文
posted @ 2021-12-28 14:42 代码诠释的世界 阅读(1215) 评论(0) 推荐(0) 编辑
摘要: 1. 安装pip依赖报错 2. 处理方法 pip3 install -U pip setuptools 阅读全文
posted @ 2021-12-23 16:49 代码诠释的世界 阅读(647) 评论(0) 推荐(0) 编辑
摘要: 1. 新建项目 2. 新建流水线项目 输入名称,选择流水线项目 3. 基础配置 4. 根据自己需求配置对应参数 4. 配置触发器 5. 配置触发器高级选项 6. 配置高级项目选项-流水线脚本 7. pipline脚本示例 pipeline { agent any stages { stage('Pr 阅读全文
posted @ 2021-12-22 14:37 代码诠释的世界 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 1. 官网 # 二进制包 https://rubies.travis-ci.org/ # 官网 https://rvm.io/ 2. 安装文档 https://rvm.io/rvm/install 3. 安装步骤 sudo apt install gnupg2# 配置秘钥gpg2 --recv-ke 阅读全文
posted @ 2021-12-22 11:30 代码诠释的世界 阅读(866) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 46 下一页