Chris Oliver

Joined

292,750 Experience
93 Lessons Completed
295 Questions Solved

Activity

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Sure! I'd love to hear how it goes.

Posted in Deploy Ubuntu 12.04 Precise Pangolin Discussion

Sounds like an SSH authentication problem. Take a look at the people here who also had the same problem. https://github.com/capistra...

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Fantastic. :) Thanks for the tip. I'll make sure to get that fixed shortly.

Posted in Deploy Ubuntu 12.04 Precise Pangolin Discussion

Make sure you've got those javascript files loading in the asset pipeline. Development and production can be different because of how it compiles your javascript assets.

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Thanks Rich! Did you have to install the python-software-properties or software-properties-common package(s)? Also which version of ubuntu were you on? I'm surprised it didn't come with Ubuntu 13.10

Posted in Deploy Ubuntu 12.04 Precise Pangolin Discussion

Did you make sure to include the rbenv or rvm gems for capistrano and configuration?

Posted in Deploy Ubuntu 12.04 Precise Pangolin Discussion

I haven't, but it seems you're not the only one https://gist.github.com/Dev...

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

It's located inside your Rails application. It will be generated when you run the "rails new" command.

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

For that to work, you need to put your ~/.ssh/id_rsa.pub key into Github.

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Ideally you want to do this as your regular user. If you're root, you can do this instead:

su postgres
createuser aaa -s

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Are you a regular user or root when you ran this? I found this when googling it http://www.postgresql.org/m...

Posted in Rails 4.0 with MongoDB and Mongoid Discussion

Fantastic. I'll update the post.

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Yes, I think it used to ask before if you wanted to create a superuser but when I tried it again it didn't. Updated the instructions to include "-s". Thanks!

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Try using "postgresql-9.3" instead of 9.2. It's been a little while that 9.3 has been out so the repository may have removed support for the older version. If that works, let me know and I'll make sure to update the tutorial. I'll try to get time to run through the tutorial again on my own to verify anything else that's broken. Thanks! :)

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

See this for granting permission to a user inside of Postgres: http://www.cyberciti.biz/fa...

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

It's in there at the top of the Installing Rails section. :)

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Make sure you installed all the dependencies. The native extensions it needs to build are likely the sqlite3 ones.

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

You may want to make sure that the user you created has admin rights to create databases. That could be the problem as it looks like only the postgres user has "Create DB" permissions.

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Oh of course! Thanks for catching that. I'll make sure to update the tutorial.

Posted in Setup Ubuntu 13.10 Saucy Salamander Discussion

Did you install ruby with rbenv? If so, you need to run rbenv rehash to make the executable available.