Ajenti Server Dashboard auf Raspian korrekt installieren

22. Februar 2015

Dank einem netten Kerl bin ich auf dieses Dashboard gestoßen. Ich formuliere es mal als eine Art Mini Plesk. :D Automatische Installation: Die Automatische Installation geht mit diesem Script hier. curl -s http://huskynarr.de/files/scripts/ajenti.sh | bash Das Script selbst sehr ihr hier, wenn ihr Ideen, Tipps & mehr habt, bin ich offen für Anregungen. #!/bin/bash if […]

Ajenti Server Dashboard auf Raspian korrekt installieren
screencapture-192-168-178-23-8000
Dank einem netten Kerl bin ich auf dieses Dashboard gestoßen. Ich formuliere es mal als eine Art Mini Plesk. :D Automatische Installation: Die Automatische Installation geht mit diesem Script hier. curl -s http://huskynarr.de/files/scripts/ajenti.sh | bash Das Script selbst sehr ihr hier, wenn ihr Ideen, Tipps & mehr habt, bin ich offen für Anregungen. #!/bin/bash if [ "$(id -u)" != "0" ]; then echo "This script must be run as root" 1>&2 exit 1 fi echo ':: Installing repo key' wget http://repo.ajenti.org/debian/key -O- | apt-key add - echo ':: Adding repo entry' echo "deb http://repo.ajenti.org/debian main main debian" >> /etc/apt/sources.list.d/ajenti.list echo ':: Updating lists' apt-get update echo ':: Install Pyhton Requirements' apt-get install python-pip python-dev libevent-dev pip install -U gevent pip install greenlet==dev pip install psutil echo ':: Installing package' apt-get install -y ajenti echo ':: Done! Open https://$HOSTNAME:8000 in browser and have Fun!' Manuelle Installation: Die manuelle Installation ist genau gleich. Erst einmal fügen wir das Repository und den dazugehörigen Key hinzu: sudo wget http://repo.ajenti.org/debian/key -O- | apt-key add - sudo echo "deb http://repo.ajenti.org/debian main main debian" >> /etc/apt/sources.list Wir installieren die Phyton Anforderungen: sudo apt-get update sudo apt-get install python-pip python-dev libevent-dev sudo pip install -U gevent sudo pip install greenlet==dev sudo pip install psutil Und nun installieren wir ajenti selbst: sudo apt-get install ajenti Der Standardport ist 8000. Diesen könnt ihr in der Konfiguration ändern, dies ist eine Json Datei in /etc/ajenti/config.json. Standard Login Daten sind als Username: root und als Passwort: admin. Optional: Ihr könnt noch Optional folgende Plugins installieren, diese sind immer gut. sudo apt-get install mdadm samba-tools smartmontools munin hddtemp lm-sensors ipmitool Diese seht ihr auch ebenfalls unter Plugins aufgelistet.

Kommentare

Kommentare werden geladen...

Weitere Beiträge