Ubuntu 14.04.3安装 gitlab-ce_7.10.4(web服务)

本文涉及的产品
云数据库 Tair(兼容Redis),内存型 2GB
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
云原生数据库 PolarDB MySQL 版,通用型 2核8GB 50GB
简介: Ubuntu 14.04.3安装 gitlab-ce_7.10.4(web服务)

1:系统和软件:


root@ubuntu1:/home/ubuntu1# lsb_release -a
No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 14.04.3 LTS
Release:	14.04
Codename:	trusty

2:下载gitlab安装包:


https://about.gitlab.com/downloads/archives/

注:下载相应的系统对应的版本。

3:安装需要的openssh和mail服务:


sudo apt-get install openssh-server
sudo apt-get install postfix 


注:邮件选择:No configuration!之后自己配置!
4:安装“gitlab-ce_7.10.4~omnibus-1_amd64.deb”,[内含Ruby、Redis,Nginx和PostgreSQL]


sudo dpkg -i gitlab-ce_7.10.4~omnibus-1_amd64.deb


5:配置访问域名端口和邮箱:


sudo vim /etc/gitlab/gitlab.rb

#unicorn端口冲突--配置9090,默认8080!
unicorn['port'] = 9090
#配置gitlab的域名或ip和端口
external_url 'http://192.168.1.110:8080'
#配置邮件
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "eg.smtp.163.com"
gitlab_rails['smtp_port'] =25
gitlab_rails['smtp_user_name'] = "your email"
gitlab_rails['smtp_password'] = "your passwd"
gitlab_rails['smtp_domain'] = "eg.smtp.163.com"
gitlab_rails['smtp_authentication'] = :login
gitlab_rails['smtp_enable_starttls_auto'] = true
#163邮箱,修改gitlab配置的发信人
gitlab_rails['gitlab_email_from'] = "your email"
user["git_user_email"] = "your email"


注:若nginx有权限问题问题则将nginx.conf中启动用户修改成root.


6:GitLab进行重加载gitlab.rb配置启动:


sudo gitlab-ctl reconfigure

7:检测GitLab状态:


sudo gitlab-ctl status
run: logrotate: (pid 16722) 2161s; run: log: (pid 3316) 45362s
run: nginx: (pid 3297) 45364s; run: log: (pid 3296) 45364s
run: postgresql: (pid 3180) 45383s; run: log: (pid 3179) 45383s
run: redis: (pid 3081) 45389s; run: log: (pid 3080) 45389s
run: sidekiq: (pid 3272) 45370s; run: log: (pid 3271) 45370s
run: unicorn: (pid 3244) 45372s; run: log: (pid 3243) 45372s

注:若状态都为down,则使用,启动:


sudo gitlab-ctl start
ok: run: logrotate: (pid 14246) 1s
ok: run: nginx: (pid 14249) 0s
ok: run: postgresql: (pid 14257) 0s
ok: run: redis: (pid 14265) 1s
ok: run: sidekiq: (pid 14269) 0s
ok: run: unicorn: (pid 14273) 1s


8:检查GitLab的日志:


sudo gitlab-ctl tail

9:请求git的web版:http://192.168.1.110:8080/

  由于GitLab包自带了Ruby、Redis,Nginx和PostgreSQL,所以也就不需要考虑太多兼容性的问题。

  直接Web登录GitLab所在的服务器,并使用帐号root,密码5iveL!fe来登录GitLab{此密码为默认}。

  首次登录GitLab会强行让你重置密码,然后就可以进入GitLab了。


10:停止服务


sudo gitlab-ctl stop
ok: down: logrotate: 0s, normally up
ok: down: nginx: 1s, normally up
ok: down: postgresql: 0s, normally up
ok: down: redis: 1s, normally up
ok: down: sidekiq: 0s, normally up
ok: down: unicorn: 1s, normally up

问题1:注:错误码对应解释网易服务器smtp机器要求身份验证帐号和发信帐号必须一致,如果用户在发送邮件时,身份验证帐号和发件人帐号是不同的,因此拒绝发送。修改gitlab.rb,修改发信人和身份验证帐号一致,163发信OK。

问题2:Nginx默认监听80端口,unicorn默认监听8080端口,如使用此两个端口请修改配置!


日志附件:

1:


root@dubbo:/home/install# sudo dpkg -i gitlab-ce_7.10.4~omnibus-1_amd64.deb 
Selecting previously unselected package gitlab-ce.
(Reading database ... 56801 files and directories currently installed.)
Preparing to unpack gitlab-ce_7.10.4~omnibus-1_amd64.deb ...
Unpacking gitlab-ce (7.10.4~omnibus-1) ...
Setting up gitlab-ce (7.10.4~omnibus-1) ...
dpkg-query: package 'gitlab' is not installed
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
gitlab: Thank you for installing GitLab!
gitlab: Configure and start GitLab by running the following command:
gitlab: 
gitlab: sudo gitlab-ctl reconfigure
gitlab: 
gitlab: GitLab should be reachable at http://dubbo
gitlab: Otherwise configure GitLab for your system by editing /etc/gitlab/gitlab.rb file
gitlab: And running reconfigure again.
gitlab: 
gitlab: For a comprehensive list of configuration options please see the Omnibus GitLab readme
gitlab: https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md
gitlab: 
It looks like GitLab has not been installed yet; skipping the upgrade script.

2:


root@dubbo:/home/dubbo# netstat -tunlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:32000         0.0.0.0:*               LISTEN      2334/java       
tcp        0      0 127.0.0.1:9090          0.0.0.0:*               LISTEN      14288/config.ru 
tcp        0      0 0.0.0.0:8500            0.0.0.0:*               LISTEN      14249/nginx          
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      958/sshd        
tcp        0      0 127.0.0.1:48350         0.0.0.0:*               LISTEN      14265/redis-server 
tcp6       0      0 :::22                   :::*                    LISTEN      958/sshd 

3:


root@dubbo:/home/dubbo# ps -ef | grep gitlab
root       894     1  0 Jul11 ?        00:00:15 runsvdir -P /opt/gitlab/service log: ...........................................................................................................................................................................................................................................................................................................................................................................................................
root       906   902  0 Jul11 ?        00:00:00 svlogd -tt /var/log/gitlab/sidekiq
root       908   901  0 Jul11 ?        00:00:00 svlogd -tt /var/log/gitlab/nginx
root       910   899  0 Jul11 ?        00:00:00 svlogd -tt /var/log/gitlab/unicorn
root       911   898  0 Jul11 ?        00:00:02 svlogd -tt /var/log/gitlab/redis
root       915   903  0 Jul11 ?        00:00:00 svlogd -tt /var/log/gitlab/logrotate
root       917   900  0 Jul11 ?        00:00:00 svlogd -tt /var/log/gitlab/postgresql
root     14249   901  0 18:27 ?        00:00:00 nginx: master process /opt/gitlab/embedded/sbin/nginx -p /var/opt/gitlab/nginx
gitlab-+ 14250 14249  0 18:27 ?        00:00:00 nginx: worker process                                   
gitlab-+ 14251 14249  0 18:27 ?        00:00:00 nginx: worker process                                   
gitlab-+ 14252 14249  0 18:27 ?        00:00:00 nginx: worker process                                   
gitlab-+ 14253 14249  0 18:27 ?        00:00:00 nginx: worker process                                   
gitlab-+ 14254 14249  0 18:27 ?        00:00:00 nginx: worker process                                   
gitlab-+ 14255 14249  0 18:27 ?        00:00:00 nginx: worker process                                   
gitlab-+ 14257   900  0 18:27 ?        00:00:00 /opt/gitlab/embedded/bin/postgres -D /var/opt/gitlab/postgresql/data
gitlab-+ 14259 14257  0 18:27 ?        00:00:00 postgres: checkpointer process                                      
gitlab-+ 14260 14257  0 18:27 ?        00:00:00 postgres: writer process                                            
gitlab-+ 14261 14257  0 18:27 ?        00:00:00 postgres: wal writer process                                        
gitlab-+ 14262 14257  0 18:27 ?        00:00:00 postgres: autovacuum launcher process                               
gitlab-+ 14263 14257  0 18:27 ?        00:00:00 postgres: stats collector process                                   
gitlab-+ 14265   898  0 18:27 ?        00:00:01 /opt/gitlab/embedded/bin/redis-server 127.0.0.1:0                     
git      14269   902  0 18:27 ?        00:00:12 sidekiq 3.3.0 gitlab-rails [0 of 25 busy]                                                                                                                                                                                                     
git      14288     1  0 18:27 ?        00:00:08 unicorn master -D -E production -c /var/opt/gitlab/gitlab-rails/etc/unicorn.rb /opt/gitlab/embedded/service/gitlab-rails/config.ru                                              
git      14349 14288  0 18:27 ?        00:00:00 unicorn worker[0] -D -E production -c /var/opt/gitlab/gitlab-rails/etc/unicorn.rb /opt/gitlab/embedded/service/gitlab-rails/config.ru                                           
git      14352 14288  0 18:27 ?        00:00:00 unicorn worker[1] -D -E production -c /var/opt/gitlab/gitlab-rails/etc/unicorn.rb /opt/gitlab/embedded/service/gitlab-rails/config.ru                                           
git      14355 14288  0 18:27 ?        00:00:00 unicorn worker[2] -D -E production -c /var/opt/gitlab/gitlab-rails/etc/unicorn.rb /opt/gitlab/embedded/service/gitlab-rails/config.ru                                           
git      14358 14288  0 18:27 ?        00:00:00 unicorn worker[3] -D -E production -c /var/opt/gitlab/gitlab-rails/etc/unicorn.rb /opt/gitlab/embedded/service/gitlab-rails/config.ru                                           
git      14361 14288  0 18:27 ?        00:00:00 unicorn worker[4] -D -E production -c /var/opt/gitlab/gitlab-rails/etc/unicorn.rb /opt/gitlab/embedded/service/gitlab-rails/config.ru                                           
git      14364 14288  0 18:27 ?        00:00:00 unicorn worker[5] -D -E production -c /var/opt/gitlab/gitlab-rails/etc/unicorn.rb /opt/gitlab/embedded/service/gitlab-rails/config.ru                                           
git      14367 14288  0 18:27 ?        00:00:00 unicorn worker[6] -D -E production -c /var/opt/gitlab/gitlab-rails/etc/unicorn.rb /opt/gitlab/embedded/service/gitlab-rails/config.ru                                           
gitlab-+ 14377 14257  0 18:27 ?        00:00:00 postgres: gitlab gitlabhq_production [local] idle                   
gitlab-+ 14382 14257  0 18:27 ?        00:00:00 postgres: gitlab gitlabhq_production [local] idle                   
gitlab-+ 14385 14257  0 18:27 ?        00:00:00 postgres: gitlab gitlabhq_production [local] idle                   
gitlab-+ 14554 14257  0 18:28 ?        00:00:00 postgres: gitlab gitlabhq_production [local] idle                   
gitlab-+ 14753 14257  0 18:30 ?        00:00:00 postgres: gitlab gitlabhq_production [local] idle                   
root     16860 11942  0 19:05 pts/0    00:00:00 grep --color=auto gitlab





相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore     ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库 ECS 实例和一台目标数据库 RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
目录
相关文章
|
6天前
|
监控 Linux PHP
【02】客户端服务端C语言-go语言-web端PHP语言整合内容发布-优雅草网络设备监控系统-2月12日优雅草简化Centos stream8安装zabbix7教程-本搭建教程非docker搭建教程-优雅草solution
【02】客户端服务端C语言-go语言-web端PHP语言整合内容发布-优雅草网络设备监控系统-2月12日优雅草简化Centos stream8安装zabbix7教程-本搭建教程非docker搭建教程-优雅草solution
54 20
|
6天前
|
Ubuntu API 网络虚拟化
ubuntu22 编译安装docker,和docker容器方式安装 deepseek
本脚本适用于Ubuntu 22.04,主要功能包括编译安装Docker和安装DeepSeek模型。首先通过Apt源配置安装Docker,确保网络稳定(建议使用VPN)。接着下载并配置Docker二进制文件,创建Docker用户组并设置守护进程。随后拉取Debian 12镜像,安装系统必备工具,配置Ollama模型管理器,并最终部署和运行DeepSeek模型,提供API接口进行交互测试。
130 15
|
8天前
|
网络协议 Java Shell
java spring 项目若依框架启动失败,启动不了服务提示端口8080占用escription: Web server failed to start. Port 8080 was already in use. Action: Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port-优雅草卓伊凡解决方案
java spring 项目若依框架启动失败,启动不了服务提示端口8080占用escription: Web server failed to start. Port 8080 was already in use. Action: Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port-优雅草卓伊凡解决方案
40 7
|
13天前
|
数据采集 Web App开发 API
FastAPI与Selenium:打造高效的Web数据抓取服务 —— 采集Pixabay中的图片及相关信息
本文介绍了如何使用FastAPI和Selenium搭建RESTful接口,访问免版权图片网站Pixabay并采集图片及其描述信息。通过配置代理IP、User-Agent和Cookie,提高爬虫的稳定性和防封禁能力。环境依赖包括FastAPI、Uvicorn和Selenium等库。代码示例展示了完整的实现过程,涵盖代理设置、浏览器模拟及数据提取,并提供了详细的中文注释。适用于需要高效、稳定的Web数据抓取服务的开发者。
53 15
FastAPI与Selenium:打造高效的Web数据抓取服务 —— 采集Pixabay中的图片及相关信息
|
27天前
|
弹性计算 Ubuntu Java
OS-Copilot-ubuntu镜像版本的具体测试使用(安装方式有单独注明)
作为一名个人开发者,我主要负责云资源的运维和管理。在使用OS Copilot的过程中,我遇到了一些配置问题,特别是在ECS实例中设置AccessKey时,但最终成功解决了。通过使用OS Copilot的-t/-f/管道功能,我大大提升了效率,减少了命令编写的工作量,特别是在搭建Java运行环境时效果显著。此外,| 功能帮助我快速理解文档,整体体验非常流畅,推荐给其他开发者使用。
39 6
|
2月前
|
监控 关系型数据库 MySQL
Ubuntu24.04安装Librenms
此指南介绍了在Linux系统上安装和配置LibreNMS网络监控系统的步骤。主要内容包括:安装所需软件包、创建用户、克隆LibreNMS仓库、设置文件权限、安装PHP依赖、配置时区、设置MariaDB数据库、调整PHP-FPM与Nginx配置、配置SNMP及防火墙、启用命令补全、设置Cron任务和日志配置,最后通过网页完成安装。整个过程确保LibreNMS能稳定运行并提供有效的网络监控功能。
|
2月前
|
JSON Ubuntu 开发者
ubuntu 22安装lua环境&&编译lua cjson模块
通过上述步骤,可以在 Ubuntu 22.04 系统上成功安装 Lua 环境,并使用 LuaRocks 或手动编译的方式安装 lua-cjson 模块。本文详细介绍了每一步的命令和操作,确保每一步都能顺利完成,适合需要在 Ubuntu 系统上配置 Lua 开发环境的开发者参考和使用。
190 13
|
2月前
|
Ubuntu Linux Docker
Ubuntu22.04上Docker的安装
通过以上详细的安装步骤和命令,您可以在Ubuntu 22.04系统上顺利安装
1300 12
|
3月前
|
Ubuntu
ubuntu和debian 的安装包dpkg管理命令对安装包进行安装,查询,卸载
Ubuntu dpkg 软件包管理命令概览:安装、卸载、查看和配置软件包。包括解决依赖、强制卸载、列出及过滤已安装包、查看包详情等操作。
130 10
|
3月前
|
Ubuntu API 开发工具
PSOPT在Ubuntu22.04下的安装
通过上述步骤,可以在Ubuntu 22.04下成功安装并配置PSOPT。PSOPT是一个功能强大的工具,适用于解决各种最优控制问题。确保在安装前满足系统要求,并仔细按照步骤操作,可以避免大多数常见问题。通过MATLAB与PSOPT的结合,您可以更高效地处理复杂的控制问题,并获得准确的解决方案。
51 5

热门文章

最新文章