Friday, June 6, 2008

How do I...Troubleshoot problems running updateWiki.sh from behind a proxy server? - Open Garden

How do I...Troubleshoot problems running updateWiki.sh from behind a proxy server? - Open Garden

How do I...Troubleshoot problems running updateWiki.sh from behind a proxy server?

  • We have highlighted your search term http_proxy for you. If you'd like to remove the search term, reload this page.
Table of contents
No headers

updateWiki.sh uses the svn up command to get the latest dekiwiki bits. If your wiki is behind a proxy server it may fail. SVN allows you to set your proxy server like this:

nano /root/.subversion/servers

Then set these values in the [global] section

http-proxy-host = defaultproxy.whatever.com
http-proxy-port = 7000
http-proxy-username = defaultusername
http-proxy-password = defaultpassword

NOTE: This may not work if you're using a Microsoft ISA proxy server.

For more informaiton about configuring SVN options see this page:

http://svnbook.red-bean.com/en/1.4/s....confarea.opts

Unofficial ISS Linux Web Pages - Proxy Settings

Unofficial ISS Linux Web Pages - Proxy Settings: "Environment Variables

Some software, mostly command line based software, get their proxy settings from a group of enviroment variables.

http_proxy='http://wwwcache.ncl.ac.uk:8080'
https_proxy='http://wwwcache.ncl.ac.uk:8080'
ftp_proxy='http://wwwcache.ncl.ac.uk:8080'

export http_proxy https_proxy ftp_proxy

You can setup these variables automatically for all users by adding them to the file /etc/profile or the proxyenv files in /etc/profile.d/ depending on your distribution."