首页 > 其他 > 详细

gitlab安装与配置

时间:2017-02-04 19:54:57      阅读:178      评论:0      收藏:0      [点我收藏+]

1. Install and configure the necessary dependencies

sudo yum install curl openssh-server openssh-clients postfix cronie
sudo service postfix start
sudo chkconfig postfix on
sudo lokkit -s http -s ssh

  这里安装了postfix,我自行配置了postfix。

vim /etc/postfix/main.cf
myhostname = sample.test.com  ← 设置系统的主机名

mydomain = test.com  ← 设置域名(我们将让此处设置将成为E-mail地址“@”后面的部分)

myorigin = $mydomain  ← 将发信地址“@”后面的部分设置为域名(非系统主机名)

inet_interfaces = all  ← 接受来自所有网络的请求

mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain  ← 指定发给本地邮件的域名

home_mailbox = Maildir/  ← 指定用户邮箱目录

  然后测试邮件

echo "Mail Content" | mail -s "Mail Subject" xxxx@xxx.com

Note:if you see below warings after you run above command.

send-mail: warning: inet_protocols: IPv6 support is disabled: Address family not supported by protocol
send-mail: warning: inet_protocols: configuring for IPv4 support only
postdrop: warning: inet_protocols: IPv6 support is disabled: Address family not supported by protocol
postdrop: warning: inet_protocols: configuring for IPv4 support only

  that means you don‘t have IPv6 configured in your OS‘s network stack, but your mailer (presumably postfix) is configured to use IPv6. Since there is no IPv6 for your mailer to use, it‘s warning you that it‘s only going to use IPv4.

To disable the waring messsage, Go to /etc/postfix/main.cf and change from:

inet_protocols = all

to:

inet_protocols = ipv4

This will only use ipv4 and the warning message will go away.

You will have to issue a stop and start for postfix to register the change. 

service postfix restart

 

  查看log,确认邮件发送状态

Postfix邮件的log位置是:/var/log/maillog

发送成功的话,会返回250和OK,也可以去自己的邮件客户端查收。

一切OK的话,那Postfix mail service应该就搭建成功了。

 

 

2. Add the GitLab package server and install the package

curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce

这里因为网络院线可能会出现下载失败,我尝试了两次后成功了。

3. Configure and start GitLab

sudo gitlab-ctl reconfigure

 

 

解决Gitlab的Gravatar头像无法显示的问题

vim /etc/gitlab/gitlab.rb
#把下面这一行的注释去掉即可
gitlab_rails[gravatar_plain_url] = http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon

编辑完gitlab.rb文件后要执行sudo gitlab-ctl reconfigure

 

解决邮件中URL指向问题

vim /etc/gitlab/gitlab.rb
#将localhost修改为你对应的iP或者域名
external_url http://101.101.101.80

同上,编辑完gitlab.rb文件后要执行sudo gitlab-ctl reconfigure

 

希望以上笔记能帮助你理解gitlab的官方文档。

 

技术交流群:576269252

--------------------------------------

声明: 原创文章,未经允许,禁止转载!

--------------------------------------

gitlab安装与配置

原文:http://www.cnblogs.com/xxoome/p/6366212.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!