bitnami gitlab 使用 gitlab-rails 命令

公司的前任配置管理員安裝的 gitlab 使用的是 bitnami 出品的全家桶,和官方的 gitlab 安裝方式徹底不一樣,包括配置文件、啓動的方式、各類命令行工具都不相同。node

他離職以後,gitlab 就交給新配置管理員了,可是對方對 gitlab 瞭解有限,基本上有什麼疑難雜症還得找我。mysql

咱們的 gitlab 使用的是版本爲 8.5.1,安裝在 /opt 目錄。linux

由於咱們 gitlab 接入了 ldap,而且將 ldap 中的一個用戶設置成了管理員,而此次又不知道是什麼緣由致使它被鎖定了。鎖定以後沒法解鎖,報 This user cannot be unlocked manually from GitLab 這樣的錯,同時也沒法刪除該用戶,由於使用它建立了不少的組。git

谷歌了一下,解決辦法是經過 gitlab-rails 命令手動修改用戶的狀態,可是我根本沒有找到這個命令。後來不死心,仔細找了找,終於在 /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/bin/ 找到了 rails 命令。github

不過執行直接報錯:sql

# /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/bin/rails
/usr/bin/env: ruby: No such file or directory
複製代碼

須要 ruby 環境。雖然能夠直接 yum install ruby 來安裝,可是自帶的版本才 1.8.7,不用裝我也知道太老,因而找安裝 ruby 的方法。在官網上找到了一種 RVM 安裝的方式,這種方式相似於 Python 的 pyenv,能夠管理多個 ruby 版本。那沒什麼好想的,就它了。數據庫

安裝 ruby

# curl -sSL https://rvm.io/pkuczynski.asc | gpg2 --import -
# \curl -sSL https://get.rvm.io | bash -s stable
複製代碼

安裝在 /usr/local/rvm。安裝完成以後提示要將使用 rvm 的用戶加入到 rvm 組,不過我這裏使用 root,就無論了。vim

接着就是安裝 ruby 了,安裝什麼版本呢?我也不知道,可是 rvm 知道,執行下面命令便可。ruby

cd /opt/gitlab-8.5.1-0/apps/gitlab/htdocs
/usr/local/rvm/bin/rvm list known
複製代碼

緊接着你就可以看到提示:bash

Required ruby-2.1.8 is not installed.
To install do: 'rvm install "ruby-2.1.8"'
複製代碼

固然下面還有不少內容,咱們不用管,rvm 自動提示咱們須要安裝 2.1.8 版本的 ruby。之因此會出現這樣的狀況,我猜想是由於當前目錄下存在 Gemfile、Gemfile.lock 等文件。

安裝 ruby 2.1.8,請確保 yum 源可用:

/usr/local/rvm/bin/rvm install "ruby-2.1.8"
複製代碼

安裝的位置爲 /usr/local/rvm/rubies/ruby-2.1.8/bin/ruby

安裝完成以後咱們修改 /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/bin/rails 文件,將第一行改成 /usr/local/rvm/rubies/ruby-2.1.8/bin/ruby,而後執行 rails 一樣會失敗,報對應的組件不存在。

安裝依賴

不用慌,由於它依賴的包咱們尚未裝,這時返回到它的上級目錄,就是 htdocs,它下面存在 Gemfile。

而後執行下面命令:

/usr/local/rvm/wrappers/ruby-2.1.8/bundle install
複製代碼

它開始安裝 Gemfile 裏面的依賴包,安裝過程當中難爲會報錯,由於總有些開發包你沒有安裝。報錯了也不用慌,基本上它都會講解決辦法告訴你。

好比我這裏安裝 charlock_holmes 失敗:

Fetching charlock_holmes 0.7.3
Installing charlock_holmes 0.7.3 with native extensions
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    current directory: /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/vendor/bundle/ruby/2.1.0/gems/charlock_holmes-0.7.3/ext/charlock_holmes
/usr/local/rvm/rubies/ruby-2.1.8/bin/ruby -r ./siteconf20190319-934-13vhsli.rb extconf.rb
checking for main() in -licui18n... no
which: no brew in
(/usr/local/rvm/gems/ruby-2.1.8/bin:/usr/local/rvm/gems/ruby-2.1.8@global/bin:/usr/local/rvm/rubies/ruby-2.1.8/bin:/usr/lib64/qt-3.3/bin:/usr/local/jdk1.7.0_79/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)
checking for main() in -licui18n... no

# 這裏已經告訴你解決辦法
***************************************************************************************
*********** icu required (brew install icu4c or apt-get install libicu-dev) ***********
***************************************************************************************
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
	--with-opt-dir
	--without-opt-dir
	--with-opt-include
	--without-opt-include=${opt-dir}/include
	--with-opt-lib
	--without-opt-lib=${opt-dir}/lib
	--with-make-prog
	--without-make-prog
	--srcdir=.
	--curdir
	--ruby=/usr/local/rvm/rubies/ruby-2.1.8/bin/ruby
	--with-icu-dir
	--without-icu-dir
	--with-icu-include
	--without-icu-include=${icu-dir}/include
	--with-icu-lib
	--without-icu-lib=${icu-dir}/lib
	--with-icui18nlib
	--without-icui18nlib
	--with-icui18nlib
	--without-icui18nlib

To see why this extension failed to compile, please check the mkmf.log which can be found here:

  /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/vendor/bundle/ruby/2.1.0/extensions/x86_64-linux/2.1.0/charlock_holmes-0.7.3/mkmf.log

extconf failed, exit code 1

Gem files will remain installed in /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/vendor/bundle/ruby/2.1.0/gems/charlock_holmes-0.7.3 for inspection.
Results logged to /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/vendor/bundle/ruby/2.1.0/extensions/x86_64-linux/2.1.0/charlock_holmes-0.7.3/gem_make.out

An error occurred while installing charlock_holmes (0.7.3), and Bundler cannot continue.
Make sure that `gem install charlock_holmes -v '0.7.3' --source 'https://rubygems.org/'` succeeds before bundling.

In Gemfile:
  gitlab_git was resolved to 8.2.0, which depends on
    github-linguist was resolved to 4.7.5, which depends on
      charlock_holmes
複製代碼

上面已經說了要咱們 brew install icu4c or apt-get install libicu-dev,這裏是 macOS 和 Ubuntu 的解決辦法,CentOS 的解決方法則是 yum install libicu-devel

有些報錯可能不會直接將解決辦法告訴你,可是它也將緣由告訴你了,好比這個報錯:

Fetching rugged 0.24.0b13
Installing rugged 0.24.0b13 with native extensions
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    current directory: /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/vendor/bundle/ruby/2.1.0/gems/rugged-0.24.0b13/ext/rugged
/usr/local/rvm/rubies/ruby-2.1.8/bin/ruby -r ./siteconf20190319-2037-829l33.rb extconf.rb
checking for gmake... yes
checking for cmake... no
ERROR: CMake is required to build Rugged.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.
複製代碼

說缺乏 cmake,那咱們直接 yum install cmake

接下來還遇到兩次報錯,一次是 mysql2,提示 yum install mysql-devel;還有一次是 pg,說是找不到 libpq-fe.h,使用 yum provides "*/libpq-fe.h",能夠找到是 postgresql-devel,yum insall 完事。

須要注意的是,你最好一次性都安裝成功,若是隻安裝一半,會影響 gitlab 的正常使用。最大的體現就是沒法合併分支,並且拉分支的話會報 Branch creation was rejected by Git hook 這樣的錯。

安裝 nodejs

再次執行 rails 會報錯,提示沒有 nodejs 運行環境:

# ./rails console
...
/opt/gitlab-8.5.1-0/apps/gitlab/htdocs/vendor/bundle/ruby/2.1.0/gems/execjs-2.6.0/lib/execjs/runtimes.rb:48:in `autodetect': Could not find a JavaScript runtime. See https://github.com/rails/execjs for a list of available runtimes. (ExecJS::RuntimeUnavailable) from /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/vendor/bundle/ruby/2.1.0/gems/execjs-2.6.0/lib/execjs.rb:5:in `<module:ExecJS>'
複製代碼

既然沒有,那就下一個唄:

wget https://nodejs.org/dist/v10.15.3/node-v10.15.3-linux-x64.tar.xz
tar xf node-v10.15.3-linux-x64.tar.xz -C /usr/local
cd /usr/local
ln -s node-v10.15.3-linux-x64/ node
ln -s `pwd`/node/bin/node /usr/bin/node
複製代碼

修改 postgresql 配置

再次運行 ./rails console 成功進入。可是一旦你執行命令,它會報錯,連不上 postgresql:

2.1.8 :001 > User.find_by_any_email("EMAIL")
PG::ConnectionBad: could not connect to server: No such file or directory
	Is the server running locally and accepting
	connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
複製代碼

默認經過 Unix 域套接字來鏈接數據庫,可是這個套接字文件不在 /tmp 下。這個問題解決起來也簡單,只須要找到如今的套接字文件,而後鏈接到 /tmp 目錄下便可。固然,你也能夠直接修改 pgsql 的配置文件,一次性解決問題。不管如何,咱們都得先找到它的配置文件。

其實只要在 gitlab 的安裝目錄稍微找找就可以找到,我這裏就直接打開了:

vim /opt/gitlab-8.5.1-0/postgresql/data/postgresql.conf

# 這行就指定了套接字的目錄
unix_socket_directories = '/opt/gitlab-8.5.1-0/postgresql'
複製代碼

看到以後,你可能當即就 ls 這個目錄了,咦,怎麼啥都沒有?由於這個文件是以 . 開頭,你要經過 -a 參數才能看到,域套接字的格式就是 .s.PGSQL. + 端口。

找到以後,咱們直接作個軟鏈接:

ln -s /opt/gitlab-8.5.1-0/postgresql/.s.PGSQL.5432 /tmp/
複製代碼

繼續執行 rails 命令:

# ./rails console

2.1.8 :001 > User.find_by_any_email("EMAIL")
PG::ConnectionBad: fe_sendauth: no password supplied
複製代碼

又 ™ 報錯了,說沒有指定密碼。pgsql 雖然連上了,可是卻沒有密碼,因而我趕忙看了下 rails 的使用幫助,可是並無找到有輸入密碼的地方,並且我也不知道它的密碼是啥。。

又仔細的看了下 rails 命令的輸出,因而發現了這行:

Loading development environment (Rails 4.2.5.1)
複製代碼

說是加載了開發環境的配置,它居然還有環境之分,這我也是第一次知道,畢竟對 gitlab 瞭解很少。因而又翻了翻 gitlab 的配置文件,找到了數據庫方面的配置,我這裏就直接打開了。

# vim /opt/gitlab-8.5.1-0/apps/gitlab/htdocs/config/database.yml

#
# PRODUCTION
#
production:
 adapter: postgresql
 encoding: unicode
 database: 手動打碼
 pool: 10
 username: 手動打碼
 password: 手動打碼
 host: 127.0.0.1
 port: 5432
  # port: 5432

#
# Development specific
#
development:
 adapter: postgresql
 encoding: unicode
 database: 手動打碼
 pool: 5
 username: 手動打碼
 password: 手動打碼
複製代碼

環境挺多,這裏只列出了開發和生成環境,由於我這裏的開發環境的密碼沒有配置,因此纔會出現上面沒有認證的狀況。解決辦法就是直接使用生產環境的配置,因而看了看 rails 的用法,找到了指定生產環境的方法。

# ./rails console -e production

2.1.8 :002 > user = User.find_by_any_email("MAIL")
複製代碼

順利的找到一堆結果,而後修改下用戶的狀態就可以將用戶解鎖:

2.1.8 :003 > user.state = "active"
2.1.8 :004 > user.save
2.1.8 :005 > exit
複製代碼

ok,文章到此結束。

相關文章
相關標籤/搜索