Este conteúdo não está disponível no idioma selecionado.
7.8.10. Configuring Bundler
Run the following command to verify that Bundler can find the necessary Ruby modules (or "gems") to run the broker Rails application:
cd /var/www/openshift/broker scl enable ruby193 'bundle --local'
# cd /var/www/openshift/broker
# scl enable ruby193 'bundle --local'
This command produces the following output:
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
Configure the broker to start when you reboot Host 1:
chkconfig openshift-broker on
# chkconfig openshift-broker on
Note
If you use the kickstart or bash script, the
configure_controller
function performs these steps.
Start the broker immediately:
service httpd start service openshift-broker start
# service httpd start
# service openshift-broker start