Displaying 20 results from an estimated 4000 matches similar to: "http proxies: setting and unsetting"
2004 Jan 12
1
ReadLines does not give results with urls
Hello,
I am using R version 1.8.1 on a linux machine (Suse 8.2.).
I have problems to use readLines() with urls.
This seems to be a problem with our proxy-server.
Downloading files work with download.file() with wget but not without:
> download.file(url = "http://cran.r-project.org/src/contrib/PACKAGES", destfile = "test.txt", method = "wget", cacheOK = FALSE)
2003 Jan 22
1
Using Internet proxies
There have been quite a few questions recently about this, so I have
tried to gather experience. I set up a proxy using Apache2 (a very common
server) behind our firewall and tried various authentication approaches.
One comment: all the methods return error messages when they fail. Please
don't report `it doesn't work' without the full details.
1) For a proxy that authenticates
2006 May 08
3
build in iexplore.exe
Hi
I want to start the buil-in iexplore.exe. I created a new .wine
directory and typed
#wine iexplore.exe
Then it tries to download the Mozilla ActiveX PlugIn and this is where
the problem starts:
The download window shows, but it doesn't start the download.
I am sitting behind a proxy server (no authorisation needed), and the
proxy is setup correctly:
ftp_proxy=ftp://proxy.sun.ac.za:3128
2015 Aug 31
1
[PATCH] customize: fix running commands on the same architecture
Wrap the command around an heredoc only if setarch needs to be used;
otherwise the heredoc will not be run at all.
Fix commit d875346ad441d4762455ea1b41d57ad6174d9b63.
---
customize/customize_run.ml | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index 2283272..9d97522 100644
---
2007 May 24
1
Running R in Bash and R GUI
I have been trying to get the R and package update functions in the
GUI version of R to work on my Mac.
Initially I got error messages that suggested I needed to set up the
http_proxy for GUI R to use, but how can this be done?
I eventually got to the point of writing a .bash_profile file in the
Bash terminal and setting the proxy addresses there.
I can now use my Bash terminal, invoke R,
2002 Jun 18
2
Problems with url/download and http_proxy
I would like to use the getBioC.R script from
http://www.bioconductor.org/getBioC.R to install the biobase packages.
Unfortunately, url() and download.file() die when trying to talk to my
proxy:
> getBioC("exprs")
connect: Cannot assign requested address
unable to connect to 'gproxy1.pfizer.com'.
connect: Cannot assign requested address
unable to connect to
2002 Jun 18
2
Problems with url/download and http_proxy
I would like to use the getBioC.R script from
http://www.bioconductor.org/getBioC.R to install the biobase packages.
Unfortunately, url() and download.file() die when trying to talk to my
proxy:
> getBioC("exprs")
connect: Cannot assign requested address
unable to connect to 'gproxy1.pfizer.com'.
connect: Cannot assign requested address
unable to connect to
2003 Jul 25
5
R won't connect to the internet on SUSE Linux 8.1
Hi
Thanks once again for your help, I do appreciate it..... however....
Here is what I get with your test.... (under tcsh - i normally use bash, but I will keep everything the same)
users/mwatson> env http_proxy=http://wwwcache.bbsrc.ac.uk:8080/ R
>options(internet.info=0)
>update.packages()
trying URL `http://cran.r-project.org/src/contrib/PACKAGES'
unable to connect to
2015 Aug 27
1
[PATCH] customize: Use setarch when running commands on i686 guest (RHBZ#1256405).
When running (eg) dnf on a 32 bit i686 guest when the host is 64 bit
x86_64, dnf believes it is running on a 64 bit machine and so tries to
install x86_64 packages. We can 'trick' dnf into believing it's a 32
bit machine using the setarch program.
$ virt-builder fedora-22 --arch i686 --install 'gperf'
...
[ 27.4] Installing packages: gperf
...
Running transaction test
Error:
2020 May 04
1
[common PATCH] mltools: add run_in_guest_command helper
Add an helper function to run a command in the guest, checking for the
host/guest compatibility. This is mostly extracted from the internal
do_run helper currently in the Customize_run module of virt-customize.
---
mltools/tools_utils.ml | 50 +++++++++++++++++++++++++++++++++++++++++
mltools/tools_utils.mli | 10 +++++++++
2 files changed, 60 insertions(+)
diff --git a/mltools/tools_utils.ml
2002 Jun 19
0
FW: [R] Problems with url/download and http_proxy (PR#1689)
For the record.
-----Original Message-----
From: ripley@stats.ox.ac.uk [mailto:ripley@stats.ox.ac.uk]
Sent: Tuesday, June 18, 2002 3:21 PM
To: Warnes, Gregory R
Cc: 'r-help@stat.math.ethz.ch'
Subject: RE: [R] Problems with url/download and http_proxy
The port is not supposed to be required, so rather than fix the docs can
anyone fix the problem?
On Tue, 18 Jun 2002, Warnes, Gregory R
2002 Jun 19
0
[R] Problems with url/download and http_proxy
This does seem to fix my problem:
> Sys.getenv("http_proxy")
http_proxy
"http://gproxy1.pfizer.com/"
> url("http://cran.r-project.org/src/contrib/PACKAGES",'r')
description
"http://cran.r-project.org/src/contrib/PACKAGES"
class
2007 Oct 16
3
R-2.6.0 - packages installation through a proxy - not working
Hello everyone,
I run R on Gentoo Linux and this week I upgraded R from 2.5.0 to
2.6.0. With the new build, I have stumbled upon an unpleasant problem:
I can no longer install packages from CRAN through a transparent
proxy. With the previous version, I simply added to
/usr/lib/R/etc/Renviron the following line and it functioned like a
charm:
## Proxy settings
http_proxy="SERVER:3128"
2019 Jan 07
0
how to set proxy systemwide (wget and docker)
> Hallo,
> what is the right way to set a proxy systemwide using centos 7?
> I need this for wget and docker.
> My first idea was /etc/environment but allthough the proxy is set wget and
> docker don? t connect to their target-systems.
I have this in /etc/profile.d/proxy-config.sh:
-----%<---------------------------------
PROXYHOST="proxy"
PROXYPORT="8080"
2013 Apr 04
0
Changing HTTP proxy configurations at run time
DeaR developers,
I was recently moving with my laptop between two environments with and without a HTTP proxy server. As the internal proxy configuration is read only once from the environment variables http_proxy/HTTP_PROXY at the first call of download.file(), the proxy configurations couldn't be adjusted at a later stage. (See also the comment in ?download.file). This caused some
2016 Jul 07
0
[PATCH 3/3] builder: Use the new Curl module for passing parameters to curl.
These are now passed using a curl configuration file, which is a
little bit safer than using command lines. virt-builder doesn't need
to pass usernames and passwords to curl, but if it ever does in future
this will be a lot safer.
---
builder/Makefile.am | 1 +
builder/builder.ml | 6 +--
builder/downloader.ml | 94
2019 Jan 05
4
how to set proxy systemwide (wget and docker)
Hallo,
what is the right way to set a proxy systemwide using centos 7?
I need this for wget and docker.
My first idea was /etc/environment but allthough the proxy is set wget and docker don? t connect to their target-systems.
Thanks for hints
Ralf
2007 Jun 01
1
Proxy Under Mac OS X
Dear R programmers,
I can only config. proxy under Mac OS X terminal and launch R under Terminal by
Terminal:
export http_proxy="http://un:pw at proxy.com:port"
Under R:
>chooseCRANmirror(graphics=FALSE)
>update.packages()
I don't know how to config this in R for Mac OS X Aqua GUI.
I checked the relevant document but no specific steps for Mac OS X.
Regards,
Ch Chan
--
2015 Oct 06
0
python setup.py ssl error
Hey guys,
I'm trying to do a source install of s3cmd onto a centos 6.5 host. Because
the version in the repo is a little old.
So when I go to run the installer app with the command python2.7 setup.py
install, I'm getting the following error:
Installed /usr/local/lib/python2.7/site-packages/s3cmd-1.6.0-py2.7.egg
Processing dependencies for s3cmd==1.6.0
Searching for six>=1.5
Reading
2010 Jan 06
4
Yum Issue
Yum using proxy that requires authentication and a Password that
contains the two characters \/ fails
normally I can get yum to work with a proxy that requires authentication
when required by doing something like
http_proxy=http://<my username>:<my password>@<proxy server>:<proxy
server port>
export http_proxy
or by filling in the appropriate information in yum.conf.