search for: https_proxy

Displaying 20 results from an estimated 43 matches for "https_proxy".

Did you mean: http_proxy
2001 Oct 18
1
Patch for SSH-tunneling via HTTPS-proxy
....httpsproxy/readconf.c --- openssh-2.9.9p2.orig/readconf.c Thu Oct 18 11:53:43 2001 +++ openssh-2.9.9p2.httpsproxy/readconf.c Thu Oct 18 11:55:48 2001 @@ -789,6 +789,7 @@ options->num_local_forwards = 0; options->num_remote_forwards = 0; options->clear_forwardings = -1; + options->https_proxy = NULL; options->log_level = (LogLevel) - 1; options->preferred_authentications = NULL; options->bind_address = NULL; diff --unified --recursive openssh-2.9.9p2.orig/readconf.h openssh-2.9.9p2.httpsproxy/readconf.h --- openssh-2.9.9p2.orig/readconf.h Thu Oct 18 11:53:43 2001 +++ open...
2007 Oct 16
3
R-2.6.0 - packages installation through a proxy - not working
...ctioned like a charm: ## Proxy settings http_proxy="SERVER:3128" With 2.6.0, however, R refuses to connect to the CRAN mirror. I have added to the new Renviron even more lines (useless, probably). Now the Proxy settings look like this: ## Proxy settings http_proxy="SERVER:3128" https_proxy="SERVER:3128" ftp_proxy="SERVER:3128" I also tried - with no luck - to use the following command at the start of the R session: Sys.setenv(http_proxy="SERVER:3128") I get the following error message: > install.packages("Rcmdr", dependencies=TRUE) --- Ple...
2015 Oct 06
0
python setup.py ssl error
....5 error: Could not find suitable distribution for Requirement.parse('six>=1.5') I thought this might be a proxy issue of some kind, but I have several proxy values set in my environment: [root at ushapld00050 s3cmd-1.6.0]# env | grep -i proxy http_proxy=http://proxy.mycompany.com:80 https_proxy=http://proxy.mycompany.com:80 HTTPS_PROXY=http://proxy.mycompany.com:80 no_proxy=usushaplp461.mycompany.ge.com HTTP_PROXY=http://proxy.mycompany.com:80 Can someone please give me a heads up as to how to resolve this issue? Thanks, Tim -- GPG me!! gpg --keyserver pool.sks-keyservers.net --recv-...
2016 Nov 07
2
Proxy server settings
Hello All, I'm sure this must be a fairly quick and easy configuration, but I have not been able to figure it out yet. How do you configure the proxy settings in the OS itself (not in a browser or other application) so that anytime the server tries to get out to the internet, that it can direct its traffic to go through a proxy server? I tried putting the proxy settings in .bash_profile
2019 Jan 07
0
how to set proxy systemwide (wget and docker)
...YHOST="proxy" PROXYPORT="8080" for CFGFILE in /etc/sysconfig/proxy-config ${HOME}/.proxy-config; do [ -s $CFGFILE ] && . $CFGFILE done export http_proxy="http://${PROXYHOST}:${PROXYPORT}" export HTTP_PROXY="http://${PROXYHOST}:${PROXYPORT}" export https_proxy="http://${PROXYHOST}:${PROXYPORT}" export HTTPS_PROXY="http://${PROXYHOST}:${PROXYPORT}" export ftp_proxy="http://${PROXYHOST}:${PROXYPORT}" export FTP_PROXY="http://${PROXYHOST}:${PROXYPORT}" export all_proxy="http://${PROXYHOST}:${PROXYPORT}" expo...
2006 May 08
3
build in iexplore.exe
...ozilla 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 http_proxy=http://proxy.sun.ac.za:3128 https_proxy=http://proxy.sun.ac.za:3128 no_proxy='localhost, sun.ac.za' Any ideas why it doesn't start the download? Rainer
2015 Aug 31
1
[PATCH] customize: fix running commands on the same architecture
...ions(+), 6 deletions(-) diff --git a/customize/customize_run.ml b/customize/customize_run.ml index 2283272..9d97522 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -70,18 +70,20 @@ let run (g : Guestfs.guestfs) root (ops : ops) = ) [ "http_proxy"; "https_proxy"; "ftp_proxy"; "no_proxy" ] in let env_vars = String.concat "\n" env_vars ^ "\n" in - let setarch = + let cmd = match Config.host_cpu, guest_arch with - | "x86_64", ("i386"|"i486"|"i586"|&q...
2009 Dec 05
2
Setting up skype
...ted the skype conf file 5) restarted asterisk => skype show settings Skype For Asterisk Settings: engine_directory: /tmp data_directory: /var/spool/asterisk/skype defaultuser: bar bind_address: 0.0.0.0 bind_port: 0 rtp_address: 127.0.0.1 https_proxy: https_proxy_user: https_proxy_password: socks5_proxy: socks5_proxy_user: socks5_proxy_password: disable_tcpauto: no disable_udp: no debug: no => skype show users Skype Users> bar: Logged In 6) added a test to extensions.conf...
2015 Aug 27
1
[PATCH] customize: Use setarch when running commands on i686 guest (RHBZ#1256405).
...t * in error messages. + * - Use setarch when running x86_64 host + i686 guest. * Also catch errors and dump the log file completely on error. *) let env_vars = @@ -69,11 +70,16 @@ let run (g : Guestfs.guestfs) root (ops : ops) = ) [ "http_proxy"; "https_proxy"; "ftp_proxy"; "no_proxy" ] in let env_vars = String.concat "\n" env_vars ^ "\n" in + let setarch = + match Config.host_cpu, guest_arch with + | "x86_64", ("i386"|"i486"|"i586"|"i686")...
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
2020 May 04
1
[common PATCH] mltools: add run_in_guest_command helper
...* - Use setarch when running x86_64 host + i686 guest. + *) + let env_vars = + List.filter_map ( + fun name -> + try Some (sprintf "export %s=%s" name (quote (Sys.getenv name))) + with Not_found -> None + ) [ "http_proxy"; "https_proxy"; "ftp_proxy"; "no_proxy" ] in + let env_vars = String.concat "\n" env_vars ^ "\n" in + + let cmd = + match Guestfs_config.host_cpu, guest_arch with + | "x86_64", ("i386"|"i486"|"i586"|"i686&qu...
2015 Feb 13
1
Getting strange message in terminal
...:1" declare -x GV_DIR="/usr/local/gaussian/gv" declare -x HARDWARE_PLATFORM="x86_64" declare -x HISTCONTROL="ignoredups" declare -x HISTSIZE="1000" declare -x HOME="/home/rahman" declare -x HOSTNAME="localhost.btb.igloonet" declare -x HTTPS_PROXY="http://hproxy.iitm.ac.in:3128/" declare -x HTTP_PROXY="http://hproxy.iitm.ac.in:3128" declare -x IMSETTINGS_INTEGRATE_DESKTOP="yes" declare -x IMSETTINGS_MODULE="none" declare -x KDEDIRS="/usr" declare -x LANG="en_US.utf8" declare -x LC_M...
2016 Jul 07
0
[PATCH 3/3] builder: Use the new Curl module for passing parameters to curl.
..._h) ); (* Rename the file if the download was successful. *) rename filename_new filename - -and proxy_envvar protocol = function - | UnsetProxy -> - (match protocol with - | "http" -> "env http_proxy= no_proxy=* " - | "https" -> "env https_proxy= no_proxy=* " - | "ftp" -> "env ftp_proxy= no_proxy=* " - | _ -> "env no_proxy=* " - ) - | SystemProxy -> - (* No changes required. *) - "" - | ForcedProxy proxy -> - let proxy = quote proxy in - (match protocol with -...
2015 Aug 27
1
[PATCH v2] customize: Use setarch when running commands on i686 guest
v2: Fix problem when running multiple commands.
2016 Nov 07
0
Proxy server settings
...rect its traffic to go through a proxy server? > > I tried putting the proxy settings in .bash_profile per a tech article I > found online but that did not work. > > The OS is Redhat 7.2. in /etc/environment add lines like: export http_proxy="http://proxysrv:3128/" export https_proxy="http://proxysrv:3128/" export ftp_proxy="http://proxysrv:3128/" Yum has it's own config: /etc/yum.conf, you have to add the following line, near the end of the file: proxy=http://proxysrv:3128 -- Marcelo "?No ser? acaso que esta vida moderna est? teniendo m?s de m...
2023 May 16
0
Error al actualizar R 4.3.0
Hola, lo pude corregir de la siguiente forma: Edité el archivo Rprofile.site agregando las siguientes líneas: options(download.file.method = "libcurl") Sys.setenv("http_proxy"="http://mi_proxy::mi_puerto") Sys.setenv("https_proxy"="http:// http://mi_proxy::mi_puerto") Sys.setenv("ftp_proxy"="http:// http://mi_proxy::mi_puerto") Sienddo mi_proxy y mi_puerto el proxy y puerto que tenemos habilitado. Si al inicio de una sesión ejecutaba las líneas anteriores solo funcionaban para esa ses...
2012 Aug 15
0
Trying install module behind proxy squid. Any progress on bug reported 15453 ?.
Hi all, I''m behind a proxy squid server with authentication. I have set environment variables http_proxy and https_proxy, something like http://user:passwd@ip_proxy:3128. I upgraded to 2.7.18 puppet version recently. Then i''d getting in error when trying to install stdlib module : puppet module install puppetlabs-stdlib Preparing to install into /etc/puppet/modules ... Downloading from http://forge.puppe...
2013 Dec 08
1
The error we caught said '407 "authenticationrequired"' during module install behind proxy
I read at a number of places that if my puppet master is behind a proxy which requires authentication puppet module command does not work despite setting the global parameters http_proxy, https_proxy on bash the command throws an error [root@centos-razor ~]# puppet module install saz/dnsmasq --force Notice: Preparing to install into /etc/puppetlabs/puppet/modules ... Notice: Downloading from https://forge.puppetlabs.com ... Error: Could not connect to https://forge.puppetlabs.com There was a...
2016 Apr 30
2
Issue installing packages - Linux
...a redhat-linux-gnu. For instance, this is what happens when I try to install ?bitops?. Any hint on what might be the issue would be much appreciated. > sessionInfo() R version 3.2.3 (2015-12-10) Platform: x86_64-redhat-linux-gnu (64-bit) Running under: Red Hat Enterprise Linux > Sys.setenv(https_proxy="https://labproxy.com:8080") > install.packages("bitops", lib="mypath ") Here I choose: 22: (HTTP mirrors) and then a mirror 16:Canada(ON) * installing *source* package ?bitops? ... ** package ?bitops? successfully unpacked and MD5 sums checked Error in readRDS(pf...
2017 Feb 22
4
[PATCH 0/3] v2v: vCenter: Remove proxy environment variables
Fix for: https://bugzilla.redhat.com/show_bug.cgi?id=1354507 Main explanation is in patch #3. Rich.