Questions tagged [engineyard]

Engine Yard is a cloud application platform for Ruby based on Amazon Web Services.

Engine Yard is a cloud application management platform for deploying Ruby, PHP, Java and Node.js applications of all sizes on Amazon Web Service EC2 instances as well as on Windows Azure and Terremark.

Build in features include:

  • Automated deployment tools
  • Server customization with Chef
  • Cloning of whole environments
  • Application load balancing
  • Master-Slave MySQL replication
  • memcached

Environments can be as small as 1 server running the application and database to large environments with multiple application, database, and utility servers.

110 questions
0
votes
1 answer

Delayed Jobs workers getting timed out on engineyard

I think i'm having a problem where engineyard is adding a timeout to some of my delayed job workers, (seems to be 10 minutes). I have a copy process that can run for > 10 minutes and everytime it gets to that 10 minutes threshold the job is killed.…
Mysrt
  • 3,044
  • 2
  • 17
  • 14
0
votes
1 answer

how to start sidekiq on engineyard

i am shifting a rails3 app from heroku to engine yard. I want to know how to start(or restart) sidekiq on engine yard on each deployment? To check that sidekiq is working, i ssh to EY instance and manually start sidekiq. I want this process to be…
Prasad Surase
  • 6,486
  • 6
  • 39
  • 58
0
votes
2 answers

Engine Yard rollback a migration

I deployed a new feature to Engine Yard that had migrations. Of course I passed the migration flag and it worked successfully. But then I decided to take the feature out. Note: These migrations removed some columns I then rolled back on github…
Tom Prats
  • 7,364
  • 9
  • 47
  • 77
0
votes
2 answers

Redis Connection issues on EngineYard

Hey I'm trying to connect my app to redis on a single engineyard instance: redis-cli ping gets back pong and the server which is included as a gem in the app seems to be running. When I manually run bundle exec foreman start here is the…
tmartin314
  • 4,061
  • 10
  • 39
  • 60
0
votes
2 answers

production-only error ActionView::Template::Error (can't convert Symbol into Integer)

I am attempting to deploy a site onto engineyard and I keep getting an error that seems to be a data formatting error. This only happens when deployed as production onto the server cluster. using the same DB and codebase locally or on a VPS we have…
0
votes
1 answer

Engineyard ey web enable command

I am using the engineyard gem, trying to disable the maintenace page. When I use either of the two commands: ey web enable ey web disable It says "running command on deploy@..." then I get an error: undefined method 'ssh_type' for…
Krishna
  • 133
  • 1
  • 10
0
votes
1 answer

How to access EngineYard database from local machine?

I have created a Rails application and hosted it on EngineYard. Now I want to manually insert one record into my database.[Database: MYSQL] How can I access EngineYard's database from my local machine? P.S: I have came across this article and I…
Sri Harsha Kappala
  • 3,339
  • 26
  • 23
  • 30
0
votes
2 answers

How to design effective databases for a multi tenant SaaS product?

My team and I are building a SaaS product which is to be used by multiple businesses across the world. To put it simply, our software does some basic accounting for them and alerts them if some document is due for renewal. The problem is, there may…
Manikandan
  • 40
  • 7
0
votes
1 answer

Engine Yard Push/Load Database

I am thinking of deploying my Rails app to Engine Yard. I have a MySql db with all of the data for the site. When I deploy to engine yard cloud, will I be able to "push" this database to the server somehow? Something like this…
Krishna
  • 133
  • 1
  • 10
0
votes
1 answer

engineyard-local and Development workflow

I'm moving my rails app from Dreamhost to EngineYard, then i'm testing the engineyard-local tool.. So, i'm really confused about, there's my questions: i'll develop inside the virtual machine? using ey-local ssh command; its necessary to use…
Nando
  • 747
  • 7
  • 23
0
votes
2 answers

How to edit engine yard database.yml file?

My application staging environment is using mysql adapter in database.yml file. but i have included mysql2 gem in my gemfile, due to which i am having msql adapter error. file is like this? staging: adapter: mysql database: myapp username: …
Ramiz Raja
  • 5,942
  • 3
  • 27
  • 39
0
votes
1 answer

Engine yard ruby version

i am deploying rails 3.2.6 application to engineyard from CLI When i run command ey deploy -e staging following error occurs ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions into the /usr/lib/ruby/gems/1.8…
Ramiz Raja
  • 5,942
  • 3
  • 27
  • 39
0
votes
1 answer

SQLite3::NotADatabaseException (file is encrypted or is not a database) in production (Engineyard)

I am trying to parse a sqlite3 database in rails 3 (using sqlite3-ruby gem). The database to parse is coming from a file upload. Here is my controller code: require 'fileutils' require 'sqlite3' tmp = params[:file_upload][:my_file] file =…
mathieurip
  • 547
  • 1
  • 6
  • 16
0
votes
1 answer

Error when I make a connection through sequel - mysql2 on AmazonWs

My rb file is simple like this: require 'rubygems' require 'mysql2' require 'sequel' Sequel.connect(:adapter => 'mysql2', :database=>'xxx', :user => 'xxx', :password => 'xxxxxx', :host => 'xxxxxxxx.compute-1.amazonaws.com') when I ran this file I…
0
votes
0 answers

rails and engineyard

I am running a rails application on engine yard. Users can upload images that are then returned later. The issue is that we currently have 2 instances running. Just wondering what the best course of action is since currently when an image is…
Purple Hexagon
  • 3,538
  • 2
  • 24
  • 45