Posts

Showing posts with the label proxy

Using IIS ARR as a Reverse Proxy for Lync Server 2013

Image
Using IIS ARR as a Reverse Proxy for Lync Server 2013 There are several nice guides available on how to configure IIS ARR as a Reverse Proxy for Lync. For example: Using ARR for Reverse Proxy with Lync 2013 Using IIS ARR as a Reverse Proxy for Lync Server 2013 Installing and configuring IIS ARR Reverse Proxy Using IIS Application Request Routing (ARR) as a TMG Replacement All these guides will take you through the steps of installing ARR, creating a server farm and configuring caching, proxy, and routing rules for the farm.   When adding a server to the server farm you need to specify on which ports the reverse proxy should pass on the traffic to the internal side. In Lync we have internal webservices, to be used by internal clients using ports 80 and 443, and we also have external webservices (i.e. an IIS Web site) using ports 8080 and 4443. Hence, you should set these ports to 8080 and 4443, and also make sure your internal firewall allows this communication. Now once this server...

Using Pentaho Marketplace over a proxy or server w o internet

Image
Using Pentaho Marketplace over a proxy or server w o internet Using the Pentaho Marketplace over a proxy Theres a known issue with the Pentaho marketplace when used on a server that has no internet connection. The issue is that... it doesnt work. This is what you get: Well, since the release of pentaho 5.1, not anymore! There was a code change that allowed this to be possible. What we need is to make sure we define the following java environment variables to the start of pentaho, eg, by editing the start-pentaho.sh or whatever method you use to start it: http.proxyHost : the host name of the proxy server http.proxyPort : the port number, the default value being 80. http.nonProxyHosts :a list of hosts that should be reached directly, bypassing the proxy. This is a list of patterns separated by |. The patterns may start or end with a * for wildcards. Any host matching one of these patterns will be reached through a direct connection instead of through a proxy. For authentication, theres...

Using Accumulo Proxy From Python

Using Accumulo Proxy From Python Start the Proxy Server Start an Accumulo cluster using https://github.com/medined/Accumulo_1_5_0_By_Vagrant vagrant ssh master cd /home/vagrant/accumulo_home/bin/accumulo/proxy edit proxy.properties so that instance=instance and zookeepers=affy-master:2181 accumulo proxy -p proxy.properties Install Thrift cd /home/vagrant/software Download the thrift gz from http://www.apache.org/dyn/closer.cgi?path=/thrift/0.9.1/thrift-0.9.1.tar.gz sudo apt-get install -y libboost-dev libboost-test-dev libboost-program-options-dev libevent-dev automake libtool flex bison pkg-config g++ libssl-dev sudo apt-get install -y ruby-full ruby-dev librspec-ruby rake rubygems libdaemons-ruby libgemplugin-ruby mongrel sudo apt-get install -y python-dev python-twisted sudo apt-get install -y libbit-vector-perl tar xvfz thrift-0.9.1.tar.gz cd thrift-0.9.1 ./configure make sudo make install thrift -version cd lib/py sudo python setup.py install cd /home/vagr...