Linux Notes

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

*************Squid Proxy**************

# yum groupinstall "Development Tools"


# tar -xzvf squid-3.4.7.tar.gz
# cd squid-3.4.7
# ./configure --with-included-ltdl
# make all
# make install
# /usr/local/squid/sbin/squid -k parse
# /usr/local/squid/sbin/squid -z
# /usr/local/squid/sbin/squid -NCld1
*************MySQL Server*************
mysql> SET GLOBAL expire_logs_days = 3;
mysql> PURGE BINARY LOGS TO 'mysql-bin.000223';
mysql> PURGE BINARY LOGS BEFORE '2014-09-22 22:46:26';
*************NTP Server***************
# ntpdate -s -b -p 8 -u 10.89.4.43
ProxyPass /google/ http://www.google.com.au/
ProxyPassReverse /google/ http://www.google.com/
ProxyHTMLURLMap http://www.google.com /google/
<Location /google/>
ProxyPassReverse /
SetOutputFilter proxy-html
ProxyHTMLURLMap / /google/
ProxyHTMLURLMap /google/ /google/
RequestHeader unset Accept-Encoding
</Location>

You might also like