http://httpd.apache.org/docs/2.0/mod/mod_proxy.html http://www.apachetutor.org/admin/reverseproxies LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so ProxyRequests Off “” Order deny,allow Allow from all ProxyPass /foo http://ftp.ntua.gr/pub/linux/centos ProxyPassReverse /foo http://ftp.ntua.gr/pub/linux/centos
Category: IT
Nagios: Access to windows event logs
http://www.steveshipway.org/software/f_nagios.html This a nagios event log agent for windows. Also a few links to other nagios tools. To be checked for compatibility with nagios 3.x. The same guy has writen a book for using mrtg with rrd and routers2. Him and Toebi Oetiker provide links to eachother websites. Also a few more links: http://exchange.nagios.org/directory/Plugins/Uncategorized/Operating-Systems/Windows-NRPE/Eventlog-Checker-%252D-dotNET-Based/details http://www.steveshipway.org/forum/viewtopic.php?f=22&t=404…
use proxy with nagios check_http
The following is an attempt to answer the following question: I want to check if a website is up through nagios check_http command. How does it work especially if you want to go through proxy authentication. The basic authentication for the check_http command is resolved using the -a parameter with user:password and the basic proxy…
Nagios Links
http://www.nagios.org/ Nagios Home Page Παλιά εγκατάσταση NRPE για Debian (Ubuntu) : Να ελεγθεί για αλλαγές Nagios Plugins Nagios Addons Nsclient addon homepage Using nsclient with check_nt guide for monitoring windows servers (nagios doc) Another guide for nsclient Δείτε αυτό πριν την εγκατάσταση check_http & bigippool for monitoring websites : Σημείο εκκίνησης για ελέγχους http Object…
Retrieve and Restore Cisco configs with SNMP
http://www.cisco.com/en/US/tech/tk648/tk362/technologies_configuration_example09186a0080094aa6.shtml
Mysql remote access
Your mysql configuration file is probably /etc/my.cnf Make sure your server is running. If not start it with /etc/init.d/mysql start Enter mysql command line mode: mysql -u root -p Your first password should be blank. You then need to enable remote access with the following command, replace where necessary: mysql> GRANT ALL PRIVILEGES ON *.*…
Howto Install Mysql Database Server with Phpmyadmin Frontend
I took this from here http://www.ubuntugeek.com/howto-install-mysql-database-server-with-phpmyadmin-frontend.html MySQL is a widely used and fast SQL database server. It is a client/server implementation that consists of a server daemon (mysqld) and many different client programs/libraries. Installing Mysql database in Ubuntu sudo aptitude install mysql-server mysql-client libmysqlclient15-dev This will complete the installation of mysql server 5.0.45 in ubuntu…