Apache Installation (CentOS)

Hallo Jungs,

das Thema Apache splitte ich in mal in mehrere kleine Artikel, denn er ist ja sooo modular…

Apache Installation (CentOS)

Falls mal auf die Idee kommt, hmm so ne Website wär doch was Nettes – hier folgen die Installations-Beispiele unter CentOS.
Je nach bereits angewendeter Installation werde ich den Artikel ab und zu aktualisieren, also nicht wundern wenn er noch etwas kurz ist.

Im Vorhinein:
Grundmodul: httpd (Apache – atm 2.2)
Zusatzmodule: mod_* (mod_php, mod_perl, etc.)
Zusatzdienste: mysql-server, etc. (Beinhaltet nur den Server ohne Clientsoftware…)

Variante für Apache mit PHP und MySQL-Datenserver:

yum install httpd mod_ssl php php-mysql mysql-server

Standard-Pfade/Dateien des Apache (ggf. unter CentOS):
Konfigurationsdateien-Serverroot: /etc/httpd/
Log-Dateien: /var/log/httpd/
Apache-Konfiguration: /etc/httpd/conf/httpd.conf
Zusatzkonfigurationen: /etc/httpd/conf.d/
SSL-Grundkonfiguration: /etc/httpd/conf.d/ssl.conf
PHP-Einbindung: /etc/httpd/conf.d/php.conf
PHP-Konfiguration: /etc/php.ini
Willkommens-Seite-zum-deaktivieren: /etc/httpd/conf.d/welcome.conf

Interessante Zusatzprogramme wären:
DNS-Tools wie nslookup: bind-utils
IP-Routenverfolgung: traceroute
Autostart-Manager für Dienste: ntsysv
Client für den MySQL-Server: mysql-clients
Texteditor: nano

Weiteres folgt!