- name: disable selinux shell: setenforce 0 ignore_errors: yes - name: disable selinux conf lineinfile: path: /etc/selinux/config regexp: '^SELINUX=.* ...
分类:
其他好文 时间:
2020-07-11 19:40:00
阅读次数:
79
有时候确实是密码输入错误,登陆gitlab重置下密码。 gitlab的https用户定义密码认证方式被关闭了,那就改成ssh方式在项目根目录: git remote set-url origin git@git.example.com:test.git 将项目从https源换成ssh 本机生成SSH ...
分类:
数据库 时间:
2020-07-10 21:01:20
阅读次数:
311
DRF组件的用法和作用 认证 自定义认证的类 """ from rest_framework.authentication import BaseAuthentication from rest_framework.exceptions import AuthenticationFailed fro ...
分类:
编程语言 时间:
2020-07-10 19:26:19
阅读次数:
52
一 认证Authentication 认证组件:校验用户 - 游客、合法用户、非法用户 游客:代表校验通过,直接进入下一步校验(权限校验) 合法用户:代表校验通过,将用户存储在request.user中,再进入下一步校验(权限校验) 非法用户:代表校验失败,抛出异常,返回403权限异常结果 认证源码 ...
分类:
其他好文 时间:
2020-07-10 15:04:31
阅读次数:
73
| 关键字 | 描述 | | script | 由 Runner 执行的 Shell 脚本 | | image | 使用的 docker 映像。也可用: `image:name` 和 `image:entrypoint` | | services | 使用的 docker 服务映像。也可用:`ser ...
分类:
其他好文 时间:
2020-07-09 22:36:29
阅读次数:
64
1、使用主机安装查看runner配置 $ cat /etc/gitlab-runner/config.toml [session_server](区段是一个系统 Runner 级别的配置,因此它应该在根级别指定,而不是在每个执行器上,也就是说,它应该在[[runners]]区段之外。会话服务器允许用 ...
分类:
其他好文 时间:
2020-07-09 00:52:34
阅读次数:
56
一、gitlab安装 1. 环境准备 // selinux和 firewall 关闭 $ setenforce 0 $ sed -i "/^SELINUX/s/enforcing/disabled/" /etc/selinux/config $ systemctl stop firewalld $ ...
分类:
其他好文 时间:
2020-07-08 23:05:44
阅读次数:
100
+ sh make_release.sh fatal: could not read Username for 'http://gitlab.yintech.net': No such device or address vim .git/config [core] repositoryformat ...
分类:
其他好文 时间:
2020-07-07 20:17:20
阅读次数:
64
基础环境:系统:centos8.1gitlab版本:13.0.5 在已经成功安装完gitlab后,第一步需要初始化gitlab的管理员账户,具体操作如下: [root@web1 ~]# gitlab-rails console -e production Gitlab: 13.0.5 (2268d0 ...
分类:
其他好文 时间:
2020-07-07 00:00:15
阅读次数:
104
原文地址: https://www.cnblogs.com/heyongboke/p/9968506.html 其中第5步,进入gitlab控制台正确命令是: gitlab-rails console ...
分类:
其他好文 时间:
2020-07-06 16:22:47
阅读次数:
51