1

Vagrant with Ubuntu, Ruby 2.0, Rails 4.0.1, Zeus 0.13.3.rc2

I'm going to the /vagrant directory then

export ZEUSSOCK=/tmp/zeus.sock
zeus start
Starting Zeus server
Unable to accept socket connection.

It looks like Zeus is already running. If not, remove .zeus.sock and try again.

I cannot find a .zeus.sock file anywhere.

zeus d
Can't connect to master. Run zeus start first.

Any ideas what I might be missing?

Kazmin
  • 1,003
  • 1
  • 10
  • 26

3 Answers3

2

I just resolved the issue for myself in a different fashion.

I was getting the remove .zeus.sock and try again error because I inadvertently was trying to start zeus in my home directory rather than the root of a rails project.

A simple cd fixed my issue, but I wasted a bunch time searching for a non-existent .zeus.sock before I figured out the problem.

bigmike7801
  • 3,908
  • 9
  • 49
  • 77
TCW
  • 21
  • 5
0

When I upgraded to 'zeus', ">= 0.13.4.pre2" it got fixed.

Kazmin
  • 1,003
  • 1
  • 10
  • 26
0

I got working if installed the gem 0.13.4.pre2 in my Ubuntu terminal:

/opt/ruby/bin/gem install zeus -v 0.13.4.pre2

After that I can use something as:

zeus start

And all zeus commands will be working fine.

Pedro Assumpcao
  • 109
  • 1
  • 3