Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
The ruby installation on the Rail on Rails One-Click application is managed by RVM. If you run which bundle you can see that the binary is installed to:
# which bundle
/usr/local/rvm/gems/ruby-2.1.3/bin/bundle
The rails user doesn’t have a login shell, so you’d need to manually source the file /etc/profile.d/rvm.sh to access the Ruby installation.
You can set a proper login shell for the rails user by running:
chsh -s /bin/bash rails
Then switch to the user with: su - rails From man su
-, -l, --login
Provide an environment similar to what the user would expect had the user logged in directly.
For more info on the One-Click application, check out: