随笔分类 -  Linux-Basic

上一页 1 ··· 4 5 6 7 8 9 下一页
摘要:1. 下载链接 # https://github.com/allure-framework/allure2/releases# allure文档:https://docs.qameta.io/allure/ 2. 安装 ubuntu sudo dpkg -i allure_2.17.2-1_all. 阅读全文
posted @ 2022-01-18 19:55 代码诠释的世界 阅读(450) 评论(0) 推荐(0) 编辑
摘要:1. 在哪里 apt-get install apps 这样的命令,一般会将下载文件放在 /var/cache/apt/archives目录下,然后安装。 2. 如何清理 apt-get clean删除/var/cache/apt/archives/ 和 /var/cache/apt/archive 阅读全文
posted @ 2022-01-14 11:10 代码诠释的世界 阅读(1796) 评论(0) 推荐(0) 编辑
摘要:1. 更新系统 sudo apt-get update sudo apt-get dist-upgrade sudo apt-get autoremove 2. 安装postfixadmin sudo apt install php7.2-fpm php7.2-cli php7.2-imap php 阅读全文
posted @ 2022-01-13 20:38 代码诠释的世界 阅读(456) 评论(0) 推荐(0) 编辑
摘要:1. shell脚本 #!/bin/bash echo 'some id_rsa content'>~/.ssh/id_rsa_mac chmod 600 ~/.ssh/id_rsa_mac eval `ssh-agent` ssh-add ~/.ssh/id_rsa ssh-add ~/.ssh/ 阅读全文
posted @ 2022-01-13 18:32 代码诠释的世界 阅读(48) 评论(0) 推荐(0) 编辑
摘要:由于开发给了个jar,本地搭建个环境 然后运行就报错error unable to access jarfile java -jar antenna-server-1.0.0-jar 实际是包名不对,不是“-”, 应该是“.” 阅读全文
posted @ 2022-01-12 17:02 代码诠释的世界 阅读(887) 评论(0) 推荐(0) 编辑
摘要:1. 官网 https://www.proofpoint.com/us/products/email-protection/open-source-email-solution 2. 使用qq/163/126免费个人邮箱,申请获取授权码 3. smtp 非ssl #!/bin/bash read - 阅读全文
posted @ 2022-01-12 14:37 代码诠释的世界 阅读(118) 评论(0) 推荐(0) 编辑
摘要:1. 开始我是用sudo去安装, 可能用到了系统环境 sudo pip3 install -r requirements.txt 2. 改成如下即可 pip3 install -r requirements.txt --user 阅读全文
posted @ 2022-01-10 17:27 代码诠释的世界 阅读(84) 评论(0) 推荐(0) 编辑
摘要:由于帐号并没有开启免密码导致的 假设当前帐号为jenkins 1 打开sudoers sudo vim /etc/sudoers 2 添加免密码 jenkins ALL = NOPASSWD: ALL 阅读全文
posted @ 2022-01-10 17:09 代码诠释的世界 阅读(174) 评论(0) 推荐(0) 编辑
摘要:1. 打开系统配置,配置 Extended E-mail Notification 注意添加认证凭据 2. 打开系统配置,配置邮件通知 3. 为maven构建项目配置邮件通知 基本默认即可 4. 手动触发,查看邮件发送 到此基本完成 参考:https://www.cnblogs.com/imyalo 阅读全文
posted @ 2022-01-06 19:20 代码诠释的世界 阅读(73) 评论(0) 推荐(0) 编辑
摘要:一、相关文档 https://wiki.archlinux.org/title/Dnsmasq 二、安装 Ubuntu 18.04附带了systemd-resolve,需要禁用它,因为它绑定到53端口,与Dnsmasq端口冲突。 运行以下命令以禁用已解析的服务: sudo systemctl dis 阅读全文
posted @ 2022-01-06 16:35 代码诠释的世界 阅读(2592) 评论(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 代码诠释的世界 阅读(1930) 评论(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 代码诠释的世界 阅读(530) 评论(0) 推荐(0) 编辑
摘要:1. 解决办法 打开数据库,数据库配置文件一般在conf/sonar.properties文件中配置在数据库中执行如下sql,将管理员admin密码重置为admin postgres=# \c sonarqube sonar=# update users set crypted_password = 阅读全文
posted @ 2021-12-28 17:15 代码诠释的世界 阅读(2422) 评论(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 代码诠释的世界 阅读(1275) 评论(0) 推荐(0) 编辑
摘要:1. 安装pip依赖报错 2. 处理方法 pip3 install -U pip setuptools 阅读全文
posted @ 2021-12-23 16:49 代码诠释的世界 阅读(678) 评论(0) 推荐(0) 编辑
摘要:1. 新建项目 2. 新建流水线项目 输入名称,选择流水线项目 3. 基础配置 4. 根据自己需求配置对应参数 4. 配置触发器 5. 配置触发器高级选项 6. 配置高级项目选项-流水线脚本 7. pipline脚本示例 pipeline { agent any stages { stage('Pr 阅读全文
posted @ 2021-12-22 14:37 代码诠释的世界 阅读(444) 评论(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 代码诠释的世界 阅读(884) 评论(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 代码诠释的世界 阅读(633) 评论(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 代码诠释的世界 阅读(283) 评论(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 代码诠释的世界 阅读(620) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 下一页
点击右上角即可分享
微信分享提示