Thema | Beschreibung |
---|---|
tomcat | https://help.ubuntu.com/12.04/serverguide/tomcat.html Man kann übrigens auch tomcat7 installieren |
mysql | https://help.ubuntu.com/12.04/serverguide/mysql.html |
courier-imap-ssl | https://help.ubuntu.com/community/Courier |
maildrop | http://manpages.ubuntu.com/manpages/intrepid/man1/maildrop.1.html |
Postfix und maildrop How To | http://www.postfix.org/MAILDROP_README.html |
Maildir Format | http://wiki2.dovecot.org/MailboxFormat/Maildir |
apache name based virtual host | http://askubuntu.com/questions/265300/how-do-i-setup-name-based-virtual-hosts-using-ubuntu-12-04 |
apt-get und Befehle zur Softwareinstallation
#Repository aktualisieren apt-get update #System Updates installeren apt-get upgrade #Paket installieren incl. Abhängigkeit apt-get install <paketname> #Paket deinstallieren apt-get remove <paketname> #Liste der installierten Pakete anzeigen dpkg -l
Sonstiges:
#Starten von Services als anderer User start-stop-daemon --start --exec /opt/confluence/bin/startup.sh --chuid tomcat7:tomcat7 --pidfile /opt/confluence/work/catalina.pid #Status laufender Services ?? #Stoppen eines Services start-stop-daemon --stop --pidfile /opt/confluence/work/catalina.pid --user tomcat7 --retry=TERM/200/KILL/50