Foreman is a manager for Procfile-based applications. Its aim is to abstract away the details of the Procfile format, and allow you to either run your application directly or export it to some other process management format.

learn more… | top users | synonyms

0
votes
1answer
10 views

Will Heroku ignore the .env file?

Our team is using foreman for development and .env files to preassign development ports to each piece of a service oriented application. It dramatically simplifies things for this file to just live ...
0
votes
0answers
31 views

Add to NODE_PATH on Heroku/Foreman

Is it possible to add NODE_PATH in Heroku/Foreman, I can't seem to find anything in the docs, and I'd like to load custom modules from my lib directory. I've tried the following in my .env file and ...
0
votes
0answers
33 views

django heroku foreman start error code 1

Following the getting started with django heroku page verbatim. https://devcenter.heroku.com/articles/django On the foreman start step, foreman is not running correctly. ProcFile contents, web: ...
1
vote
0answers
29 views

Foreman and exporting execution of ruby file to upstart

I am fairly new to the use of foreman on a production environment setup and wanted to see if perhaps someone could offer some needed insight. I currently am using foreman to run a a simple pure ruby ...
0
votes
0answers
6 views

Upstart email notifications

I exported an upstart script via foreman, and I added a line to the .conf file to send an email if the process was restarted. However, when ever I kill the process to test the functionality, it spams ...
0
votes
1answer
61 views

Gunicorn Connection in Use: ('0.0.0.0', 5000)

I installed redis this afternoon and it caused a few errors, so I uninstalled it but this error is persisting when I launch the app with foreman start. Any ideas on a fix? foreman start 22:46:26 ...
1
vote
0answers
72 views

RSolr::Error::InvalidRubyResponse - 200 OK

I am getting following error even after starting forreman and starting sunspot:solr : RSolr::Error::InvalidRubyResponse - 200 OK Error: java.lang.NullPointerException at ...
0
votes
0answers
27 views

How to update class parameters in Puppet Foreman?

I would like to be able to update the class parameters for a specific host through the foreman api. I can't seem to find a way to do this despite hours of google searching and trial/error. For ...
0
votes
1answer
29 views

Ruby how to extend method to accept new parameter

I hope someone can help me with this. I have this method in ruby: def puppetrun_oneClass! ProxyAPI::Puppet.new({:url => puppet_proxy.url}).runSingle fqdn end which I then call within this ...
1
vote
0answers
104 views

How do I troubleshoot a “Bad file descriptor” message in Foreman?

Using a Windows 7 64-bit machine with the latest railsinstaller.org installer and no previous installations, I am having a problem when I follow these steps in the Git Extensions BASH terminal. I ...
0
votes
0answers
100 views

Trying to run Django app on Gunicorn locally using Foreman

I'm following Getting Started with Django on Heroku tutorial When I'm trying to run Django app on the Gunicorn using Foreman, i get next error traceback: 09:23:33 web.1 | started with pid 7012 ...
0
votes
1answer
114 views

Gemfile and Bundler error in foreman when doing bundle install

I'm trying to install foreman hooks but I get There was an error in your Gemfile, and Bundler cannot continue. when running bundle install foreman version 1.1 [root@foreman foreman]# bundle update ...
0
votes
0answers
13 views

Foreman constantly refeshing

I'm trying to run a small facebook app locally in Python using foreman. Currently, I'm loading exampleapp.py, which is the default app generated when a facebook app is created. When I try to run the ...
0
votes
0answers
23 views

how to start spork with foreman

I'm trying to use foreman to start an instance of unicorn and spork. Then guard should connect to existing instance of spork. Procfile: web: bundle exec unicorn_rails -c ./config/unicorn.rb ...
0
votes
0answers
97 views

Installing Foreman - ERROR 107 ERR_SSL_PROTOCOL_ERROR

I'm trying to install Foreman in a VM Ubuntu Server 12.04, so I followed this manual page : http://theforeman.org/manuals/1.1/index.html#3.InstallingForeman I'd rather install with the Installer, but ...
3
votes
1answer
129 views

Django serves static files with runserver but not with foreman

I have the opposite problem to the one described in this question. My Django site works correctly when the server is started using manage.py runserver but static files are not served when the server ...
1
vote
3answers
64 views

Getting error while foreman start in Node.js

getting following message if I try to start foreman. I am not sure what should I do further to solve. I guess its express related error but still any help to solve this error will be really really ...
2
votes
2answers
46 views

Background worker tasks taking a lot of time due to Rails env starting

I'm running rake tasks each minute that are instantiating the Rails environment about every minute presently as workers with Foreman and a cron gem. I'm concerned as just firing up Rails alone ...
-1
votes
1answer
135 views

How to Start a Thin Socket-Backed Cluster from Foreman [closed]

I'm trying to set up Discourse behind an Nginx proxy, served via Thin and started via Foreman. So I have a Procfile like so: web: thin start -p $PORT --socket tmp/sockets/thin.sock sidekiq: bundle ...
0
votes
2answers
126 views

Running Gunicorn with Foreman

If I do runserver or gunicorn straight from the commandline, the website works fine. However, if I try to run gunicorn using Foreman as specified in the Heroku documentation: web: gunicorn ...
0
votes
2answers
78 views

Remove Heroku completely

Can you tell me how to remove heroku account and apps from computer as well as from their website completely. I want to start from scratch as heroku command-line client is giving me unknown errors, ...
0
votes
1answer
60 views

'require': no such file to load (LoadError): when running foreman

I've got a foreman Procfile that runs a ruby script: concat: ruby bin/compile_scripts_for_dev_automatically.rb When I run the script, I get the following error: ...
1
vote
2answers
54 views

How start multiple rails app servers with a ruby script

I'm writing a ruby script to start more than one rails server, but I'm running into a few problems: When I programmatically cd into different projects, their respective .rvmrc files aren't ...
2
votes
1answer
79 views

Can't stop foreman

I have the following Profile that I use with foreman to do development work for a heroku site: web: gunicorn project_name.wsgi -b 0.0.0.0:$PORT worker: python manage.py rqworker default redis: ...
0
votes
0answers
24 views

Realize Web interface for foreman operations

I advice in advance that my knowledge in ruby language and Foreman are limited but I'm willing to study it. My task is to create a web interface where the common user insert some specific parameters, ...
0
votes
0answers
61 views

Rails worker using Procfile and foreman

I am building a Twitter Analytics app with Rails. I am using a worker process to stream tweets and store then in database and analyse them. I used foreman with following Procfile web: bundle exec ...
0
votes
1answer
144 views

Starting Rails with Foreman and ruby 2.0.0

I'm just upgrading a Rails app to Ruby 2.0.0, deploy to Heroku works fine. ruby "2.0.0" is specified in the Gemfile, but when I try to start Rails locally using bundle exec foreman start I get... ...
3
votes
3answers
609 views

Environment variables locally and Heroku

I have a sinatra app in which i have a yml file to set environment variables, i call them using this method module MyConfig def config environment = ENV["RACK_ENV"] || "development" ...
13
votes
2answers
976 views

Can't start foreman in Heroku Tutorial using Python

I have been attempting to complete this tutorial, but have run into a problem with the foreman start line. I am using a windows 7, 64 bit machine and am attempting to do this in the git bash terminal ...
0
votes
0answers
83 views

foreman can't find java

I'm trying to use foreman to run a java app locally which deploys fine to heroku. My Procfile looks like this web: java $JAVA_OPTS -cp target/classes;target/dependency/* Start but when i do ...
1
vote
3answers
84 views

Faye server not started by foreman

I am trying to start faye with foreman. My procfile lookd like this: web: bundle exec rails server thin -p $PORT -e $RACK_ENV worker: bundle exec sidekiq redis: bundle exec redis-server faye: bundle ...
0
votes
2answers
214 views

loading environment variables in rails console

I think this is a little easy question! I'm using .env file to keep all my environment variables. BTW i'm using foreman. Unfortunately, these environment variable are not being loaded when running ...
0
votes
0answers
26 views

foreman giving a tty ouput suspended error

I'm trying to start foreman under port 80 using sudo foreman start -p 80 It returns: [1] + 2524 suspended (tty output) sudo foreman start -p 80 I've added $stdout.sync = true to the ...
0
votes
1answer
62 views

How to run a local tomcat cluster on a shared socket?

Recently I came across a web server for Ruby known as Unicorn, it had a simple yet brilliant idea: When the Unicorn master starts, it loads our app into memory. As soon as it’s ready to serve ...
0
votes
1answer
153 views

Why does a Foreman export for Upstart run 3 unix processes?

I am running foreman export upstart which generates 3 conf files. Even if I export with a concurrency value of one, I can see three unix processes being started: $ sudo start tomcat tomcat ...
0
votes
1answer
306 views

Upstart script for Tomcat respawn on Ubuntu

I'm using foreman export upstart /etc/init to setup a tomcat app server, such that availability can be monitored and maintained in Ubuntu. But there are a few challenges that I would like some advice ...
0
votes
1answer
105 views

Passing Environmental Variables into sh in Procfile

I have a Procfile containing: someprocess: sh -c 'cd /Users/someuser/path/to/sinatra/app && rackup -p 4567' I need to break this path out so that it is configured via an environmental ...
0
votes
1answer
116 views

Heroku Procfile for WordPress blog

I'm setting up a WordPress blog on Heroku. When I run foreman start to run the site locally, I get an error about a missing Procfile. I've written Procfiles for Python web apps, but I'm on ...
0
votes
1answer
261 views

Setting number of unicorn workers from web using foreman vs from unicorn itself

I'm kind of stuck between setting the number of unicorn workers from foreman setting web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb then while running foreman start -c web=16 or unicorn ...
1
vote
1answer
119 views

Upstart and init.d priority

I use foreman to run my node.js applications on the production servers (ubuntu server 12). Foreman has a great tool to create scripts for upstart. The problem is that when I reboot a server, my ...
0
votes
2answers
221 views

Flask Mongolab error: TypeError: argument of type 'NoneType' is not iterable

I'm having this problem when I do "foreman start" on my Flask app. (venv)Macbook-err:Example ld$ foreman start 14:01:50 web.1 | started with pid 1441 14:01:50 web.1 | Traceback (most recent call ...
0
votes
0answers
25 views

QUEUE=* not found error on Foreman

I'm trying to use foreman to run my app locally, using the same Procfile I use when deploying my app on Heroku, where it works perfectly. However, when running foreman start on my terminal, foreman ...
0
votes
0answers
158 views

Node.js: Foreman + Nodemon behaviour on Windows

After hours of debugging, I finally isolated why my web app was crashing on Windows. An NPM dependency is sometimes logging messages with console.error, and this seems to have different behaviours on ...
0
votes
0answers
86 views

procfile for heroku and development

I am little confused on the usage of the Procfile on development in local machine and in heroku In order to start rails in my local machine I need web: bundle exec rails server -p $PORT worker: ...
0
votes
1answer
208 views

How to print debug messages with Sinatra/Foreman?

I'm just starting out with Ruby and with the sinatra framework. I've got a setup going now with heroku and I'm totally amazed how well it works. There is just one thing that I can't figure out. How do ...
0
votes
3answers
293 views

Issues Running Heroku Django Tutorial

I've been following the steps in the Heroku-Django tutorial (https://devcenter.heroku.com/articles/django) to get a proof-of-concept version of a Django app running on Heroku and so far am getting ...
0
votes
1answer
103 views

How do I update 0.0.0.0:5000 to show changes in app.py on foreman, ubuntu

So I'm learning the ropes with heroku dev on ubuntu and I've run into something that was completely automatic for me while working with PHP. How do you refresh the localhost to see the updates you ...
0
votes
1answer
297 views

Trying to test django app locally with foreman

I'm working on a django app and trying to use foreman to test my app locally before pushing to heroku. I can successfully run it using python manage.py server. However when running it using forman it ...
5
votes
2answers
243 views

Foreman Cannot Start Nginx, But I Can Start it Manually. Why?

I am currently running Foreman on staging (Ubuntu) and once I get it working will switch to using upstart. My Procfile.staging looks like this: nginx: sudo service nginx start unicorn: bundle exec ...
0
votes
1answer
112 views

Foreman not finding rake tasks; error: rake tasks 'not found'

Using Foreman on my rails application with Ruby 1.9.3 just fine. Switched to JRuby and now, as an example, get : 18:22:16 solr.1 | ...

1 2 3 4