当前位置: 首页 > news >正文

长宁深圳网站建设公司建材公司网站建设方案

长宁深圳网站建设公司,建材公司网站建设方案,中国对外贸易网,沈阳妇科哪个医院看的比较好Gitlab7.14 中文版安装教程 注#xff1a; 本教程由羞涩梦整理同步发布#xff0c;本人技术分享站点#xff1a;blog.hukanfa.com转发本文请备注原文链接#xff0c;本文内容整理日期#xff1a;2024-01-28csdn 博客名称#xff1a;五维空间-影子#xff0c;欢迎关注 …Gitlab7.14 中文版安装教程 注 本教程由羞涩梦整理同步发布本人技术分享站点blog.hukanfa.com转发本文请备注原文链接本文内容整理日期2024-01-28csdn 博客名称五维空间-影子欢迎关注 1 简要说明 说明 为何写本文 1、本人所在公司目前在用的gilab版本为7.14.3鉴于版本比较老打算迁移到新版。 2、旧版乃前人所部署部署方式也比较传统通过手动一步步搭环境和组件还是比较繁琐 3、本人一般用docker方式部署gitlab借此机会通过手动方式实现下gilab部署也是有必要的gitlab简介 1、Ruby on Rails 开发的开源应用程序实现一个自托管的Git项目仓库可通过Web界面进行访问公开的或者私人项目 2、与Github类似的功能能够浏览源代码管理缺陷和注释 3、可以管理团队对仓库的访问它非常易于浏览提交过的版本并提供一个文件历史库本次部署gitlab所用到的环境和依赖版本说明 # 以下依赖版本可根据需求选择可以使用较新版本代替* 系统版本Centos 7 * gitlab7-14中文版|英文版 * ruby2.2.0 * mysql5.7 * nginx1.8.0 * git: 2.8.2 * redisyum 版本特别说明由于旧版距今很多年重新部署还是有很多坑。也许你按照文档走还会碰到新的问题希望能克服 2 前期部署 2.1 基本配置 操作如下 关闭防火墙相关 # 永久 sed -i s/^SELINUXenforcing/SELINUXdisabled/g /etc/sysconfig/selinux # 临时 setenforce 0systemctl stop firewalld systemctl disable firewalld安装epel源 # 方式一yum -y install epel* # 方式二推荐wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpmrpm -ivh epel-release-latest-7.noarch.rpm# 导入keyrpm --import https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7安装puias源 # puias 是基于RH的一个扩展distribution和mirror目前它由普林斯顿高能所维护。# /etc/yum.repos.d/puias-computational.repo [PUIAS_computational] namePUIAS computational Base $releasever - $basearch mirrorlisthttp://puias.math.ias.edu/data/puias/computational/$releasever/$basearch/mirrorlist #baseurlhttp://puias.math.ias.edu/data/puias/computational/$releasever/$basearch gpgcheck1 gpgkeyfile:///etc/pki/rpm-gpg/RPM-GPG-KEY-puias# 导入key下面二选一 rpm --import http://puias.princeton.edu/data/puias/7/x86_64/os/RPM-GPG-KEY-puias # rpm --import http://springdale.math.ias.edu/data/puias/7/x86_64/os/RPM-GPG-KEY-puias重新建立缓存 # 建立缓存 yum clean all yum makecache创建git用户 # 请确保用户家目录有足够磁盘空间因为后续仓库默认的数据都在其家目录下。也可修改到其他目录 # 默认/home/git如需指定家目录使用 -d 参数 useradd git # 设置密码 fZ2ICa7w passwd git # 配置sudo权限 echo git ALL(ALL) NOPASSWD: ALL /etc/sudoersecho export git_SSL_NO_VERIFY1 /home/git/.bash_profile source /home/git/.bash_profile# 不添加变量的话使用https链接会报如下错误不过本文没有使用https fatal: unable to access https://github.com/gitlabhq/grit.git/: Peer certificate cannot be authenticated with known CA certificates2.2 安装Development Tools 操作如下 不要 用yum安装ruby、git、nginx 和 mysqlredis可以使用yum安装 yum -y install readline readline-devel ncurses-devel gdbm-devel glibc-devel tcl-devel expat-devel db4-devel byacc sqlite-devel libyaml libyaml-devel libffi libffi-devel libxml2 libxml2-devel libxslt libxslt-devel libicu libicu-devel system-config-firewall-tui python-devel redis wget crontabs logwatch logrotate perl-Time-HiRes gettext gettext-devel openssl-devel zlib-devel gcc gcc-c make autoconf tk-devel python-pip patch pcre-devel curl curl-devel sudo yum-plugin-fastestmirror cmake perl-CPAN nodejs automake libxml* libmcrypt* libtool-ltdl-devel* yum-utils卸载已经安装的包 yum -y remove ruby git nginx mysql mysql-server安装Development Tools开发组包 yum -y groupinstall Development Tools2.3 配置时间同步 操作如下 更新localtime文件 rm -f /etc/localtime ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime安装 # yum 方式 yum -y install ntp # 同步时间 ntpdate pool.ntp.org# 配置定时任务同步时间也可以通过 crontba -e 设置 echo */20 * * * * /usr/sbin/ntpdate pool.ntp.org /dev/null 21 /var/spool/cron/root# 查看 $ crontab -l */20 * * * * /usr/sbin/ntpdate pool.ntp.org /dev/null 212.4 安装git 操作如下 下载安装包 # 不检查证书下载 wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.8.2.tar.gz --no-check-certificate# 编译安装 tar zxvf git-2.8.2.tar.gz cd git-2.8.2 ./configure --prefix/usr/local/git make make install# 确认git版本如有其他旧版本是还没卸载干净 $ git --version git version 1.8.3.1 $ yum -y remove git# 全局环境变量 echo export PATH/usr/local/git/bin:$PATH /etc/profile # 刷新 source /etc/profile# 验证 git --version2.5 安装nginx 操作如下 下载源码包并安装 # 下载 wget http://nginx.org/download/nginx-1.8.0.tar.gz# 解压 tar -zxvf nginx-1.8.0.tar.gz cd nginx-1.8.0# 编译安装 ./configure --prefix/usr/local/nginx --userhukanfa --grouphukanfa --with-http_ssl_module --with-http_stub_status_module --with-pcremake make install3 安装redis 操作如下 前面已经使用yum安装过了下面主要是配置使用socket方式连接redis( redis 2.4.0) # 备份之前配置,修改端口号,添加socket配置,添加socket权限,启动服务 cp -ar /etc/redis.conf /etc/redis.conf.bak# 修改以下redis配置 /etc/redis.conf bind 0.0.0.0 port 6379 unixsocket /var/run/redis/redis.sock unixsocketperm 0775# 启动服务 systemctl start redis systemctl status redis# 配置开机自启 systemctl enable redis # chkconfig redis on将git用户添加到redis组 $ gpasswd -a git redis Adding user git to group redis $ id git uid1001(git) gid1001(git) groups1001(git),993(redis)4 安装mysql 4.1 下载安装包 操作如下 添加mysql用户 groupadd mysql useradd -g mysql -s /sbin/nologin mysql获取安装包 # 官网源码包下载地址选择对应版本下载即可。下载跳转页面选择左下角不登陆下载见图 https://dev.mysql.com/downloads/mysql/ # 具体下载链接下载带boots的后续mysql版本都需要boots wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-boost-5.7.44.tar.gz # 百度网盘下载链接 https://pan.baidu.com/s/1wrlTyaigxvTKTNf6H8F4KQ?pwdfniy 4.2 编译安装 操作如下 准备所需的文件路径 # 安装目录及pid文件所在目录\数据目录、日志目录 mkdir -p /usr/local/mysql57/{data,logs} # socket 文件路径 /tmp安装msyql-boost # 解压 tar -zxvf mysql-boost-5.7.44.tar.gz # 进入到解压目录下 cd mysql-5.7.44编译安装 # 注意 -DWITH_BOOSTboost 只是相对于cmake执行的当前路径若是其他路径请写全路径 # 预编译 cmake . \ -DCMAKE_INSTALL_PREFIX/usr/local/mysql57 \ -DDOWNLOAD_BOOST1 \ -DWITH_BOOSTboost \ -DWITH_INNOBASE_STORAGE_ENGINE1 \ -DMYSQL_TCP_PORT3306 \ -DWITH_EXTRA_CHARSETSall \ -DWITH_READLINE1 \ -DENABLED_LOCAL_INFILE1 \ -DDEFAULT_CHARSETutf8mb4 \ -DDEFAULT_COLLATIONutf8mb4_general_ci# 正式编译(这个过程需要等待十几分钟)安装过程无异常退出则成功(~ ~) make make install安装成功后路径下会有以下目录 $ pwd /usr/local/mysql57 $ ls bin data docs include lib LICENSE logs man mysql-test README README-test share support-files4.3 调整配置 操作如下 目录授权 # 更改安装目录所属为mysql用户 chown -R mysql:mysql /usr/local/mysql57编辑主配置文件my.cnf # 备份原配置 cp -ar /etc/my.cnf /etc/my.cnf.bak # 清空配置文件/etc/my.cnf # vim /etc/my.cnf [client] port 3306 socket /tmp/mysql.sock default-character-set utf8mb4[mysqld] port 3306 user mysql pid-file /usr/local/mysql57/mysql.pid socket /tmp/mysql.sock basedir /usr/local/mysql57 datadir /usr/local/mysql57/datalog_error /usr/local/mysql57/logs/error.log slow_query_log_file /usr/local/mysql57/logs/slow.log[mysqldump] quick max_allowed_packet 16M[myisamchk] key_buffer_size 256M sort_buffer_size 8M read_buffer 4M write_buffer 4M初始化 # cd /usr/local/mysql57 ./bin/mysqld --initialize-insecure --usermysql --basedir/usr/local/mysql57 --datadir/usr/local/mysql57/data # 执行完成后data目录下会生产初始数据配置环境变量 # 全局环境变量 echo export PATH/usr/local/mysql57/bin:$PATH /etc/profile # 刷新 source /etc/profile初始化特别说明 –initialize会生成一个随机密码(~/.mysql_secret)--initialize-insecure不会生成密码后续再另行设定 4.4 启动项设置 操作如下 使用 systemctl 管理 # vim /usr/lib/systemd/system/mysql.service [Unit] DescriptionThe Mysql Process Manager Aftersyslog.target network.target remote-fs.target nss-lookup.target[Service] Typeforking PIDFile/usr/local/mysql57/mysql.pid ExecStart/usr/local/mysql57/support-files/mysql.server start ExecReload/bin/kill -s HUP $MAINPID ExecStop/bin/kill -s QUIT $MAINPID PrivateTmpfalse[Install] WantedBymulti-user.target启动服务 # 重载配置 systemctl daemon-reload # 启动服务 systemctl start mysql # 查看状态 [roothukanfa support-files]# systemctl status mysql ● mysql.service - The Mysql Process ManagerLoaded: loaded (/usr/lib/systemd/system/mysql.service; disabled; vendor preset: disabled)Active: active (running) # 开机自启动 systemctl enable mysql创建数据库及gitlab用户 # 登录数据库无密码。后续可自行设置 mysql -u root # 创建数据库 CREATE DATABASE IF NOT EXISTS gitlabhq_production; # 创建用户 GRANT ALL PRIVILEGES ON gitlabhq_production.* TO git% IDENTIFIED BY cX4ncpjZMU; # 刷新权限 FLUSH PRIVILEGES;测试连接 # 输入密码后登录 mysql -ugit -p # 查看库 mysql show databases; --------------------- | Database | --------------------- | information_schema | | gitlabhq_production | --------------------- 2 rows in set (0.00 sec)5 安装gitlab 注此篇开始一般使用git用户环境操作 5.1 安装ruby 操作如下 下载ruby源码包 # 查看ruby版本 https://www.ruby-lang.org/zh_cn/downloads/releases/# 下载 wget http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.0.tar.gz 编译安装ruby # 解压 tar -zxvf tar -zxvf ruby-2.2.0.tar.gz# 编译安装 cd ruby-2.2.0 ./configure --prefix/usr/local/ruby --disable-install-rdoc make clean make make install# 全局环境变量 echo export PATH/usr/local/ruby/bin:$PATH /etc/profile # 刷新 source /etc/profile# 验证 gem --version #### 2.4.5 ruby --version #### ruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-linux]chown -R git:git /usr/local/ruby5.2 安装bundler 操作如下 添加国内源 # gem source --remove|-r --add|-a # 删除默认源 # 新增国内源 gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/ # gem source -a http://mirrors.aliyun.com/rubygems/ # 更新缓存 gem sources -u # 查看在用的源 gem sources -l安装bundler # ruby2.5.0 版本只支持 bundler2.0.0以下版本之下最新版本为1.17.3 gem install bundler -v 1.17.3 # 安装完成后bundle/bundler命令默认在ruby安装目录bin下如/usr/local/ruby/bin/# bundler版本查看链接 https://github.com/rubygems/bundler/tags如果遇到 SSL 证书问题请修改 ~/.gemrc 文件增加 ssl_verify_mode: 0 配置以便于 RubyGems 可以忽略 SSL 证书错误。 # vim ~/.gemrc:sources: https://gems.ruby-china.com :ssl_verify_mode: 0 5.3 安装gitlab-shell 操作如下 切换到git用户 su - git # 配置gem安装忽略证书认证 vim ~/.gemrc --- :backtrace: false :bulk_threshold: 1000 :sources: - https://gems.ruby-china.com/ :ssl_verify_mode: 0 :update_sources: true :verbose: true下载仓库代码 git clone https://gitlab.com/gitlab-org/gitlab-shell.git -b v2.7.2 cd gitlab-shell/ cp config.yml.example config.yml vi config.yml修改配置 # 配置自己的gitlab域名和端口没有就用默认 gitlab_url: http://localhost:8080 # 下面修改的内容为git指定家目录后的操作如果是默认的/home/git则不需要修改后面不再提示 ################################## repos_path: /home/git/repositories auth_file: /home/git/.ssh/authorized_keys ##################################配置gitlab-shell使用reidis-socket redis: bin: /usr/bin/redis-cli # host: 127.0.0.1 # port: 6379 # pass: redispass # Allows you to specify the password for Redis database: 0 socket: /var/run/redis/redis.sock namespace: resque:gitlab安装 ./bin/install# cd ~5.4 拉取代码 操作如下 方式一 # 从官网下载英文版本。低版本gitlab估计是不能选择语言最新版本是可以在设置界面选择语言 git clone https://gitlab.com/gitlab-org/gitlab-ce.git -b 7-14-stable gitlab方式二 # 中文版 7.14 git clone https://gitee.com/hukanfa/gitlab.git -b 7-14-zh gitlab5.5 修改主配置 操作如下 复制配置文件 # 切换到git用户进入到gitlab根目录 cp config/gitlab.yml.example config/gitlab.yml修改gitlab.yml配置文件默认用了/home/git路径的基本不用改 vim config/gitlab.yml ################ :%s/home/data/g ################ ## gitLab settings gitlab: ## 设置域名或用默认 host: localhost port: 8080 https: false # 如果准备使用smtp方式发送邮件这里可以修改为发送邮件的账号如果使用系统sendmail就不用修改 email_from: noreplycass.com email_display_name: GitLab email_reply_to: noreplycass.com # 允许使用用户名或邮箱账号登录 allow_username_or_email_login: true # 根据需要设定 path: /home/git/gitlab-satellites/gitlab_shell:path: /home/git/gitlab-shell/# REPOS_PATH MUST NOT BE A SYMLINK!!! repos_path: /home/git/repositories/ hooks_path: /home/git/gitlab-shell/hooks/ ################################## # ssh端口根据实际修改 ssh_port: 22 # 下面是编译安装git后的路径默认文件最大大小和超时时间 git:bin_path: /usr/local/bin/gitmax_size: 524288000 # 5.megabytestimeout: 300修改unicorn.rb默认**/home/git**目录的不用改 cp config/unicorn.rb.example config/unicorn.rb vim config/unicorn.rb ################################### working_directory /home/git/gitlab # available in 0.94.0 listen /home/git/gitlab/tmp/sockets/gitlab.socket, :backlog 64 pid /home/git/gitlab/tmp/pids/unicorn.pid stderr_path /home/git/gitlab/log/unicorn.stderr.log stdout_path /home/git/gitlab/log/unicorn.stdout.log# 默认8080端口如果被占用自修改 listen 127.0.0.1:8080, :tcp_nopush true timeout 300创建目录 mkdir /home/git/gitlab-satellites关于rack_attack.rb # rack-attack 可以根据ip、域名等设置黑名单、设置访问频率。请按需配置这里暂不配置 cp config/initializers/rack_attack.rb.example config/initializers/rack_attack.rb # 关于这块使用附上参考博文 https://blog.csdn.net/qq_41037744/article/details/1345191795.6 修改数据库配置 操作如下 修改连接redis配置 cp config/resque.yml.example config/resque.yml # 修改配置 vim config/resque.yml ################################### development: redis://localhost:6379 test: redis://localhost:6379 production: unix:/var/run/redis/redis.sock修改连接数据mysql库配置 cp config/database.yml.mysql config/database.yml vim config/database.yml ############################ production:adapter: mysql2encoding: utf8mb4collation: utf8mb4_general_cireconnect: falsedatabase: gitlabhq_productionpool: 10username: root # 这里之前用git用户但发现有下面报错提示懒得排查直接换成root之前没设置过密码#password: cX4ncpjZMUv#host: localhost# socket: /tmp/mysql.sock# 用git用户报错 Access denied for user gitlocalhost (using password: YES)Please provide the root password for your mysql installation5.7 安装gems 操作如下 安装 cd ~/gitlab sudo gem install charlock_holmes --version 0.6.9 ##### Fetching: charlock_holmes-0.6.9.gem (100%) ... Installing ri documentation for charlock_holmes-0.6.9 Done installing documentation for charlock_holmes after 6 seconds 1 gem installed修改源为国内 # 1 vim Gemfile source https://rubygems.org 改为 source https://gems.ruby-china.com # source http://mirrors.aliyun.com/rubygems # 2 vim Gemfile.lock source https://gems.ruby-china.com修改文件 # 【1】第一波更改 ### vim Gemfile.lock 行首添加 GITremote: https://gitee.com/hukanfa/gemnasium-gitlab-servicerevision: 4f2f3cb0003c8f5938286cb7161ff93d2804f934specs:gemnasium-gitlab-service (0.2.6)rugged (~ 0.21) # 删掉 260 gemnasium-gitlab-service (0.2.6) 261 rugged (~ 0.21) # 改为感叹号 789 gemnasium-gitlab-service!### vim Gemfile # 增加 gem gemnasium-gitlab-service, git: https://gitee.com/hukanfa/gemnasium-gitlab-service # 删掉 157 gem gemnasium-gitlab-service, ~ 0.2# 两个文件修改mysql2的版本为 0.3.21 # 之后遇到一些依赖报错直接在上面两个文件直接删掉就行版本过于老旧一些依赖在源中已经找不到了或者新版不支持了执行安装 # 有些版本低的依赖可打开源站所属对应依赖有哪些版本重新指定版本 bundle install --deployment --without development test postgres puma aws wiki gem install rdoc-data; rdoc-data --install5.8 数据初始化及配置检查 操作如下 初始化数据库 # bundle exec rake gitlab:setup RAILS_ENVproduction --verbose ... Do you want to continue (yes/no)? yes #最后初始化成功后会获得账号和密码Seed from /home/git/gitlab/db/fixtures/production/001_admin.rbAdministrator account created:login.........root password......5iveL!fe- 检查gitLab及其环境的配置是否正确shellcd ~/gitlabbundle exec rake gitlab:env:info RAILS_ENVproduction##########[githukanfa gitlab]$ bundle exec rake gitlab:env:info RAILS_ENVproductionSystem informationSystem:Current User: gitUsing RVM: noRuby Version: 2.2.0p0Gem Version: 2.4.5Bundler Version:1.17.3Rake Version: 10.4.2Sidekiq Version:3.3.0GitLab informationVersion: 7.14.3Revision: 12bbae4Directory: /home/git/gitlabDB Adapter: mysql2URL: http://localhost:8080HTTP Clone URL: http://localhost:8080/some-group/some-project.gitSSH Clone URL: gitlocalhost:some-group/some-project.gitUsing LDAP: noUsing Omniauth: noGitLab ShellVersion: 2.7.2Repositories: /home/git/repositories/Hooks: /home/git/gitlab-shell/hooks/Git: /usr/bin/git# bundle exec rake sidekiq:start RAILS_ENVproduction# bundle exec rake gitlab:check RAILS_ENVproduction# 这里都走一遍chmod -R ugrwX,o-rwx /home/git/repositories/chmod -R ug-s /home/git/repositories/find /home/git/repositories/ -type d -print0 | sudo xargs -0 chmod gssudo chmod urwx,grx,o-rwx /home/git/gitlab-satellites5.9 配置nginx 操作如下 创建启动脚本 # root执行 cp lib/support/init.d/gitlab /etc/init.d/gitlab cp lib/support/init.d/gitlab.default.example /etc/default/gitlab cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab chmod x /etc/init.d/gitlab# 配置开机启动 chkconfig --add gitlab chkconfig gitlab on##### 下面这里如果安装目录不是/home/git/gitlab就需要改 ######## # vim /etc/default/gitlab # app_root/data/$app_user/gitlab#无需下载 ##sudo wget https://raw.github.com/gitlabhq/gitlab-recipes/master/init/sysvinit/centos/gitlab-unicorn -P /etc/init.d/ ##sudo mv /etc/init.d/gitlab-unicorn /etc/init.d/gitlab ##########################- 调整配置shell# 复制配置文件cd ~/gitlabsudo mkdir /usr/local/nginx/conf/conf.d/ -psudo cp lib/support/nginx/gitlab /usr/local/nginx/conf/conf.d/cd /usr/local/nginx/conf/conf.d/sudo chown -R git:git .cp gitlab gitlab.confvim /usr/local/nginx/conf/nginx.conf# 修改nginx主配置user git;worker_processes 2;events {worker_connections 1024;}http {include mime.types;# 这句话加入include conf.d/*.conf;......# gitlab虚拟主机的配置vim /usr/local/nginx/conf/conf.d/gitlab.confserver {listen 0.0.0.0:8080 default_server;#listen [::]:80 default_server;server_name gitlab.hkf56.com;# 修改日志路径access_log /usr/local/nginx/logs/gitlab_access.log;error_log /usr/local/nginx/logs/gitlab_error.log;location ~ ^/(assets)/ {root /home/git/gitlab/public;#gzip_static on;access_log /var/log/nginx/gitlab_access.log;error_log /var/log/nginx/gitlab_error.log;修改后得gitlab.conf内容如下 upstream gitlab {server unix:/home/git/gitlab/tmp/sockets/gitlab.socket fail_timeout0; }server {listen 80;server_name gitlab.hkf56.com;server_tokens off;root /home/git/gitlab/public;client_max_body_size 20m;access_log logs/gitlab_access.log;error_log logs/gitlab_error.log;location / {try_files $uri $uri/index.html $uri.html gitlab;}location /uploads/ {proxy_read_timeout 300;proxy_connect_timeout 300;proxy_redirect off;proxy_set_header Host $http_host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_set_header X-Forwarded-Proto $scheme;proxy_set_header X-Frame-Options SAMEORIGIN;proxy_pass http://gitlab;}location gitlab {proxy_read_timeout 300;proxy_connect_timeout 300;proxy_redirect off;proxy_set_header Host $http_host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_set_header X-Forwarded-Proto $scheme;proxy_set_header X-Frame-Options SAMEORIGIN;proxy_pass http://gitlab;}location ~ ^/(assets)/ {root /home/git/gitlab/public;#gzip_static on;expires max;add_header Cache-Control public;}error_page 502 /502.html; }拉取gitLab静态文件 su - git cd ~/gitlab bundle exec rake assets:precompile RAILS_ENVproduction # redis的socket文件授权 chmod 777 /var/run/redis/redis.sock # 启动gitlab服务 sudo service gitlab restart ##### ... The GitLab Unicorn web server with pid 49907 is running. The GitLab Sidekiq job dispatcher with pid 49938 is running. GitLab and all its components are up and running. # 查看端口 netstat -antlp |grep 8080 # 启动nginx sudo /usr/local/nginx/sbin/nginx5.10 访问测试 操作如下 修改本地hosts文件增加解析如下 # window 路径如下 C:\Windows\System32\drivers\etc\hosts 192.168.26.8 gitlab.hkf56.com页面访问域名输入下面账号密码 # 初始管理员帐号密码为 root 5iveL!fe登入后重置密码 最终效果如下 恭喜你已经完成了gitlab7.14.3版本部署。过程很多坑但按照文档走一定顺利 5.11 修改邮件发送 注此部分内容作者本人并未测试过有需要请自行完成配置并测试 操作如下 修改配置 cd ~/gitlab/ vim config/environments/production.rbconfig.action_mailer.delivery_method :smtpcp config/initializers/smtp_settings.rb.sample config/initializers/smtp_settings.rbvim config/initializers/smtp_settings.rb if Rails.env.production?Gitlab::Application.config.action_mailer.delivery_method :smtpActionMailer::Base.smtp_settings { address: smtp.163.com, port: 25, user_name: xxxcass.com, password: password, domain: smtp.163.com, authentication: :plain, enable_starttls_auto: true, #openssl_verify_mode: peer # See ActionMailer documentation for other possible options } end8.x版本的邮件配置和7.x有所不同 cd ~/gitlab/ vim config/environments/production.rb config.action_mailer.delivery_method :smtp config.action_mailer.smtp_settings { :address smtp.163.com, :port 25, :domain smtp.163.com, :authentication :plain, :user_name xxx163.com, :password xxx, :enable_starttls_auto true }配置好你的邮箱和密码 # 编辑config/gitlab.yml 对应修改一下配置 email_from: xxxcass.com email_display_name: GitLab email_reply_to:xxxcass.com
http://www.zqtcl.cn/news/146324/

相关文章:

  • 做网站哪些软件比较好wordpress的留言功能
  • 域名申请好了怎么做网站山西手机版建站系统信息
  • 维度网络网站建设广东水利建设与管理信息网站
  • 浏阳市商务局网站溪江农贸市场建设做关于车的网站有哪些
  • 网站建设教程资源网站网站制作网站的
  • 公司网页是什么被公司优化掉是什么意思
  • 酒店网站建设方案结束语慈溪企业排名网站
  • 做行业网站广告能赚多少钱百度搜索下载安装
  • 寺院网站建设网页搭建
  • 网站设计报价是多少wordpress登录接口
  • 灵宝网站建设建h5网站费用
  • 泊头做网站的有哪些深圳网页制作与网站建设服务器
  • 网站设计的思路网页无法访问百度
  • 简述你对于网站建设的认识网络工程就业岗位有哪些
  • 征婚网站上教人做恒指期货做网站颜色黑色代码多少
  • 海南省建设工程质量监督网站如何做搞笑原创视频网站
  • 网页游戏人气排行榜百度seo插件
  • 免费申请论坛网站更改域名代理商对网站有影响吗
  • 河南做网站公司报价工商做年报网站
  • 用狐狸做logo的网站现在网站开发技术有哪些
  • html 网站添加悬浮二维码瑜伽网站设计
  • 帮别人做网站的单子制作图片库
  • 网站注册步骤律师在线咨询免费24小时电话
  • 经典的网站设计工具怎么做网站表格
  • 韩文网站建设wordpress 置顶顺序
  • 做网站好还是做app好做房产的网站排名
  • 纯静态网站部署服务器如何做高端网站建设
  • 特色食品网站建设策划书网站建设丶seo优化
  • 安徽省六安市建设局网站网络服务提供者知道网络用户利用其网络服务侵害
  • 珠海建设局网站东莞市建设信息网