• Rails Variants Tips at 2014年09月13日

    #2 楼 @billy 在具备 Responsive 的情况下依然有使用这个特性的场景,比如 App 内嵌页面,需要展现上做一些特殊处理,但数据结构不变。

  • #6 楼 @flowerwrong 我本意是 height 不设限制,任意多少,保持原图高宽比例。后来发现 minimagick 默认就是这样处理,所以这个问题就作罢。

  • #1 楼 @flowerwrong image.resize "100x100" 这部分我可以只设置 width 不限制 height 吗?保证长宽比例不变。

  • #3 楼 @zj0713001 之前在.NET 平台一直是这样的方案,真没觉得有尴尬。缩图的资源消耗是很少的吧,而且第一次请求肯定是完全在内存里走,不会等磁盘缓存好了之后才返回图片。

  • #1 楼 @flowerwrong 这个只是手动生成,跟需求有区别吧?

  • Capistrano 部署的错误 at 2014年08月22日

    擦,被这问题搞死…… 结贴。 缘由是某个 gem 被移除了,但/app 里依然有废弃代码调用了这个库。只是在 rails server 环境没报错。 问题是,为什么在 Capistrano task 中 eval 执行的代码没有正常的报错呢? run "cd $APP_ROOT; bundle exec rake environment ... " 我把这一行提取出最终执行代码去服务端运行,报错信息就正常了……

  • Capistrano 部署的错误 at 2014年08月22日

    #14 楼 @Rei 我现在通过 echo 标注已经能够确定到是 resque 中 run "cd $APP_ROOT; bundle exec rake environment ... " 这一行的执行错误了。单独执行 run 函数的参数是没有问题的,但我现在看不懂这个 run() 函数是什么作用,能否说明一下?谢谢

  • Capistrano 部署的错误 at 2014年08月22日

    上面没有贴好……

    set -e
    set -u
    
    APP_ROOT=/home/zcj/www/d.baozoubisai.com/current
    USER=zcj
    
    TIMEOUT=${TIMEOUT-60}
    PIDFILE="$APP_ROOT/tmp/pids/resque.%d.pid"
    QUEUES="*"
    COUNT=1
    
    run () {
      if [ "$(id -un)" = "$USER" ]; then
        eval $1
      else
        su -c "$1" - $USER
      fi
    }
    
    case "$1" in
      start)
        for i in $(seq 1 $COUNT); do
          pidfile=$(printf "$PIDFILE" $i)
    
          if test -s "$pidfile" && run "kill -0 `cat $pidfile`"; then
            echo "Worker `cat $pidfile` alread running"
          else
            run "cd $APP_ROOT; bundle exec rake environment resque:work QUEUE=$QUEUES PIDFILE=$pidfile TERM_CHILD=1 BACKGROUND=yes RAILS_ENV=production > /dev/null 2>&1"
            echo "Start worker `cat $pidfile`"
          fi
        done
        ;;
      stop)
        for i in $(seq 1 $COUNT); do
          pidfile=$(printf "$PIDFILE" $i)
    
          if test -s "$pidfile" && run "kill -QUIT `cat $pidfile`"; then
            echo "Stop worker `cat $pidfile`"
            run "rm $pidfile"
          fi
        done
        ;;
      restart|reload)
        $0 stop
        $0 start
        ;;
      *)
        echo >&2 "Usage: $0 <start|stop|restart|reload>"
        exit 1
        ;;
    esac
    
  • Capistrano 部署的错误 at 2014年08月22日

    #16 楼 @hging 确实是 task 有问题 vagrant@vagrant-ubuntu-precise-64:/vagrant$ cap production deploy:resque:restart --trace ** Invoke production (first_time) ** Execute production ** Invoke load:defaults (first_time) ** Execute load:defaults ** Invoke rvm:hook (first_time) ** Execute rvm:hook DEBUG[10348b58] Running /usr/bin/env [ -d ~/.rvm ] on 115.28.233.141 DEBUG[10348b58] Command: [ -d ~/.rvm ] DEBUG[10348b58] Finished in 0.458 seconds with exit status 0 (successful). ** Invoke rvm:check (first_time) ** Execute rvm:check DEBUG[a2c2756a] Running ~/.rvm/bin/rvm version on 115.28.233.141 DEBUG[a2c2756a] Command: ~/.rvm/bin/rvm version DEBUG[a2c2756a] rvm 1.25.28 (stable) by Wayne E. Seguin [email protected], Michal Papis [email protected] [https://rvm.io/] DEBUG[a2c2756a] Finished in 0.260 seconds with exit status 0 (successful). rvm 1.25.28 (stable) by Wayne E. Seguin [email protected], Michal Papis [email protected] [https://rvm.io/] DEBUG[996c4f83] Running ~/.rvm/bin/rvm current on 115.28.233.141 DEBUG[996c4f83] Command: ~/.rvm/bin/rvm current DEBUG[996c4f83] ruby-2.1.2 DEBUG[996c4f83] Finished in 0.255 seconds with exit status 0 (successful). ruby-2.1.2 DEBUG[ddc0d0e3] Running ~/.rvm/bin/rvm default do ruby --version on 115.28.233.141 DEBUG[ddc0d0e3] Command: ~/.rvm/bin/rvm default do ruby --version DEBUG[ddc0d0e3] ruby 2.1.2p95 (2014-05-08 revision 45877) [x86_64-linux] DEBUG[ddc0d0e3] Finished in 0.488 seconds with exit status 0 (successful). ruby 2.1.2p95 (2014-05-08 revision 45877) [x86_64-linux] ** Invoke bundler:map_bins (first_time) ** Execute bundler:map_bins ** Invoke deploy:resque:restart (first_time) ** Execute deploy:resque:restart INFO[df148033] Running /usr/bin/env service resque restart on 115.28.233.141 DEBUG[df148033] Command: /usr/bin/env service resque restart cap aborted! SSHKit::Runner::ExecuteError: Exception while executing on host 115.28.233.141: service exit status: 127 service stdout: Nothing written service stderr: Nothing written /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/command.rb:97:in `exit_status=' 。。。。。

    只是这个 task 一字未改在之前是可用的,服务器上目录也没有任何改动,我不知道是我代码改了其它什么地方导致这个 task 失败

    resque 脚本:

    #!/bin/bash

    BEGIN INIT INFO

    Provides: Campo

    Required-Start: $all

    Required-Stop: $network $local_fs $syslog

    Default-Start: 2 3 4 5

    Default-Stop: 0 1 6

    Short-Description: Start the Campo resque worker at boot

    Description: Enable Campo at boot time.

    END INIT INFO

    set -e set -u

    APP_ROOT=/home/zcj/www/d.baozoubisai.com/current USER=zcj

    TIMEOUT=${TIMEOUT-60} PIDFILE="$APP_ROOT/tmp/pids/resque.%d.pid" QUEUES="*" COUNT=1

    run () { if [ "$(id -un)" = "$USER" ]; then eval $1 else su -c "$1" - $USER fi }

    case "$1" in start) for i in $(seq 1 $COUNT); do pidfile=$(printf "$PIDFILE" $i)

    if test -s "$pidfile" && run "kill -0 cat $pidfile"; then echo "Worker cat $pidfile alread running" else run "cd $APP_ROOT; bundle exec rake environment resque:work QUEUE=$QUEUES PIDFILE=$pidfile TERM_CHILD=1 BACKGROUND=yes RAILS_ENV=production > /dev/null 2>&1" echo "Start worker cat $pidfile" fi done ;; stop) for i in $(seq 1 $COUNT); do pidfile=$(printf "$PIDFILE" $i)

    if test -s "$pidfile" && run "kill -QUIT cat $pidfile"; then echo "Stop worker cat $pidfile" run "rm $pidfile" fi done ;; restart|reload) $0 stop $0 start ;; *) echo >&2 "Usage: $0 " exit 1 ;; esac

  • Capistrano 部署的错误 at 2014年08月22日

    group :development do # Deploy tool gem 'capistrano', '~> 3.1.0' gem 'capistrano-rvm', '~> 0.1.1' gem 'capistrano-bundler', '~> 1.1.2' gem 'capistrano-rails', '~> 1.0.0' end

  • Capistrano 部署的错误 at 2014年08月22日

    #8 楼 @MrPasserby 我用的就是这个啊

  • Capistrano 部署的错误 at 2014年08月22日

    #10 楼 @hging 执行没有问题

  • Capistrano 部署的错误 at 2014年08月22日

    #6 楼 @zhenning 和我不是一个问题啊。他是 assets:precompile 命令,我是 service resque restart 命令。重点是不知道怎样还原 cap 执行『service resque restart』的真实场景。

  • Capistrano 部署的错误 at 2014年08月21日

    #4 楼 @hging

    vagrant@vagrant-ubuntu-precise-64:/vagrant$ bundle exec cap production deploy --verbose DEBUG[74b74676] Running /usr/bin/env [ -d ~/.rvm ] on d.baozoubisai.com DEBUG[74b74676] Command: [ -d ~/.rvm ] DEBUG[74b74676] Finished in 2.942 seconds with exit status 0 (successful). DEBUG[438aa924] Running ~/.rvm/bin/rvm version on d.baozoubisai.com DEBUG[438aa924] Command: ~/.rvm/bin/rvm version DEBUG[438aa924] rvm 1.25.28 (stable) by Wayne E. Seguin [email protected], Michal Papis [email protected] [https://rvm.io/] DEBUG[438aa924] Finished in 0.549 seconds with exit status 0 (successful). rvm 1.25.28 (stable) by Wayne E. Seguin [email protected], Michal Papis [email protected] [https://rvm.io/] DEBUG[460ea343] Running ~/.rvm/bin/rvm current on d.baozoubisai.com DEBUG[460ea343] Command: ~/.rvm/bin/rvm current DEBUG[460ea343] ruby-2.1.1 DEBUG[460ea343] Finished in 0.628 seconds with exit status 0 (successful). ruby-2.1.1 DEBUG[8f2c3d4b] Running ~/.rvm/bin/rvm default do ruby --version on d.baozoubisai.com DEBUG[8f2c3d4b] Command: ~/.rvm/bin/rvm default do ruby --version DEBUG[8f2c3d4b] ruby 2.1.1p76 (2014-02-24 revision 45161) [x86_64-linux] DEBUG[8f2c3d4b] Finished in 0.875 seconds with exit status 0 (successful). ruby 2.1.1p76 (2014-02-24 revision 45161) [x86_64-linux] INFO[218f12bf] Running /usr/bin/env mkdir -p /tmp/d.baozoubisai.com/ on d.baozoubisai.com DEBUG[218f12bf] Command: /usr/bin/env mkdir -p /tmp/d.baozoubisai.com/ INFO[218f12bf] Finished in 0.225 seconds with exit status 0 (successful). DEBUGUploading /tmp/d.baozoubisai.com/git-ssh.sh 0.0% INFOUploading /tmp/d.baozoubisai.com/git-ssh.sh 100.0% INFO[5f8ca25e] Running /usr/bin/env chmod +x /tmp/d.baozoubisai.com/git-ssh.sh on d.baozoubisai.com DEBUG[5f8ca25e] Command: /usr/bin/env chmod +x /tmp/d.baozoubisai.com/git-ssh.sh INFO[5f8ca25e] Finished in 0.040 seconds with exit status 0 (successful). DEBUG[fb283c4a] Running /usr/bin/env git ls-remote [email protected]:zicjin/campo.git on d.baozoubisai.com DEBUG[fb283c4a] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/d.baozoubisai.com/git-ssh.sh /usr/bin/env git ls-remote [email protected]:zicjin/campo.git ) DEBUG[fb283c4a] Error reading response length from authentication socket. DEBUG[fb283c4a] 8a3586bf0e79494e73f999fabac67236121ede09 HEAD DEBUG[fb283c4a] 57901b32903e85bd4e074f8d2892ad7584f78eae refs/heads/import DEBUG[fb283c4a] 8a3586bf0e79494e73f999fabac67236121ede09 refs/heads/master DEBUG[fb283c4a] Error reading response length from authentication socket. DEBUG[fb283c4a] Finished in 4.785 seconds with exit status 0 (successful). INFO[db73ab16] Running /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/shared /home/zcj/www/d.baozoubisai.com/releases on d.baozoubisai.com DEBUG[db73ab16] Command: /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/shared /home/zcj/www/d.baozoubisai.com/releases INFO[db73ab16] Finished in 0.384 seconds with exit status 0 (successful). INFO[c7d0b625] Running /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/shared/bin /home/zcj/www/d.baozoubisai.com/shared/log /home/zcj/www/d.baozoubisai.com/shared/tmp/pids /home/zcj/www/d.baozoubisai.com/shared/tmp/cache /home/zcj/www/d.baozoubisai.com/shared/tmp/sockets /home/zcj/www/d.baozoubisai.com/shared/vendor/bundle /home/zcj/www/d.baozoubisai.com/shared/public/uploads /home/zcj/www/d.baozoubisai.com/shared/public/assets on d.baozoubisai.com DEBUG[c7d0b625] Command: /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/shared/bin /home/zcj/www/d.baozoubisai.com/shared/log /home/zcj/www/d.baozoubisai.com/shared/tmp/pids /home/zcj/www/d.baozoubisai.com/shared/tmp/cache /home/zcj/www/d.baozoubisai.com/shared/tmp/sockets /home/zcj/www/d.baozoubisai.com/shared/vendor/bundle /home/zcj/www/d.baozoubisai.com/shared/public/uploads /home/zcj/www/d.baozoubisai.com/shared/public/assets INFO[c7d0b625] Finished in 0.063 seconds with exit status 0 (successful). INFO[463b322a] Running /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/shared/config /home/zcj/www/d.baozoubisai.com/shared/config /home/zcj/www/d.baozoubisai.com/shared/config on d.baozoubisai.com DEBUG[463b322a] Command: /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/shared/config /home/zcj/www/d.baozoubisai.com/shared/config /home/zcj/www/d.baozoubisai.com/shared/config INFO[463b322a] Finished in 0.066 seconds with exit status 0 (successful). DEBUG[f17c167a] Running /usr/bin/env [ -f /home/zcj/www/d.baozoubisai.com/shared/config/database.yml ] on d.baozoubisai.com DEBUG[f17c167a] Command: [ -f /home/zcj/www/d.baozoubisai.com/shared/config/database.yml ] DEBUG[f17c167a] Finished in 0.425 seconds with exit status 0 (successful). DEBUG[69ad6fb8] Running /usr/bin/env [ -f /home/zcj/www/d.baozoubisai.com/shared/config/config.yml ] on d.baozoubisai.com DEBUG[69ad6fb8] Command: [ -f /home/zcj/www/d.baozoubisai.com/shared/config/config.yml ] DEBUG[69ad6fb8] Finished in 0.086 seconds with exit status 0 (successful). DEBUG[534880c5] Running /usr/bin/env [ -f /home/zcj/www/d.baozoubisai.com/shared/config/secrets.yml ] on d.baozoubisai.com DEBUG[534880c5] Command: [ -f /home/zcj/www/d.baozoubisai.com/shared/config/secrets.yml ] DEBUG[534880c5] Finished in 0.063 seconds with exit status 0 (successful). DEBUG[601aaa16] Running /usr/bin/env [ -f /home/zcj/www/d.baozoubisai.com/repo/HEAD ] on d.baozoubisai.com DEBUG[601aaa16] Command: [ -f /home/zcj/www/d.baozoubisai.com/repo/HEAD ] DEBUG[601aaa16] Finished in 0.052 seconds with exit status 0 (successful). INFOThe repository mirror is at /home/zcj/www/d.baozoubisai.com/repo DEBUG[d4b72597] Running /usr/bin/env if test ! -d /home/zcj/www/d.baozoubisai.com/repo; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/repo'" 1>&2; false; fi on d.baozoubisai.com DEBUG[d4b72597] Command: if test ! -d /home/zcj/www/d.baozoubisai.com/repo; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/repo'" 1>&2; false; fi DEBUG[d4b72597] Finished in 0.175 seconds with exit status 0 (successful). DEBUG[666fd641] Running /usr/bin/env cd /home/zcj/www/d.baozoubisai.com/repo && git rev-parse --short HEAD on d.baozoubisai.com DEBUG[666fd641] Command: cd /home/zcj/www/d.baozoubisai.com/repo && git rev-parse --short HEAD DEBUG[666fd641] 8a3586b DEBUG[666fd641] Finished in 0.525 seconds with exit status 0 (successful). INFO[eb6717d9] Running /usr/bin/env git remote update on d.baozoubisai.com DEBUG[eb6717d9] Command: cd /home/zcj/www/d.baozoubisai.com/repo && /usr/bin/env git remote update DEBUG[eb6717d9] 正在获取 origin DEBUG[eb6717d9] 正在获取 origin DEBUG[eb6717d9] Error reading response length from authentication socket. INFO[eb6717d9] Finished in 4.209 seconds with exit status 0 (successful). DEBUG[d89f9974] Running /usr/bin/env cd /home/zcj/www/d.baozoubisai.com/repo && git rev-parse --short HEAD on d.baozoubisai.com DEBUG[d89f9974] Command: cd /home/zcj/www/d.baozoubisai.com/repo && git rev-parse --short HEAD DEBUG[d89f9974] 8a3586b DEBUG[d89f9974] Finished in 0.039 seconds with exit status 0 (successful). DEBUG[01660377] Running /usr/bin/env if test ! -d /home/zcj/www/d.baozoubisai.com/repo; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/repo'" 1>&2; false; fi on d.baozoubisai.com DEBUG[01660377] Command: if test ! -d /home/zcj/www/d.baozoubisai.com/repo; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/repo'" 1>&2; false; fi DEBUG[01660377] Finished in 0.040 seconds with exit status 0 (successful). INFO[9a74fb29] Running /usr/bin/env mkdir -p /home/zcj/www/d.baozoubisai.com/releases/20140821094650 on d.baozoubisai.com DEBUG[9a74fb29] Command: cd /home/zcj/www/d.baozoubisai.com/repo && ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/d.baozoubisai.com/git-ssh.sh /usr/bin/env mkdir -p /home/zcj/www/d.baozoubisai.com/releases/20140821094650 ) INFO[9a74fb29] Finished in 0.081 seconds with exit status 0 (successful). INFO[8f7f8fee] Running /usr/bin/env git archive master | tar -x -C /home/zcj/www/d.baozoubisai.com/releases/20140821094650 on d.baozoubisai.com DEBUG[8f7f8fee] Command: cd /home/zcj/www/d.baozoubisai.com/repo && ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/d.baozoubisai.com/git-ssh.sh /usr/bin/env git archive master | tar -x -C /home/zcj/www/d.baozoubisai.com/releases/20140821094650 ) INFO[8f7f8fee] Finished in 0.193 seconds with exit status 0 (successful). INFO[351bad4f] Running /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config on d.baozoubisai.com DEBUG[351bad4f] Command: /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config INFO[351bad4f] Finished in 0.458 seconds with exit status 0 (successful). DEBUG[0a157d16] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/database.yml ] on d.baozoubisai.com DEBUG[0a157d16] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/database.yml ] DEBUG[0a157d16] Finished in 0.058 seconds with exit status 1 (failed). DEBUG[acbe3022] Running /usr/bin/env [ -f /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/database.yml ] on d.baozoubisai.com DEBUG[acbe3022] Command: [ -f /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/database.yml ] DEBUG[acbe3022] Finished in 0.041 seconds with exit status 1 (failed). INFO[7c8e7b9f] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/config/database.yml /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/database.yml on d.baozoubisai.com DEBUG[7c8e7b9f] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/config/database.yml /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/database.yml INFO[7c8e7b9f] Finished in 0.042 seconds with exit status 0 (successful). DEBUG[92fa9a9f] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/config.yml ] on d.baozoubisai.com DEBUG[92fa9a9f] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/config.yml ] DEBUG[92fa9a9f] Finished in 0.038 seconds with exit status 1 (failed). DEBUG[b02364e1] Running /usr/bin/env [ -f /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/config.yml ] on d.baozoubisai.com DEBUG[b02364e1] Command: [ -f /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/config.yml ] DEBUG[b02364e1] Finished in 0.166 seconds with exit status 1 (failed). INFO[d0e8bdd6] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/config/config.yml /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/config.yml on d.baozoubisai.com DEBUG[d0e8bdd6] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/config/config.yml /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/config.yml INFO[d0e8bdd6] Finished in 0.044 seconds with exit status 0 (successful). DEBUG[f1b732be] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/secrets.yml ] on d.baozoubisai.com DEBUG[f1b732be] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/secrets.yml ] DEBUG[f1b732be] Finished in 0.048 seconds with exit status 1 (failed). DEBUG[280bd81b] Running /usr/bin/env [ -f /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/secrets.yml ] on d.baozoubisai.com DEBUG[280bd81b] Command: [ -f /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/secrets.yml ] DEBUG[280bd81b] Finished in 0.044 seconds with exit status 1 (failed). INFO[3464f435] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/config/secrets.yml /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/secrets.yml on d.baozoubisai.com DEBUG[3464f435] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/config/secrets.yml /home/zcj/www/d.baozoubisai.com/releases/20140821094650/config/secrets.yml INFO[3464f435] Finished in 0.041 seconds with exit status 0 (successful). INFO[8be11454] Running /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/releases/20140821094650 /home/zcj/www/d.baozoubisai.com/releases/20140821094650 /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp /home/zcj/www/d.baozoubisai.com/releases/20140821094650/vendor /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public on d.baozoubisai.com DEBUG[8be11454] Command: /usr/bin/env mkdir -pv /home/zcj/www/d.baozoubisai.com/releases/20140821094650 /home/zcj/www/d.baozoubisai.com/releases/20140821094650 /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp /home/zcj/www/d.baozoubisai.com/releases/20140821094650/vendor /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public DEBUG[8be11454] mkdir: 已创建目录 "/home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp" INFO[8be11454] Finished in 0.052 seconds with exit status 0 (successful). DEBUG[49505ad0] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/bin ] on d.baozoubisai.com DEBUG[49505ad0] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/bin ] DEBUG[49505ad0] Finished in 0.378 seconds with exit status 1 (failed). DEBUG[e7811f9e] Running /usr/bin/env [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/bin ] on d.baozoubisai.com DEBUG[e7811f9e] Command: [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/bin ] DEBUG[e7811f9e] Finished in 0.179 seconds with exit status 0 (successful). INFO[8f4611cb] Running /usr/bin/env rm -rf /home/zcj/www/d.baozoubisai.com/releases/20140821094650/bin on d.baozoubisai.com DEBUG[8f4611cb] Command: /usr/bin/env rm -rf /home/zcj/www/d.baozoubisai.com/releases/20140821094650/bin INFO[8f4611cb] Finished in 0.043 seconds with exit status 0 (successful). INFO[fcb9c31f] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/bin /home/zcj/www/d.baozoubisai.com/releases/20140821094650/bin on d.baozoubisai.com DEBUG[fcb9c31f] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/bin /home/zcj/www/d.baozoubisai.com/releases/20140821094650/bin INFO[fcb9c31f] Finished in 0.043 seconds with exit status 0 (successful). DEBUG[5f6c31af] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/log ] on d.baozoubisai.com DEBUG[5f6c31af] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/log ] DEBUG[5f6c31af] Finished in 0.051 seconds with exit status 1 (failed). DEBUG[1dac98c6] Running /usr/bin/env [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/log ] on d.baozoubisai.com DEBUG[1dac98c6] Command: [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/log ] DEBUG[1dac98c6] Finished in 0.272 seconds with exit status 0 (successful). INFO[a70a791e] Running /usr/bin/env rm -rf /home/zcj/www/d.baozoubisai.com/releases/20140821094650/log on d.baozoubisai.com DEBUG[a70a791e] Command: /usr/bin/env rm -rf /home/zcj/www/d.baozoubisai.com/releases/20140821094650/log INFO[a70a791e] Finished in 0.046 seconds with exit status 0 (successful). INFO[9046b457] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/log /home/zcj/www/d.baozoubisai.com/releases/20140821094650/log on d.baozoubisai.com DEBUG[9046b457] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/log /home/zcj/www/d.baozoubisai.com/releases/20140821094650/log INFO[9046b457] Finished in 0.041 seconds with exit status 0 (successful). DEBUG[bf3b5cf9] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/pids ] on d.baozoubisai.com DEBUG[bf3b5cf9] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/pids ] DEBUG[bf3b5cf9] Finished in 0.041 seconds with exit status 1 (failed). DEBUG[57b287ee] Running /usr/bin/env [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/pids ] on d.baozoubisai.com DEBUG[57b287ee] Command: [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/pids ] DEBUG[57b287ee] Finished in 0.044 seconds with exit status 1 (failed). INFO[0ed2ac69] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/tmp/pids /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/pids on d.baozoubisai.com DEBUG[0ed2ac69] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/tmp/pids /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/pids INFO[0ed2ac69] Finished in 0.043 seconds with exit status 0 (successful). DEBUG[e83b6fbd] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/cache ] on d.baozoubisai.com DEBUG[e83b6fbd] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/cache ] DEBUG[e83b6fbd] Finished in 0.067 seconds with exit status 1 (failed). DEBUG[3897f1d3] Running /usr/bin/env [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/cache ] on d.baozoubisai.com DEBUG[3897f1d3] Command: [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/cache ] DEBUG[3897f1d3] Finished in 0.216 seconds with exit status 1 (failed). INFO[7836da18] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/tmp/cache /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/cache on d.baozoubisai.com DEBUG[7836da18] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/tmp/cache /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/cache INFO[7836da18] Finished in 0.041 seconds with exit status 0 (successful). DEBUG[f0ec9756] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/sockets ] on d.baozoubisai.com DEBUG[f0ec9756] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/sockets ] DEBUG[f0ec9756] Finished in 0.039 seconds with exit status 1 (failed). DEBUG[fe4b3fb0] Running /usr/bin/env [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/sockets ] on d.baozoubisai.com DEBUG[fe4b3fb0] Command: [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/sockets ] DEBUG[fe4b3fb0] Finished in 0.039 seconds with exit status 1 (failed). INFO[67824ec0] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/tmp/sockets /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/sockets on d.baozoubisai.com DEBUG[67824ec0] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/tmp/sockets /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/sockets INFO[67824ec0] Finished in 0.044 seconds with exit status 0 (successful). DEBUG[87c20cdf] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/vendor/bundle ] on d.baozoubisai.com DEBUG[87c20cdf] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/vendor/bundle ] DEBUG[87c20cdf] Finished in 0.042 seconds with exit status 1 (failed). DEBUG[5f528484] Running /usr/bin/env [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/vendor/bundle ] on d.baozoubisai.com DEBUG[5f528484] Command: [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/vendor/bundle ] DEBUG[5f528484] Finished in 0.050 seconds with exit status 1 (failed). INFO[744826ac] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/vendor/bundle /home/zcj/www/d.baozoubisai.com/releases/20140821094650/vendor/bundle on d.baozoubisai.com DEBUG[744826ac] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/vendor/bundle /home/zcj/www/d.baozoubisai.com/releases/20140821094650/vendor/bundle INFO[744826ac] Finished in 0.053 seconds with exit status 0 (successful). DEBUG[cd98ab79] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/uploads ] on d.baozoubisai.com DEBUG[cd98ab79] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/uploads ] DEBUG[cd98ab79] Finished in 0.047 seconds with exit status 1 (failed). DEBUG[c28721ba] Running /usr/bin/env [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/uploads ] on d.baozoubisai.com DEBUG[c28721ba] Command: [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/uploads ] DEBUG[c28721ba] Finished in 0.041 seconds with exit status 1 (failed). INFO[6576a103] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/public/uploads /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/uploads on d.baozoubisai.com DEBUG[6576a103] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/public/uploads /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/uploads INFO[6576a103] Finished in 0.058 seconds with exit status 0 (successful). DEBUG[58d06d3e] Running /usr/bin/env [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/assets ] on d.baozoubisai.com DEBUG[58d06d3e] Command: [ -L /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/assets ] DEBUG[58d06d3e] Finished in 0.040 seconds with exit status 1 (failed). DEBUG[af29acad] Running /usr/bin/env [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/assets ] on d.baozoubisai.com DEBUG[af29acad] Command: [ -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/assets ] DEBUG[af29acad] Finished in 0.057 seconds with exit status 1 (failed). INFO[26011351] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/public/assets /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/assets on d.baozoubisai.com DEBUG[26011351] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/shared/public/assets /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/assets INFO[26011351] Finished in 0.039 seconds with exit status 0 (successful). DEBUG[0170840f] Running /usr/bin/env if test ! -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/releases/20140821094650'" 1>&2; false; fi on d.baozoubisai.com DEBUG[0170840f] Command: if test ! -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/releases/20140821094650'" 1>&2; false; fi DEBUG[0170840f] Finished in 0.039 seconds with exit status 0 (successful). INFO[88747bc9] Running ~/.rvm/bin/rvm default do bundle install --binstubs /home/zcj/www/d.baozoubisai.com/shared/bin --path /home/zcj/www/d.baozoubisai.com/shared/bundle --without development test --deployment --quiet on d.baozoubisai.com DEBUG[88747bc9] Command: cd /home/zcj/www/d.baozoubisai.com/releases/20140821094650 && ~/.rvm/bin/rvm default do bundle install --binstubs /home/zcj/www/d.baozoubisai.com/shared/bin --path /home/zcj/www/d.baozoubisai.com/shared/bundle --without development test --deployment --quiet INFO[88747bc9] Finished in 4.180 seconds with exit status 0 (successful). DEBUG[d184cff7] Running /usr/bin/env if test ! -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/releases/20140821094650'" 1>&2; false; fi on d.baozoubisai.com DEBUG[d184cff7] Command: if test ! -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/releases/20140821094650'" 1>&2; false; fi DEBUG[d184cff7] Finished in 0.141 seconds with exit status 0 (successful). INFO[85cc0622] Running ~/.rvm/bin/rvm default do bundle exec rake assets:precompile on d.baozoubisai.com DEBUG[85cc0622] Command: cd /home/zcj/www/d.baozoubisai.com/releases/20140821094650 && ( RAILS_ENV=production ~/.rvm/bin/rvm default do bundle exec rake assets:precompile ) INFO[85cc0622] Finished in 9.076 seconds with exit status 0 (successful). DEBUG[5572d621] Running /usr/bin/env if test ! -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/releases/20140821094650'" 1>&2; false; fi on d.baozoubisai.com DEBUG[5572d621] Command: if test ! -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/releases/20140821094650'" 1>&2; false; fi DEBUG[5572d621] Finished in 0.220 seconds with exit status 0 (successful). INFO[f37309a7] Running /usr/bin/env cp /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/assets/manifest* /home/zcj/www/d.baozoubisai.com/releases/20140821094650/assets_manifest_backup on d.baozoubisai.com DEBUG[f37309a7] Command: cd /home/zcj/www/d.baozoubisai.com/releases/20140821094650 && /usr/bin/env cp /home/zcj/www/d.baozoubisai.com/releases/20140821094650/public/assets/manifest* /home/zcj/www/d.baozoubisai.com/releases/20140821094650/assets_manifest_backup INFO[f37309a7] Finished in 0.063 seconds with exit status 0 (successful). DEBUG[1128fd5d] Running /usr/bin/env if test ! -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/releases/20140821094650'" 1>&2; false; fi on d.baozoubisai.com DEBUG[1128fd5d] Command: if test ! -d /home/zcj/www/d.baozoubisai.com/releases/20140821094650; then echo "Directory does not exist '/home/zcj/www/d.baozoubisai.com/releases/20140821094650'" 1>&2; false; fi DEBUG[1128fd5d] Finished in 0.040 seconds with exit status 0 (successful). INFO[3ee83489] Running ~/.rvm/bin/rvm default do bundle exec rake db:migrate on d.baozoubisai.com DEBUG[3ee83489] Command: cd /home/zcj/www/d.baozoubisai.com/releases/20140821094650 && ( RAILS_ENV=production ~/.rvm/bin/rvm default do bundle exec rake db:migrate ) INFO[3ee83489] Finished in 8.785 seconds with exit status 0 (successful). INFO[402bf440] Running /usr/bin/env rm -rf /home/zcj/www/d.baozoubisai.com/current on d.baozoubisai.com DEBUG[402bf440] Command: /usr/bin/env rm -rf /home/zcj/www/d.baozoubisai.com/current INFO[402bf440] Finished in 0.074 seconds with exit status 0 (successful). INFO[3114358a] Running /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/releases/20140821094650 /home/zcj/www/d.baozoubisai.com/current on d.baozoubisai.com DEBUG[3114358a] Command: /usr/bin/env ln -s /home/zcj/www/d.baozoubisai.com/releases/20140821094650 /home/zcj/www/d.baozoubisai.com/current INFO[3114358a] Finished in 0.049 seconds with exit status 0 (successful). INFO[2b7f47d8] Running /usr/bin/env touch /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/restart.txt on d.baozoubisai.com DEBUG[2b7f47d8] Command: /usr/bin/env touch /home/zcj/www/d.baozoubisai.com/releases/20140821094650/tmp/restart.txt INFO[2b7f47d8] Finished in 0.038 seconds with exit status 0 (successful). INFO[26792411] Running /usr/bin/env service resque restart on d.baozoubisai.com DEBUG[26792411] Command: /usr/bin/env service resque restart cap aborted! SSHKit::Runner::ExecuteError: Exception while executing on host d.baozoubisai.com: service exit status: 1 service stdout: Nothing written service stderr: Nothing written /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/command.rb:97:in exit_status=' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:148:inblock (5 levels) in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:551:in call' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:551:indo_request' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:561:in channel_request' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:465:indispatch_incoming_packets' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:221:in preprocess' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:205:inprocess' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:in block in loop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:inloop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:in loop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:269:inwait' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:170:in block (3 levels) in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:514:incall' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:514:in do_open_confirmation' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:545:inchannel_open_confirmation' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:465:in dispatch_incoming_packets' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:221:inpreprocess' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:205:in process' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:inblock in loop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:in loop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:inloop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:172:in block (2 levels) in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:186:inwith_ssh' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:131:in block in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:128:intap' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:128:in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:66:inexecute' config/deploy.rb:33:in block (5 levels) in <top (required)>' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:54:ininstance_exec' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:54:in run' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/runners/parallel.rb:13:inblock (2 levels) in execute' SSHKit::Command::Failed: service exit status: 1 service stdout: Nothing written service stderr: Nothing written /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/command.rb:97:in exit_status=' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:148:inblock (5 levels) in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:551:in call' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:551:indo_request' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:561:in channel_request' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:465:indispatch_incoming_packets' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:221:in preprocess' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:205:inprocess' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:in block in loop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:inloop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:in loop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:269:inwait' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:170:in block (3 levels) in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:514:incall' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/channel.rb:514:in do_open_confirmation' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:545:inchannel_open_confirmation' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:465:in dispatch_incoming_packets' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:221:inpreprocess' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:205:in process' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:inblock in loop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:in loop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/net-ssh-2.9.1/lib/net/ssh/connection/session.rb:169:inloop' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:172:in block (2 levels) in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:186:inwith_ssh' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:131:in block in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:128:intap' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:128:in _execute' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:66:inexecute' config/deploy.rb:33:in block (5 levels) in <top (required)>' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:54:ininstance_exec' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/backends/netssh.rb:54:in run' /home/vagrant/.rvm/gems/ruby-2.1.1/gems/sshkit-1.5.1/lib/sshkit/runners/parallel.rb:13:inblock (2 levels) in execute' Tasks: TOP => deploy:resque:restart (See full trace by running task with --trace) The deploy has failed with an error: #<SSHKit::Runner::ExecuteError: Exception while executing on host d.baozoubisai.com: service exit status: 1 service stdout: Nothing written service stderr: Nothing written

    vagrant@vagrant-ubuntu-precise-64:/vagrant$

  • Capistrano 部署的错误 at 2014年08月21日

    #1 楼 @Tony612 手动执行这个没有问题

  • #3 楼 @Rei thanks very match. 所以,如果在开发环境使用 precompile 生成了 public/assets 数据 rails server 就会自动调用它?

    我是因为某些 css/js 需要在部署前得到编译后的结果所以才执行了 precompile 去 public/assets 取文件。看来今后必须手动清理 public/assets 了。

  • #1 楼 @huacnlee Assets Pipeline 本身是不支持 sass 的,sass-rails 不需要任何配置默认就应该在 rails server 运行时自动编译。但在我的项目却没有效果,precompile 之后就有了效果。我现在咨询的是排查问题的思路、步骤。

  • #2 楼 @ane thanks. ruby-china 对新手来说还是重量级了

  • #4 楼 @hging 这个东西好像只处理的 图片和 css,有处理 js 的方法吗?

  • 友盟的推送质量怎么样?有人实践过吗?

  • 而且这个问题该 js 库源码都很难,谁能教教我这该怎么改:

    EmojiButton.prototype.renderMenu = function() {
      var $list, dir, html, name, opts, tpl, _i, _len, _ref;
      tpl = '<ul class="emoji-list">\n</ul>';
      opts = $.extend({
        imagePath: 'images/emoji/',
        images: EmojiButton.images
      }, this.editor.opts.emoji || {});
      html = "";
      dir = opts.imagePath.replace(/\/$/, '') + '/';
      _ref = opts.images;
      for (_i = 0, _len = _ref.length; _i < _len; _i++) {
        name = _ref[_i];
        html += "<li data-name='" + name + "'><img src='" + dir + name + ".png' width='20' height='20' alt='" + name + "' /></li>";
      }
      ……
    };
    
  • 有时候只能指定文件夹路径,,否则要去改某些 js 库的源码。

    coffee:
      window.glo_editor = new Simditor
        textarea: $('#editor')
        ...
        pasteImage: true
        emoji:
            imagePath: '/assets/emoji/'
    
  • @appell server 和 应用在 virtualbox 的 ubuntu 上。所以外网访问的任何端口都是访问的宿主机。不转发的话就跟 virtualbox 毫无关联了啊

  • #1 楼 @appell virtualbox 不转发端口的话怎么监听主机 8087 端口?

  • sublime text3 好像找不到 Theme 文件了,不知道去哪里了

  • #1 楼 @blacktulip 宿主机 80 端口用在别的站点了

  • 谢谢,,重新 useradd 了这个用户,,用 -s /bin/bash 参数就好了。看来是这个 useradd 命令默认 shell 不是/bin/bash。以前好像没遇到过这个问题。我是用的阿里云 ubuntu server

  • 我新建这个用户的命令是: useradd -d /home/zcj -G root -m zcj 只有这个用户有问题

  • #5 楼 @huacnlee 都安装了,包括 libiconv,是需要什么命令做一个激活么~~