为什么我会收到此错误?
在美分 6.4 上将 Git 5.4 升级到 6.0
遵循升级指南 https://github.com/gitlabhq/gitlabhq/blob/master/doc/update/5.4-to-6.0.md
完成后我试着盯着我 git
启动 GitLab Unicorn Web 服务器...
/etc/init.d/gitlab: line 131: script/web: No such file or directory
启动 GitLab Sidekiq 事件调度程序...
/etc/init.d/gitlab: line 139: script/background_jobs: No such file or directory
GitLab 未运行。
在init.d
gitlab 文件中
+ 119 # Starts Unicorn and Sidekiq.
+ 120 start() {
+ 121 check_stale_pids
+ 122
+ 123 # Then check if the service is running. If it is: don't start again.
+ 124 if [ "$web_status" = "0" ]; then
+ 125 echo "The Unicorn web server already running with pid $wpid, not restarting."
+ 126 else
+ 127 echo "Starting the GitLab Unicorn web server..."
+ 128 # Remove old socket if it exists
+ 129 rm -f "$socket_path"/gitlab.socket 2>/dev/null
+ 130 # Start the webserver
+ 131 RAILS_ENV=$RAILS_ENV script/web start
+ 132 fi
+ 133
+ 134 # If sidekiq is already running, don't start it again.
+ 135 if [ "$sidekiq_status" = "0" ]; then
+ 136 echo "The Sidekiq job dispatcher is already running with pid $spid, not restarting"
+ 137 else
+ 138 echo "Starting the GitLab Sidekiq event dispatcher..."
+ 139 RAILS_ENV=$RAILS_ENV script/background_jobs start
+ 140 # We are sleeping a bit here because sidekiq is slow at writing it's pid
+ 141 sleep 2
+ 142 fi