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应该就搭建成功了。
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash sudo yum install gitlab-ce
这里因为网络院线可能会出现下载失败,我尝试了两次后成功了。
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
--------------------------------------
声明: 原创文章,未经允许,禁止转载!
--------------------------------------
原文:http://www.cnblogs.com/xxoome/p/6366212.html