-
1. 安装渠成
- 1.1 快速安装
- 2. 渠成介绍
-
3. 安装应用
- 3.1 安装应用
- 4. 平台使用
- 5. 命令行工具
-
6. 解决方案
-
6.1. 服务对接
- 6.1.1 生成 Gitlab 访问令牌
- 6.1.2 创建 Gitlab 操作用户
- 6.1.3 生成 Gitea 访问令牌
- 6.1.4 创建 Gitea 操作用户
- 6.1.5 对接 Sonarqube 服务
- 6.1.6 对接 Jenkins 服务
-
6.1. 服务对接
- 7. 问题排查
安装与升级
- 2022-06-08 16:04:17
- 惠赵燕
- 11987
- 最后编辑:郑院生 于 2023-09-25 09:38:26
- 分享链接
一、安装命令行
目前支持如下三种方式
1.1. 从源码安装
需要提前安装go环境,推荐
go1.20
# git clone the repo
git clone https://github.com/easysoft/quickon_cli.git
编译二进制
# Build and run the executable
make generate
# gox build 需要提前安装gox
make build
# 或者 goreleaser, 需要提前安装goreleaser & upx
make snapshot
1.2. 二进制安装
使用我们提供的编译二进制文件。可以从下面或者github获取
# 稳定版本 / stable / tag (Recommended)
curl https://pkg.qucheng.com/quickon/get.sh | sh -
q init
从github获取最新版本, 示例如下
curl -L --remote-name-all https://github.com/easysoft/quickon_cli/releases/latest/download/qcadmin_linux_amd64
1.3. 包管理工具安装
目前仅提供最新版本deb或者rpm包方式安装, 默认支持命令行补全。
# debian
echo "deb [trusted=yes] https://repo.qucheng.com/quickon/apt/ /" | tee /etc/apt/sources.list.d/quickon.list
apt update
apt search qcadmin
apt install qcadmin
# centos7
cat > /etc/yum.repos.d/quickon.repo << EOF
[quickon]
name=Quickon Repo
baseurl=https://repo.qucheng.com/quickon/yum/
enabled=1
gpgcheck=0
EOF
yum makecache
yum install qcadmin
二、升级命令行
2.1 通过q命令升级
# 通过q upgrade 命令升级,目前只支持升级q命令本身
q upgrade q
# 示例如下:
~ q upgrade q
[done] √ Successfully updated q to version <当前最新版本>
[info] Release note:
release <当前最新版本>
2.2 通过替换q(qcadmin)替换升级
该步骤同安装,直接安装替换q或者qcadmin即可
# q命令路径
~ command -v q
/usr/bin/q
command -v qcadmin
/usr/bin/qcadmin
2.3 包管理工具升级
# Debian
apt upgrade qcadmin
# Centos
yum upgrade
三、其他
其他版本升级参考 1.0.3版本及之前版本升级
发表评论