Difference between revisions of "Download Server"

From OSGeo
Jump to navigation Jump to search
 
(23 intermediate revisions by 8 users not shown)
Line 1: Line 1:
There is a need for a "download server" for OSGeo that provides for bulk downloads of software.
+
There is a need for a "download server" for OSGeo that provides for bulk downloads of software.   
 
 
We are hesitant to handle this on our primary server hosted by Peer1 because of the risk of exceeding our bandwidth allotment and getting charged a lot extra.  For that reason the download server is being hosted on a telascience blade.  Telascience has extensive bandwidth and is not charging OSGeo for it.   
 
  
 
= Configuration =  
 
= Configuration =  
  
For now the 198.202.74.218 blade is being used as a download server.
+
The download container on osgeo7, ssh via upload.osgeo.org (requires SSH key) Refer to [[SAC_Service_Status#Download|SAC_Service_Status Download Container]]
  
* It is known as "download.osgeo.org", and is configured to respond to that.
+
* download.osgeo.org should not be used as it is a round robin that floats between osgeo7, osgeo8, and osgeo9 to balance load.
* It is also known as "ftp.remotesensing.org", for historical reasons.
+
* The upload.osgeo.org DNS name only points to the osgeo7 download container
* The upload.osgeo.org DNS name also points to it.
+
* The downloadable tree is found in /osgeo/download on the server. (mirrored at https://ftp.osuosl.org/pub/osgeo)
* The downloadable tree is found in /osgeo/download on the server.
+
* The virtual host declaration is found in /etc/nginx/sites-available
* The virtual host declaration is found in /etc/httpd/apach2/sites-available/download.osgeo.org.conf.
+
* Logs are in /var/log/nginx
* Logs are in /var/log/apache2/download_access_log and /var/log/apache2/download_error_log.
 
  
= Access Log Viewer (awstats) =
+
* bottle.download.osgeo.org (Mac Bottles) is also hosted on this server and in folder /osgeo/bottle mirrored at  https://ftp.osuosl.org/pub/osgeo/bottle
 
 
'''NOTE: awstats is currently missing from the rebuilt download server - Aug 1st, 2010.'''
 
 
 
To maintain/view the Apache access logs of download server, [http://awstats.sf.net/ awstats] has been installed on the server.
 
Logs can be seen by visiting [http://download.osgeo.org/logs/ http://download.osgeo.org/logs/] The details of awstats installation are
 
 
 
* awstats version 6.6-1 installed using rpm
 
* application root dir /usr/local/awstats/
 
* location of cgi executable /usr/local/awstats/wwwroot/cgi-bin/awstats.pl
 
* site configuration file /etc/awstats/awstats.www.download.osgeo.org.conf (create such file for any other host to be added in future)
 
* Data dir (dir where stats data is stored) /osgeo/download/logs
 
* Updation is done daily 1am (server time) using a cronjob by executing /osgeo/scripts/update_logs.sh (to add more sites in future, add entry to this script)
 
  
 
= Management =  
 
= Management =  
Line 33: Line 18:
  
 
Any administrator can create new project directories, and chown them to a project representative.
 
Any administrator can create new project directories, and chown them to a project representative.
 
Contact Frank Warmerdam for overall configuration questions or about problems.
 
  
 
= End Users =  
 
= End Users =  
Line 40: Line 23:
 
End users should be referred to downloads similarly to:
 
End users should be referred to downloads similarly to:
  
  http://download.osgeo.org/gdal/gdal-1.3.2.tar.gz
+
  https://download.osgeo.org/gdal/gdal-1.3.2.tar.gz
  
Directory indexing is left on so requesting a directory will give a file list.  
+
Directory indexing is left on so requesting a directory will give a file list.
  
= FTP Service =
+
= Rsync =  
  
There is FTP service configured on the '''download.osgeo.org''' blade. The FTP access is served by [http://vsftpd.beasts.org/ vsftpd] - secure and fastest FTP server for UNIX-like systems.
+
The /osgeo/download area is exported for anonymous rsync read access as a module named "download". The following can be used to pull a local copy of the gdal data tree for instance:
 
 
The vsftpd daemon configuration is the default one provided with Debian and is suitable for anonymous ftp only.
 
 
 
* root directory: /osgeo/download
 
* '''no''' access for local users
 
* '''no''' write, mkdir or upload privileges
 
 
 
== Controlling FTP Service ==
 
 
 
In order to control the ''vsftpd'' server, you need to:
 
* belong to sudoers
 
* login in to the download.osgeo.org host using SSH client.
 
 
 
Here you can see how to issue two basic commands:
 
 
 
* Start
 
 
 
$ sudo /etc/init.d/vsftpd start
 
 
 
* Stop
 
 
 
$ sudo /etc/init.d/vsftpd stop
 
  
* Restart
+
rsync -av upload.osgeo.org::download/gdal/data .
  
$ sudo /etc/init.d/vsftpd restart
+
This is controlled by the rsync configuration file at /etc/rsyncd.conf.  It is possible that rsyncd will not automatically restart on reboot in which case "rsyncd --daemon" as root may be necessary to start it.
 
 
= Rsync =
 
 
 
The /osgeo/download area is exported for anonymous rsync read access as a module named "download".  The following can be used to pull a local copy of the gdal data tree for instance:
 
  
rsync -av download.osgeo.org::download/gdal/data .
+
= Webdav =
  
This is controlled by the rsync configuration file at /etc/rsyncd.conf.  /etc/xinetd.d/rsync was also updated to set set disable=yes to disable=no in the hopes the daemon will restart when the blade is restarted (not tested).
+
Some projects using Maven as their build tool require webdav in order to work. There is a standalone webdav in nginx setup
 +
for geoserver/geotools use using a htpasswd file in /etc/nginx/auth/geotools
  
 
= Backup =  
 
= Backup =  
  
Nightly backups of the /osgeo/download tree are managed using rsync to the /osgeo/backup/rsync/download.osgeo.org  
+
Nightly backups of the /osgeo/download tree are managed using rsync to /mirror/rsync/download.osgeo.org on backup.osgeo.org by root's crontab.
/home/other_backups/download directory backup.osgeo.org by a nightly cronjob, and this mirror is available at the url download2.osgeo.org if needed.
+
/home/other_backups/download directory backup.osgeo.org by a nightly cronjob, and this mirror is available at the url download2.osgeo.org and http://ftp.osuosl.org/pub/osgeo/download/ if needed
 +
(NOTE: that rsync does not delete file on backup.osgeo.org, if they were removed from download.osgeo.org).
  
There is also an rsync to iweb.gdal.org (Frank's personal server in Montreal) in case of extreme emergency, and this is found at iweb.gdal.org/download.
+
There is a weekly backup of the whole download container backed up as stopped container on osgeo4 and called download-backup.
  
 
[[Category:Infrastructure]]
 
[[Category:Infrastructure]]
 +
[[Category:Services]]

Latest revision as of 22:53, 10 April 2022

There is a need for a "download server" for OSGeo that provides for bulk downloads of software.

Configuration

The download container on osgeo7, ssh via upload.osgeo.org (requires SSH key) Refer to SAC_Service_Status Download Container

  • download.osgeo.org should not be used as it is a round robin that floats between osgeo7, osgeo8, and osgeo9 to balance load.
  • The upload.osgeo.org DNS name only points to the osgeo7 download container
  • The downloadable tree is found in /osgeo/download on the server. (mirrored at https://ftp.osuosl.org/pub/osgeo)
  • The virtual host declaration is found in /etc/nginx/sites-available
  • Logs are in /var/log/nginx

Management

It is intended that each interested project should have a directory under /osgeo/download with appropriate permissions so a project member can manage the subdirectories and files. Scp, or sftp can be used to bring files onto the server. Someone from each project will need their LDAP OSGeo Userid shell enabled, for ssh/scp access.

Any administrator can create new project directories, and chown them to a project representative.

End Users

End users should be referred to downloads similarly to:

https://download.osgeo.org/gdal/gdal-1.3.2.tar.gz

Directory indexing is left on so requesting a directory will give a file list.

Rsync

The /osgeo/download area is exported for anonymous rsync read access as a module named "download". The following can be used to pull a local copy of the gdal data tree for instance:

rsync -av upload.osgeo.org::download/gdal/data .

This is controlled by the rsync configuration file at /etc/rsyncd.conf. It is possible that rsyncd will not automatically restart on reboot in which case "rsyncd --daemon" as root may be necessary to start it.

Webdav

Some projects using Maven as their build tool require webdav in order to work. There is a standalone webdav in nginx setup for geoserver/geotools use using a htpasswd file in /etc/nginx/auth/geotools

Backup

Nightly backups of the /osgeo/download tree are managed using rsync to /mirror/rsync/download.osgeo.org on backup.osgeo.org by root's crontab. /home/other_backups/download directory backup.osgeo.org by a nightly cronjob, and this mirror is available at the url download2.osgeo.org and http://ftp.osuosl.org/pub/osgeo/download/ if needed (NOTE: that rsync does not delete file on backup.osgeo.org, if they were removed from download.osgeo.org).

There is a weekly backup of the whole download container backed up as stopped container on osgeo4 and called download-backup.