Nginx Installation · 1 min read · Feb 06, 2026

Installieren Sie Nginx auf CentOS 5.5 mit SSL, PCRE, GeoIP, Zlib, Gzip und DAV-Unterstützung

Installieren Sie Nginx auf CentOS 5.5 mit SSL, PCRE, GeoIP, Zlib, Gzip und DAV-Unterstützung

Nginx (ausgesprochen “engine x”) ist ein kostenloser, Open-Source, leistungsstarker HTTP-Server. Nginx ist bekannt für seine Stabilität, seinen reichen Funktionsumfang, seine einfache Konfiguration und seinen geringen Ressourcenverbrauch. Dieses Tutorial zeigt, wie Sie Nginx auf einem CentOS 5.5-Server mit SSL, PCRE, GeoIP, Zlib, Gzip und DAV-Unterstützung kompilieren und installieren können.

Ich gebe keine Garantie, dass dies bei Ihnen funktioniert!

Vorinstallation

Zuerst installieren wir die Pakete httpd-devel, pcre, pcre-devel, zlib, zlib-devel, perl, geoip und geoip-devel wie folgt:

yum install -y httpd-devel pcre perl pcre-devel zlib zlib-devel GeoIP GeoIP-devel

Benötigte Pakete herunterladen

cd
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.10.tar.gz
wget http://zlib.net/zlib-1.2.5.tar.gz
wget ftp://ftp.openssl.org/source/openssl-0.9.8o.tar.gz

Jetzt müssen Sie diese Dateien entpacken.

tar -xvf zlib-1.2.5.tar.gz
tar -xvf pcre-8.10.tar.gz
tar -xvf openssl-0.9.8o.tar.gz

Nginx-Quellpaket herunterladen

Sie müssen das Nginx-Quellpaket von http://nginx.org/ herunterladen.

cd
wget http://nginx.org/download/nginx-0.7.67.tar.gz
tar -xvf nginx-0.7.67.tar.gz
cd nginx-0.7.67

Nginx kompilieren und installieren

Jetzt können Sie Nginx mit den folgenden Befehlen kompilieren und installieren:

./configure –user=nginx –group=nginx –prefix=/usr/share/nginx –sbin-path=/usr/sbin/nginx –conf-path=/etc/nginx/nginx.conf –error-log-path=/var/log/nginx/error.log –http-log-path=/var/log/nginx/access.log –http-client-body-temp-path=/var/lib/nginx/tmp/client_body –http-proxy-temp-path=/var/lib/nginx/tmp/proxy –http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi –pid-path=/var/run/nginx.pid –lock-path=/var/lock/subsys/nginx –with-http_ssl_module –with-http_realip_module –with-http_addition_module –with-http_sub_module –with-http_dav_module –with-http_flv_module –with-http_gzip_static_module –with-http_stub_status_module –with-http_perl_module –with-mail –with-mail_ssl_module –with-cc-opt=’-m32 -march=i386’ –with-openssl=/root/openssl-0.9.8o –with-pcre –with-pcre=/root/pcre-8.10 –with-zlib=/root/zlib-1.2.5 –with-http_geoip_module

Sie können weitere Optionen mit dem folgenden Befehl herausfinden:

./configure –help

Jetzt ausführen:

make
make install

Konfigurationszusammenfassung

nginx path prefix: "/usr/local/nginx"
nginx binary file: "/usr/local/nginx/sbin/nginx"
nginx configuration prefix: "/usr/local/nginx/conf"
nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
nginx pid file: "/usr/local/nginx/logs/nginx.pid"
nginx error log file: "/usr/local/nginx/logs/error.log"
nginx http access log file: "/usr/local/nginx/logs/access.log"
nginx http client request body temporary files: "client_body_temp"
nginx http proxy temporary files: "proxy_temp"
ginx http fastcgi temporary files: "fastcgi_temp"

Nginx-Server starten

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

Testen

/usr/local/nginx/sbin/nginx -V

Share: X/Twitter LinkedIn

Erhalte neue Beiträge in deinem Posteingang.

Kein Spam. Jederzeit abmelden.