真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Gitlab(Docker)中批量添加用戶及郵件配置

gitlab頁面可以添加用戶,但是無法批量添加??梢允褂胊pi的方式批量添加用戶:

大埔ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!

1、創(chuàng)建token

在User Setting--Access Tokens中添加token:
Gitlab(Docker)中批量添加用戶及郵件配置

復(fù)制創(chuàng)建好的token

2、配置腳本及用戶信息文件

# vim userinfo.txt

name username password user_email
例如:
zhangshan zhangshan zhangshan123 zhangshan@demo.com

# vim user_add.sh

#!/bin/bash
userinfo="userinfo.txt"
while read line 
do
name=`echo $line|awk '{print $1}'`
username=`echo $line|awk '{print $2}'`
userpass=`echo $line|awk '{print $3}'`
mail=`echo $line|awk '{print $4}'`
curl -d "can_create_group=false&password=$userpass&email=$mail&username=$username&name=$name&private_token=qxxgPTxxxe1qH8J1" "http://gitlab.xxx.com/api/v4/users"
done<$userinfo

chmod +x user_add.sh

3、運行腳本

sh user_add.sh

4、查看gitlab,用戶已創(chuàng)建,但是需要郵件confirm

5、配置gitlab郵件

由于gitlab的容器鏡像未安裝sendmail,所以需要安裝后才能發(fā)送郵件
Dockerfile如下:

FROM gitlab/gitalab-ce
RUN apt-get update & apt-get install postfix

需要修改gitlab配置:

#vim /etc/gitlab/gitlab.rb
#騰訊企業(yè)郵箱
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "smtp.exmail.qq.com"
gitlab_rails['smtp_port'] = 465
gitlab_rails['smtp_user_name'] = "monitor_robot@xxx.com"
gitlab_rails['smtp_password'] = "xxxxxx"
gitlab_rails['smtp_authentication'] = "login"
gitlab_rails['smtp_enable_starttls_auto'] = true
gitlab_rails['smtp_tls'] = false
gitlab_rails['gitlab_email_from'] = 'monitor_robot@xxxx.com'
gitlab_rails['smtp_domain'] = 'exmail.qq.com'

6、測試發(fā)送郵件

gitlab-rails console

Notify.test_email('xxxx@xxx.com','標(biāo)題,'正文').deliver_now

這里出現(xiàn)報錯:

postdrop: warning: mail_queue_enter: create file maildrop/xxxx.xxxx: Permission denied
postdrop: warning: mail_queue_enter: create file maildrop/yyyy.yyyy: Permission denied

解決方法:

# chown postfix.postdrop /var/spool/postfix/public -R
# chown postfix.postdrop /var/spool/postfix/maildrop -R
# chmod 777 -R /var/spool/postfix

郵箱配置能成功發(fā)送郵件后,新建用戶,用戶收到的郵箱打開gitlab服務(wù)器域名是容器主機名稱,需做修改

vim /var/opt/gitlab/gitlab-rails/etc/gitlab.yml

host: xxxx
port: 80
https: false

重啟

gitlab-ctl reconfigure

文章標(biāo)題:Gitlab(Docker)中批量添加用戶及郵件配置
當(dāng)前URL:http://weahome.cn/article/gopesh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部