上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 51 下一页
摘要: 1. 解决办法 打开数据库,数据库配置文件一般在conf/sonar.properties文件中配置在数据库中执行如下sql,将管理员admin密码重置为admin postgres=# \c sonarqube sonar=# update users set crypted_password = 阅读全文
posted @ 2021-12-28 17:15 代码诠释的世界 阅读(2948) 评论(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 代码诠释的世界 阅读(1093) 评论(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 代码诠释的世界 阅读(1364) 评论(0) 推荐(0)
摘要: 1. 安装pip依赖报错 2. 处理方法 pip3 install -U pip setuptools 阅读全文
posted @ 2021-12-23 16:49 代码诠释的世界 阅读(700) 评论(0) 推荐(0)
摘要: 1. 新建项目 2. 新建流水线项目 输入名称,选择流水线项目 3. 基础配置 4. 根据自己需求配置对应参数 4. 配置触发器 5. 配置触发器高级选项 6. 配置高级项目选项-流水线脚本 7. pipline脚本示例 pipeline { agent any stages { stage('Pr 阅读全文
posted @ 2021-12-22 14:37 代码诠释的世界 阅读(465) 评论(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 代码诠释的世界 阅读(929) 评论(0) 推荐(0)
摘要: 1. 使用管理员创建仓库 2. 编辑仓库权限 3. 编辑URI 4. 配置Storage(自动生成) 其他暂时可以不配 5. 相关配置 # 1. 配置arc到环境变量cd arcanist/bin vim .bashrc# 添加你自己的路径,export PATH=$PATH:/home/maste 阅读全文
posted @ 2021-12-21 20:59 代码诠释的世界 阅读(673) 评论(0) 推荐(0)
摘要: 1. SVN远程仓库安装 # 安装SVN https://www.cnblogs.com/fireblackman/p/15711119.html # 安装readmine https://www.cnblogs.com/fireblackman/p/15712646.html 2. readmin 阅读全文
posted @ 2021-12-21 18:40 代码诠释的世界 阅读(313) 评论(0) 推荐(0)
摘要: 1. 下载gitlab-runner Download and install binary # Download the binary for your system sudo curl -L --output /usr/local/bin/gitlab-runner https://gitlab 阅读全文
posted @ 2021-12-21 17:56 代码诠释的世界 阅读(651) 评论(0) 推荐(0)
摘要: 1. 最开始安装方法 sudo apt install gitlab-runner 安装的版本是10版本 2. 升级安装最新稳定版本 # For Debian/Ubuntu/Mint curl -L https://packages.gitlab.com/install/repositories/r 阅读全文
posted @ 2021-12-21 17:23 代码诠释的世界 阅读(492) 评论(0) 推荐(0)
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 51 下一页