码迷,mamicode.com
首页 >  
搜索关键字:gitlab two-factor authentication 2fa    ( 3882个结果
gitlab安装
- 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 HTTP Basic: Access denied问题解决方法
有时候确实是密码输入错误,登陆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
Python学习————drf各类组件的用法和作用
DRF组件的用法和作用 认证 自定义认证的类 """ from rest_framework.authentication import BaseAuthentication from rest_framework.exceptions import AuthenticationFailed fro ...
分类:编程语言   时间:2020-07-10 19:26:19    阅读次数:52
drf认证权限频率
一 认证Authentication 认证组件:校验用户 - 游客、合法用户、非法用户 游客:代表校验通过,直接进入下一步校验(权限校验) 合法用户:代表校验通过,将用户存储在request.user中,再进入下一步校验(权限校验) 非法用户:代表校验失败,抛出异常,返回403权限异常结果 认证源码 ...
分类:其他好文   时间:2020-07-10 15:04:31    阅读次数:73
gitlab-ci.yml可用关键字描述
| 关键字 | 描述 | | script | 由 Runner 执行的 Shell 脚本 | | image | 使用的 docker 映像。也可用: `image:name` 和 `image:entrypoint` | | services | 使用的 docker 服务映像。也可用:`ser ...
分类:其他好文   时间:2020-07-09 22:36:29    阅读次数:64
gitlab-Runner配置参数详解
1、使用主机安装查看runner配置 $ cat /etc/gitlab-runner/config.toml [session_server](区段是一个系统 Runner 级别的配置,因此它应该在根级别指定,而不是在每个执行器上,也就是说,它应该在[[runners]]区段之外。会话服务器允许用 ...
分类:其他好文   时间:2020-07-09 00:52:34    阅读次数:56
gitlab-ci部署实现持续集成(centos7)
一、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
jenkins编译代码git脚本报错
+ 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
Gitlab初始化管理员账户
基础环境:系统: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
强制找回gitlab管理员密码
原文地址: https://www.cnblogs.com/heyongboke/p/9968506.html 其中第5步,进入gitlab控制台正确命令是: gitlab-rails console ...
分类:其他好文   时间:2020-07-06 16:22:47    阅读次数:51
3882条   上一页 1 ... 18 19 20 21 22 ... 389 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!