For the sdkmanager use the following extra options:
sdkmanager --list --verbose --no_https --proxy=http --proxy_host=<proxy_host> --proxy_port=<proxy_port>
For the sdkmanager use the following extra options:
sdkmanager --list --verbose --no_https --proxy=http --proxy_host=<proxy_host> --proxy_port=<proxy_port>
If you are behind a proxy, try the following:
git config --global --add remote.origin.proxy ""
git config --global http.sslBackend "openssl"
On Ubuntu, you can set proxy by using
export http_proxy=http://username:password@proxy:port
export https_proxy=http://username:password@proxy:port
or if you are having SOCKS error use
export all_proxy=http://username:password@proxy:port
Then run pip
sudo -E pip3 install {packageName}
The pip’s proxy parameter is, according to pip --help, in the form scheme://[user:passwd@]proxy.server:port
You should use the following:
pip install --proxy http://user:password@proxyserver:port TwitterApi
Also, the HTTP_PROXY env var should be respected.
Things to try:
ping 8.8.8.8ping www.google.comping registry.npmjs.orgTry in your browser: https://registry.npmjs.org/
Make sure you are trying to connect to:
registry.npmjs.organd not to:
"registry.npmjs.org registry.npmjs.org:443"
if there is no error,try to clear cache
npm cache clean –force then try npm install
even you have any error
npm config set registry https://registry.npmjs.org/ then try npm install -g @angular/cli
This document is helpful while setting up Jumphost server(mid-proxy) and configuring it with RabbitMQ.

sudo wget http://packages.erlang-solutions.com/erlang-solutions-1.0-1.noarch.rpm
sudo rpm -Uvh erlang-solutions-1.0-1.noarch.rpm
redhat_release=`cat /etc/redhat-release | awk {‘print int($3)’}`
sudo yum install -y erlang-18.2-1.el${redhat_release}
rpm utility:
sudo rpm –import http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
You can update your yum repository to update to the latest version of RabbitMQ
sudo yum update
You can check the version of RabbitMQ in yum with the following command
su -c ‘yum list rabbitmq’
Install the rabbitmq with the following command
yum install rabbitmq
Add the rabbitmq to run on startup and start the rabbitmq service
sudo chkconfig rabbitmq-server on
sudo /etc/init.d/rabbitmq-server start
This document can be used when enhancing the security of your nginx server.
Following are the steps for security hardening of nginx server.
[nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1
2. Following changes need to be done in all of the .conf files of the nginx. The .conf files are present in /etc/nginx/conf.d/ folder.
After this save your .conf files and execute the following command- service nginx restart. The security of your nginx server will have been increased.