Dear All
I along with Mr. Kapil Kumar Gupta have recently visited XYZ library for data conversion and implementation of Koha and DSpace. We have successfully migrated their old data and implemented the Koha (version 16.05) and DSpace (version 5.5). We have installed everything live but i was badly stuck on internet connectivity issue at the time of installing the package from terminal command because of proxy settings. I could able to set proxy in a browser but even though terminal command was not working like “apt-get update” etc. I could able to search the solution for internet connectivity from terminal command which is explained below after which there was no issue in running the commands for downloading and installing the packages from internet.
Proxy setting for Internet access via terminal
Open the /etc/environment file with nano/gedit/vi command and paste the following lines:
http_proxy=”http://user_name:password@myproxy.server.com:8080/”
https_proxy=”http://user_name:password@myproxy.server.com:8080/”
ftp_proxy=”http://user_name:password@myproxy.server.com:8080/”
no_proxy=”localhost,127.0.0.1,localaddress,.localdomain.com”
HTTP_PROXY=”http://user_name:password@myproxy.server.com:8080/”
HTTPS_PROXY=”http://user_name:password@myproxy.server.com:8080/”
FTP_PROXY=”http://user_name:password@myproxy.server.com:8080/”
NO_PROXY=”localhost,127.0.0.1,localaddress,.localdomain.com”
User_name = is your username given by institute to access the internet
password = is password against the username to access the internet
During installation of DSpace everything went correct and smoothly but at the time of running the command “mvn maven” system again deny the downloading of packages/files, which again encouraged us to find the solution and we got the following:
Proxy setting in maven
Find the settings.xml file in maven installation directory and uncomment the proxies section and add your proxy server details and access credentials.
Proxy setting for Ant






