Posts

Showing posts with the label redhat 7

How to export proxy in Redhat Linux 7 using the current login credentials?

 In Red Hat Linux 7, you can set up a proxy using environment variables, specifically `http_proxy`, `https_proxy`, `ftp_proxy`, and `no_proxy`. To use your current login credentials for proxy authentication, you'll need to include your username and password in the proxy URL. Here's how you can do it: 1. Open a terminal and run the following commands:    ```bash    export http_proxy="http://username:password@proxy_server:proxy_port"    export https_proxy="https://username:password@proxy_server:proxy_port"    export ftp_proxy="ftp://username:password@proxy_server:proxy_port"    ```    - Replace `username` with your proxy username.    - Replace `password` with your proxy password.    - Replace `proxy_server` with the address of your proxy server.    - Replace `proxy_port` with the port number used by your proxy server. 2. If your proxy server doesn't require a username and password, you can omit them. For example:    ```bash    export http_proxy=&