You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by Apache Wiki <wi...@apache.org> on 2007/04/02 01:08:50 UTC

[Nutch Wiki] Update of "GettingNutchRunningWithSocksProxy" by VinhKhucNgoc

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Nutch Wiki" for change notification.

The following page has been changed by VinhKhucNgoc:
http://wiki.apache.org/nutch/GettingNutchRunningWithSocksProxy

New page:
= Running Nutch with SOCKS proxy =

Created by Vinh Khuc Ngoc

== Problem ==

Running Nutch with SOCKS proxy is necessary in some situations, but Apache Http Client 3.0 still doesn't support SOCKS. 
 
== Solution ==

Since SOCKS protocol is supported in JDK 1.4.2, there is a "quick and dirty" way to make Nutch work with SOCKS, that is adding properties '''socksProxyHost''' and '''socksProxyPort''' when we call JVM in bin/nutch script: 
 
{{{
exec "$JAVA" -DsocksProxyHost=<host> -DsocksProxyPort=<port> $JAVA_HEAP_MAX $NUTCH_OPTS -classpath "$CLASSPATH" $CLASS "$@"
}}}
 
Just keep waiting for Apache Http Client 4.0 with SOCKS support.

Here is the issue: [http://issues.apache.org/jira/browse/HTTPCLIENT-334]