running on macbook pro 10.9.5, except for Config
Support Ticket
+status
acknowledged
+tags
+issues
Got it running - see below - but the configuration link hangs the server http://localhost:3000/Config
any idea?
- Okay, using the instructions on http://wagn.org/get_started
- with a bunch of false starts i got it to run on my macbook pro 10.9.5
- using the wagn server, it all seems to work!
- except: the configuration link just hangs: http://localhost:3000/Config
- Since you don't have a mac section, here is what i used to get it running (using homebrew)
- ruby (installed already, ruby 2.0.0p481)
- $ brew install curl
- $ gem install bundler
- $ brew install imagemagick
- $ brew link imagemagick
- $ brew install mysql
- $ gem install mysql2
- # lots of problems with
- $ mysql.server start
- # resulted in a lot of: ERROR! The server quit without updating PID file (/usr/local/var/mysql/data/my-iMac.local.pid)
- # i tried a bunch of different solutions, changing permissions on /usr/local/var/mysql
- # but restarting computer was the thing that seemed to fix it!
- # then could run the following:
- $ mysql.server restart
- $ gem install wagn
- $ wagn new mysite
- # then find the right socket for mysql
- $ mysqladmin variables | grep socket
- # and edit "mysite/config/database.yml"
- # to change all the "socket: " to point to the right place
- # in my case from: "/private/tmp/mysql.sock" to "/tmp/mysql.sock"
- # also good to set mysql password and change it in database.yml
- $ cd mysite
- $ wagn seed
- $ wagn server
- # working! (except for /Config)
- # now to get running on apache....