Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ipepe
Last active January 10, 2017 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ipepe/83cd9fdbd5b71c26726ff112e6480444 to your computer and use it in GitHub Desktop.
Save ipepe/83cd9fdbd5b71c26726ff112e6480444 to your computer and use it in GitHub Desktop.
Setup ubuntu with ajenti v for Rails
sudo locale-gen "en_US.UTF-8"
sudo nano /etc/environment
#LC_ALL=en_US.UTF-8
#LANG=en_US.UTF-8
sudo reboot
adduser ajenti
usermod -a -G admin ajenti
apt-get autoremove && apt-get remove apache2*
apt-get install nginx
wget http://launchpadlibrarian.net/109052632/python-support_1.0.15_all.deb
sudo dpkg -i python-support_1.0.15_all.deb
rm python-support_1.0.15_all.deb
wget http://repo.ajenti.org/debian/key -O- | apt-key add -
echo "deb http://repo.ajenti.org/debian main main debian" >> /etc/apt/sources.list
apt-get update
apt-get install ajenti
service ajenti status
apt-get install ajenti-v ajenti-v-nginx ajenti-v-mysql ajenti-v-ruby-puma ajenti-v-mail
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment