Vdradmin AM
K (→Links: merge) |
(→Tipps: Distributionsspezifisch -> gruppiert...) |
||
Zeile 63: | Zeile 63: | ||
</pre> | </pre> | ||
+ | ====Distributionsspezifisch==== | ||
+ | ====[[Mandriva]]==== | ||
httpd2.conf ([[Mandriva]]: /etc/httpd/conf/httpd2.conf): | httpd2.conf ([[Mandriva]]: /etc/httpd/conf/httpd2.conf): | ||
<pre> | <pre> |
Version vom 3. April 2006, 16:45 Uhr
Inhaltsverzeichnis |
Beschreibung
VDRadmin AM (ist eine erweiterung / eigener Zweig von vdradmin).
Es handelt sich um einen Daemon welcher mit dem VDR kommuniziert und Informationen in einem Internet-Browser zur Verfügung stellt. Er wird aufgerufen mit der Adresse des VDR-Rechners unter Hinzufügung der Portnummer 8001. In der Konfigurationsdatei kann eingestellt werden, welche Rechner Zugriff auf den VDR-Admin erhalten. Eine Authentifizierung ist ebenfalls notwendig, die aber nach Einspielen eines Patch für verschiedene Rechner abgeschaltet werden kann.
Bilder
Softwareanforderungen
- Browser auf der Client Seite
- Perl (+ einige Perl::Module)
Installation
cd $SOURCEDIR tar jxvf vdradmin-<VERSION>-am<VERSION>.tar.bz2 cd vdradmin-<VERSION>-am<VERSION> LANG="de_DE" ./install.sh make install
Probleme
Tipps
Aufruf von VDR-Admin
Man kann sich für den Aufruf von VDR-Admin eine Verknüpfung auf den Desktop legen.
Aber der größte Vorteil ist das man so mit die User/Pass abfrage umgehen kann.
Bei mir sieht der Link so aus:
http://linvdr:linvdr@192.168.0.2:8001
Aus dem Internet erreichen
Standardpasswort für VDR-Admin ändern!
Sicherstellen, dass das Proxy-Modul geladen wird
# LoadModule proxy_module /usr/lib/apache/1.3/libproxy.so
in
LoadModule proxy_module /usr/lib/apache/1.3/libproxy.so
ändern
Bei installiertem Apache in der httpd.conf diese Zeilen hinzugefügen:
ProxyPass /vdr/vdradmin/ http://VDRip:8001/ ProxyPassReverse /vdr/vdradmin/ http://VDRip:8001/
Distributionsspezifisch
Mandriva
httpd2.conf (Mandriva: /etc/httpd/conf/httpd2.conf):
<IfModule mod_proxy.c> # ProxyRequests are only needed when you want to use apache als squid replacement ProxyRequests Off ProxyPass /vdradmin/ http://127.0.0.1:8001/ </IfModule>
Mandriva: /etc/httpd/conf.d/30_mod_proxy.conf
<Proxy *> Order deny,allow Deny from all # Allow from .your-domain.com # diesen Eintrag den eigenen Gegebenheiten anpassen Allow from 192.168.1 </Proxy>