Mirrors

From SME Server
Revision as of 03:41, 2 November 2023 by Trex (talk | contribs) (add bugs section)
Jump to navigationJump to search


Status of the contribs.org mirrors

To view the status of contribs.org mirrors, look at http://mirror.contribs.org/mirrors.

Accessing the contribs.org mirrors

To access the contribs.org download mirrors, always use the URL http://mirror.contribs.org. The current releases can be found at http://mirror.contribs.org/smeserver/releases/, the contribs section can be found at: http://mirror.contribs.org/smeserver/contribs/

Information.png Tip:
If you use the mirrors.contribs.org URL you will automatically be redirected to a mirror that is current within the last 8 hours.


Figures

Hard disk size

The amount of physical hard disk size taken up by the contribs.org data will be about 30Gb, the /release tree, which holds the iso images and the repositories, accounts for about 6Gb of said amount. The /contribs tree will account for a little over 1Gb of the total. The obsolete directory accounts for 16Gb, and the testing directory which include the next version SME8 is 7Gb big.

If you are short in space you can easily save 16Gb with --exclude=obsolete/ in the EXCLUDE="" tag in etc/ftpsync-smeserver.conf like this:

EXCLUDE="--exclude=obsolete/"

More information on the configuration file can be found at Mirrors#Configuration options.

Bandwith

Due to the small number of mirrors, the bandwidth routed to your servers will be in the order of 200Gb/month on average, which translates to about 80kB/s.

Requirements for mirrors

  • Static IP address
  • Dedicated user for syncing
  • Allow SSH from internet to static IP (port doesn't matter)

How to become a mirror site?

If you or your company has some spare bandwidth and would like to be included in mirror.contribs.org, become a mirror by following these steps:

Preparing your system

  1. Create a storage location for mirror
    mkdir -p {/path/to/your/data/store/}
  2. Create a new user to perform sync. If you are running SME Server you can create the user through the server-manager panel.
  3. Go to the new user's directory. On SME server this will be: /home/e-smith/files/users/{user}/ cd {/path/to/user/dir/}
  4. Now it is time to download the ftpsync script and all files it requires: wget http://wiki.contribs.org/files/ftpsync.tgz
  5. Extract the tarball in users directory tar zxof ftpsync.tgz
  6. Change the ownership of the directories to the new user chown -R {user} bin etc log locks .ssh {/path/to/your/data/store/}
  7. Now we have installed and set things up as is required but we will need to update the configuration file to point to the storage location of the data (TO) in the config file (etc/ftpsync-smeserver.conf). Use your favorite text editor for it.
  8. TO="/path/to/your/data/store/"
  9. Only when you are setting your server up as a pull-mirror, set the RSYNC_HOST value in the config file (etc/ftpsync-smeserver.conf) to (this is the default setting - disable for push) :
    RSYNC_HOST=mirror.canada.pialasse.com
    This because of the recent unreliability of ibiblio.org (see: bugzilla:7360).

Testing your setup

  1. Now it is time to perform the initial sync (and test that script does what it needs to)
    Important.png Note:
    This may take a long time depending on the speed of your connection

    su - {user} -s /bin/bash
    ~/bin/ftpsync sync:archive:smeserver
  2. Now check the logs to see if there are any errors. Since the initial sync will take a lot of time you can best do this in a second terminal window: cd ~/log cat rsync-ftpsync-smeserver.error.0

Configuring the web server

You will need to configure your web server to make the files available to the public.

For that you need to enable the FollowSymLinks option in the apache config file.

If your mirror is hosted on a SME Server 7.x (or higher version), in an ibay, you should issue the following commands after creating the ibay:

db accounts setprop {ibayname} FollowSymLinks enabled
signal-event ibay-modify {ibayname}

Keeping your mirror up-to-date

The ftpsync script allows for two sync methods: push or pull.

Important.png Note:
We prefer you configure your mirror to be setup as a push mirror because:
  • Sync only happens when there are changes
  • Changes are propagated as close to real-time as possible
  • Changes can be staged (sync data first, repodata second)
  • Less out of sync mirrors for yum


Why we prefer push

First some background on ssh. Ssh allows people to connect to accounts on different machines in a secure way. Not only are passwords never passed in the clear, once you connect to a machine you are basically guaranteed that future connections will be to the same machine. This prevents many man-in-the-middle attacks.

One capability ssh has is the ability for a user to take the public identity key for a user on another machine and add it to a file of authorized keys on your machine. By default, the user on the other machine (who has the private identity key associated with the public identity key given to you) then has login privileges to your account. It is possible, though, to add text to an authorized key restricting the type of access a person accessing your account using that key has.

So to protect the downstream mirror, the key provided by the upstream mirror has text added to it to limit it to only give the person accessing your account permission to do one thing — start the program on your machine that updates your mirror. Even if someone (an evil third party) was able to break the key, the most they could do is to start the mirror program on your machine. You do not even have to worry about multiple copies of the program being started as a lockfile is used.

On the upstream end, rsync can be configured to restrict who can mirror a given area by username and password. These are totally separate from /etc/passwd so a push server doesn't have to worry about giving others access to their machine. As it is set up, the username and password are passed in the clear. This shouldn't be a problem though, as the worst that can happen is that a third party gains the ability to mirror the SME Server packages from that site.

(source: Debian: Push mirroring)

How push works

Below is a short description of the push process:

  1. Master mirror updates timestamp file
  2. Master initiates ssh into tier 1 mirrors to start stage 1 sync (wait)
  3. Tier 1 mirrors rsync everything but repodata from designated targets (no delete)
  4. Tier 1 mirrors initiate ssh into tier 2 mirrors to start stage 1 sync (wait)
  5. Repeat prior to steps for each tier under 2
  6. Master initiates ssh into tier 1 mirrors to start stage 2 sync
  7. Tier 1 mirrors rsync everything from designated targets (with delete)
  8. Tier 1 mirrors initiate ssh into tier 2 mirrors to start state 2 sync
  9. Repeat prior to steps for each tier under 2
  10. Master mirror checks freshness of mirrors and generates mirrorlists
Configuring for push

The push system uses private public key pairs for communication, for this you will need to execute some additional configuration steps:

  1. First and foremost you will need SSH to be configured and running on your server. If you are using SME Server for your mirror you will have to enable remote access on your server through the server-manager.
  2. You will also need to enable bash as the shell for this user.
    If you are running SME Server you can do that like this: db accounts setprop {user} Shell /bin/bash signal-event user-modify {user}
  3. You will also have to append the keys to the authorized_keys file of the user su - {user} -s /bin/bash cat .ssh/pushmirror-*.pub >> .ssh/authorized_keys
Configuring for pull
Important.png Note:
We prefer you configure your mirror to be setup as a push mirror, but if you can not do so or have other reasons for not doing so you can also configure your mirror to pull.


Configuring for a pull based mirror is easy. Just schedule a cron job to run every 2 hours that does the exact same sync command you do to get the mirror in the first place, you can add a comment like in the example below:

1 */2  * * *  {user} ~/bin/ftpsync sync:archive:smeserver

Advertising your mirror

After your mirror is synced and working properly the last thing you need to do is let us know by filing a bug report on bugs.contribs.org under the website category or by following this link . Please include the following in the bug report:

  • name of site
  • primary contact name/email
  • location/country
  • bandwidth available to mirror
  • URL to site (for freshness checks and yum)
  • hostname to connect to (for ssh)
  • port to connect to (for ssh)
  • username to connect with (for ssh)

Configuration options

The ftpsync configuration file can be found in ~/etc/ftpsync-smeserver.conf. The ftpsync configuration file has a number of options you can configure. You might have already seen some of them when you had to adjust the storage location in the configuration process. The configuration file is well documented but we will discuss some of the features here.

Incomplete.png Incomplete:
This article or section needs to be expanded. Please help to fill the gaps or discuss the issue on the talk page



Configure your mirror as hub

this is intented to do on an already synced mirror in push mode.

setting up rsync as server

as root.


open /etc/xinetd.d/rsync and remove the disabled line

vim /etc/xinetd.d/rsync

create a rsyncd.conf file

vim /etc/rsyncd.conf

then add this

# rsync.conf
uid = {USEROWNING THE MIRROR FILES}
gid = {GROUP OWNING THE MIRROR FILES}
use chroot = yes
max connections = 5
timeout = 300
read only = true
strict modes = true
transfer logging = true
dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz

[smeserver]
    path = /home/e-smith/files/ibays/{IBAY}/html
    comment = SME Server Mirror
    hosts allow = {YOUR CLIENT IP}

install xinetd

yum install xinetd

configure as services

ln -s /etc/rc.d/init.d/e-smith-service /etc/rc7.d/S91xinetd
config set xinetd service status enabled
config set rsyncd service TCPPort 873 access public status enabled
signal-event remoteaccess-update
service xinetd start


configure hosts.allow

mkdir -p /etc/e-smith/templates-custom/etc/hosts.allow/
echo "rsync: ALL" > /etc/e-smith/templates-custom/etc/hosts.allow/rsync
signal-event remoteaccess-update

you can browse your server like this

rsync --list-only rsync://YourIP

you can download from your server like this

rsync -avz  YourIP::smeserver YourLocalFolder

create a rsa file

as user responsible of ftpsync.

 ssh-keygen -qt rsa -b 1024 -C "contribs-push@{MY MIRROR}" -f ~/.ssh/contribs-push\@{MY MIRROR}.rsa

then to protect the key and limit it to one usage and only one IP. You need to change {MY MIRROR} and {MY HUB IP }

echo "no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty,command=\"~/bin/ftpsync\",from=\"{MY HUB IP }\" "|cat - ~/.ssh/contribs-push\@{MY MIRROR}.rsa.pub > ~/.ssh/contribs-push.tmp && mv ~/.ssh/contribs-push.tmp ~/.ssh/contribs-push\@{MY MIRROR}.rsa.pub

finally protect your keys

chmod 0600 ~/.ssh/contribs-push\@{MY MIRROR}.rs*

never give your private key, only send your public (.pub) to the downstream mirror.

setting up ftpsync-smeserver.conf

as user responsible of ftpsync.


this step will allow your ftpsync to know that he need to trigger another server

edit ~/etc/ftpsync-smeserver.conf

vim ~/etc/ftpsync-smeserver.conf

under the line #HUB=false, insert

HUB=true

setting up runmirrors-smeserver.conf

as user responsible of ftpsync.


vim ~/etc/runmirrors-smeserver.conf

then comment out the following line and adapt it to the path of you private key

KEYFILE=.ssh/contribs-push\@{MY MIRROR}.rsa

setting up runmirrors-smeserver.mirror

as user responsible of ftpsync.


edit the file

vim ~/etc/runmirrors-smeserver.mirror

add the following at the end of the file

mhop {NAME FOR LOG PURPOSE} {YOUR CLIENT ADRESS} {YOUR CLIENT USER} -p {YOUR CLIENT SSH PORT}


Configure your mirror under another hub

follow : http://wiki.contribs.org/Mirrors#How_to_become_a_mirror_site.3F

except you will have to import your own public key (generated just above)

then you will have to tunes :

vim ~/etc/ftpsync-smeserver.conf

change RSYNC_HOST= to point to your hub mirror

RSYNC_HOST={HUB MIRROR ADRESSE}

tada! you are done!

Current SME Server contribs.org Mirror Tree

koozali.org mirrors mirror.canada.pialasse.com

Rsync, Push

smeserver.bhs.mirrors.ovh.net

Rsync / 1GPs /pull %36h

distro.ibiblio.org

Rsync, Push

ftp.iinet.net.au

mirror.internode.on.net

ftp.icm.edu.pl

mirror.pialasse.com

Push

sme-mirror.tw.co.nz

Pull

sme-mirror.firewall-services.com

Pull

ibsgaarden.dk

Push

mirrors.rbx.opencare.nl

Push

ftp.nluug.nl / ftp.vim.org

Pull

ftp.icm.edu.pl

Pull

mirrors.mab974.re

Pull

www.mirrorservice.org

Rsync, Pull

RSYNC access

  1. ibiblio : rsync://distro.ibiblio.org/smeserver/releases/ ( rsync -avv --stats distro.ibiblio.org::smeserver/releases . )
  2. mirror.canada.pialasse.com: rsync -avv mirror.canada.pialasse.com::smeserver/releases .
  3. mirrorservice.org : rsync//rsync.mirrorservice.org/sites/mirror.contribs.org/smeserver/releases/ (rsync -avv --stats rsync.mirrorservice.org::mirror.contribs.org/smeserver/releases/ . )

FTP access

  1. ftp://distro.ibiblio.org/smeserver/releases/

Bugs

Please raise bugs under the SME-Contribs section in bugzilla and select the component or use this link


Below is an overview of the current issues for this contrib:

IDProductVersionStatusSummary (1348 tasks)
12651SME Server 10.X10.1UNCONFIRMEDsession.use_trans_sid enabled
12650SME Server 10.X10.1CONFIRMEDwrong syntax in /var/service/qpsmtpd/config/tls_protocol template
12649SME Contribs11.0CONFIRMEDSME11 remove /etc/e-smith/templates/var/service/qpsmtpd/config/badmailfrom
12647SME Server 11.XunspecifiedVERIFIEDdar fails on compressed backup request
12646SME Server 11.XunspecifiedCONFIRMEDset modules for installer
12645SME Server 11.XunspecifiedCONFIRMEDsmanager - Wokstation Backup - attempt verify backup fails, does not list backups
12644SME Server 11.XunspecifiedCONFIRMEDsmanager - selecting workstation backup using a removeable device no devices displayed in form
12643SME Server 11.XunspecifiedCONFIRMEDError message in logs on Startup 'Argument "" isn't numeric'
12641SME Server 11.XunspecifiedCONFIRMEDBackup or Restore - when selected no drop down displayed to select method
12640SME Server 11.XunspecifiedCONFIRMEDAdmin User forward not displayed in user table
12639SME Server 11.XunspecifiedCONFIRMEDupdating /var/run/portreserve → /run/portreserve; please update the tmpfiles.d/ drop-in file accordingly
12638SME Server 11.XunspecifiedCONFIRMEDqpsmtpd requires more than 50M memory limit
12637SME Server 11.XunspecifiedRESOLVEDdebuglevel=-2 not allowed
12636SME Server 11.XunspecifiedCONFIRMEDnon-functional IPv6 loopback.
12635SME Server 11.XunspecifiedRESOLVEDmove to full systemdsupport
12634SME Server 11.XunspecifiedCONFIRMEDFailed to add route ... dev ..., using ip route replace instead.
12633SME Server 11.XunspecifiedRESOLVEDRuntimeError: dictionary changed size during iteration
12631SME Server 11.XunspecifiedRESOLVEDAttributeError: 'RPMTransactionItemWrapper' object has no attribute 'installed'
12630SME Server 11.XunspecifiedVERIFIEDSamba "domain logons" and "encrypt passwords" options are deprecated
12629SME Server 11.XunspecifiedCONFIRMEDmissing auhtconfig ; available authselect-compa
12628SME Server 11.XunspecifiedRESOLVEDmissing rp-pppoe
12627SME Server 11.XunspecifiedRESOLVEDperipheral dummy is missing
12626SME Server 11.XunspecifiedCONFIRMEDconsol show local network configuration first
12624SME Server 11.XunspecifiedRESOLVEDserviceControl: Couldn't system( /usr/bin/systemctl start radiusd.service): No such file or directory
12623SME Server 11.XunspecifiedRESOLVEDmissing dictionnaries templates
12622SME Server 11.XunspecifiedRESOLVEDmissing ppp
12621SME Server 11.XunspecifiedRESOLVEDremaining template expand for deprecated php
12620SME Server 11.XunspecifiedRESOLVED/var/lock -> ../run/lock
12619SME Server 11.XunspecifiedCONFIRMEDupdating /var/run/openldap → /run/openldap
12618SME Server 11.XunspecifiedCONFIRMEDset modules for installer and force them after
12617SME Server 11.XunspecifiedCONFIRMEDdrop horde
12616SME Server 11.XunspecifiedCONFIRMEDcreate comp.xml file for sme11
12615SME Server 11.XunspecifiedCONFIRMEDmove qpsmtpd to a full systemd unit
12614SME Server 11.XunspecifiedRESOLVEDwrong path for /etc/e-smith/events/S06store-ldap-smbpasswd
12613SME Server 10.X10.1VERIFIEDwrong path for /etc/e-smith/events/S06store-ldap-smbpasswd
12612SME Server 11.XunspecifiedRESOLVEDe-smith-bg[3804667]: unknown key type rsa1
12611SME Contribs10.0RESOLVEDupdate cron script with maintenance_window_start
12610SME Server 11.XunspecifiedVERIFIEDCorrectly disable slapd in smeserver-ldap
12609SME Contribs10.0CONFIRMEDsmeserver-nextcloud S30nextcloud-occ-conf errors when run via ddclient panel
12608SME Server 11.XunspecifiedCONFIRMEDAH01215: CGI::param called in list context can lead to vulnerabilities
12607SME Server 11.XunspecifiedIN_PROGRESSSamba workaround the end of SMB1 style domain logon
12606SME Server 11.XunspecifiedRESOLVEDself signed certificate keeps being regenerated
12605SME Server 11.XunspecifiedRESOLVEDMySQL ERROR: Cannot create output file //var/lib/mysql.private/set.password.973 No such file or directory
12604SME Server 11.XunspecifiedCONFIRMEDaudit error augenrules[730]: failure 1
12602SME Server 11.XunspecifiedRESOLVEDInternal Server Error
12601SME Server 11.XunspecifiedRESOLVEDAttributeError: 'RPMTransactionItemWrapper' object has no attribute 'po'
12600SME Contribs10.0RESOLVEDold manager free form domain table not localised
12599SME Contribs10.0CONFIRMEDddclient[3019]: Scalar value @total_payload{$ipv} better written as $total_payload{$ipv} at /usr/sbin/ddclient line 4120.
12598SME Contribs10.0RESOLVEDWARNING: file /etc/ddclient/ddclient.conf, line 50: Invalid Value for keyword 'protocol' = 'DYNHOST'
12596SME Server 11.XunspecifiedRESOLVEDpermissions
12595SME Server 10.X10.1CONFIRMEDsurprise
12594SME Server FutureUnknownCONFIRMEDmysql.init[681775]: Loading horde_mysql_create_tables into mysql [ÉCHOUÉ]
12593SME Server 11.XunspecifiedRESOLVEDmysql.init[681775]: Loading horde.mysql_set_password into mysql [ÉCHOUÉ]
12592SME Server 11.XunspecifiedCONFIRMEDsanitize mysql.dump
12591SME Server 11.XunspecifiedRESOLVEDadd user to dump
12590SME Server 11.XunspecifiedRESOLVEDerror on ntp update
12589SME Server 11.XunspecifiedRESOLVED/usr/sbin/portrelease missing
12587SME Contribs10.0CONFIRMEDcomposer installs skins in plugins folder
12585SME Server 11.XunspecifiedCONFIRMEDmultiple owner
12584SME Server 11.XunspecifiedRESOLVED/usr/lib/tmpfiles.d/radius.conf
12583SME Server 11.XunspecifiedRESOLVEDqpsmtpd line 54 /usr/local/bin/softlimit: No such file or directory
12582SME Contribs10.0UNCONFIRMEDDenyhosts ValidFrom from Configurations DB not used
12581SME Server 11.XunspecifiedRESOLVEDNo SID return on LDAP Modify
12580SME Server 11.XunspecifiedCONFIRMEDUpdate any other reference to e-smith-.*-update to smeserver
12579SME Server 11.XunspecifiedRESOLVEDUpdate the references to e-smith-.*-update in Createlinks are changed to smeserver-.*-update
12578SME Server 11.XunspecifiedCONFIRMEDMake sure all SMEServer packages that we re-build reference the correct license.
12577SME Server 11.XunspecifiedRESOLVEDMake sure license document in the git repo is the correct license
12575SME Server 11.XunspecifiedCONFIRMEDActivate the web console cockpit.socket
12574SME Server 10.X10.1VERIFIEDUpgrade spamasassin to 4.0.1
12573SME Server 11.XunspecifiedCONFIRMEDUpgrade spamasassin to 4.0.1
12572SME Server FutureUnknownCONFIRMEDServer Manager 2 - Make Tables which have the jsquery database applied min width
12571SME Server 11.XunspecifiedRESOLVEDdovecot.conf errors
12570SME Server 11.XunspecifiedRESOLVEDldap.init service fails on startup
12568SME Server 11.XunspecifiedCONFIRMEDuser@0.service failed to start
12567SME Server 11.XunspecifiedCONFIRMEDradiusd using deprecated ciphers
12566SME Server 11.XunspecifiedIN_PROGRESSdaemontools-encore 1.10-2 from openfusion obsoletes koozali build daemontools 0.76
12565SME Server 11.XunspecifiedCONFIRMEDconsole fails to enter configuration setup
12564SME Server 11.XunspecifiedRESOLVEDsshd Deprecated option UsePrivilegeSeparation
12563SME Server FutureUnknownCONFIRMEDHorde Alarms throws PHP fatal error
12558SME Server 11.XunspecifiedRESOLVEDsmeserver-support has yum related files
12557SME Server 11.XunspecifiedRESOLVEDulogd fails to start
12556SME Server 11.XunspecifiedRESOLVEDhttpd-e-smith fails to start
12555SME Server 11.XunspecifiedRESOLVEDhttpd-admin fails to start
12554SME Server 11.XunspecifiedRESOLVEDlogrotate[431564]: ALERT exited abnormally with [1]
12553SME Server 11.XunspecifiedRESOLVEDsshd fails to start /sbin/e-smith/systemd/sshd-prepare fails RSA1
12552SME Server 11.XunspecifiedCONFIRMEDCan't opendir(./** ): No such file or directory
12551SME Server 11.XunspecifiedRESOLVEDCan't load /proc/rtc into RNG to generate self signed cert
12550SME Server 11.XunspecifiedRESOLVEDno template found php55->71
12549SME Server 11.XunspecifiedRESOLVEDMigrating existing database yum_repositories: 4 errors
12548SME Server 11.XunspecifiedRESOLVEDmigrate//dovecot: Program fragment delivered error
12547SME Server 11.XunspecifiedRESOLVEDlogrotate[431564]: ALERT exited abnormally with [1]
12546SME Server 11.XunspecifiedRESOLVEDfailed to fix user group /etc/e-smith/events/post-install/S05init-accounts
12545SME Server 11.XunspecifiedRESOLVED/usr/sbin/rsyslogd: invalid option -- 'c'
12544SME Server 11.XunspecifiedRESOLVEDmissing rsyslog
12543SME Server 11.XunspecifiedRESOLVEDrework /etc/e-smith/events/actions/systemd-default
12542SME Server 10.X10.1UNCONFIRMEDerror 4 in php-fpm
12541SME Server 11.XunspecifiedRESOLVEDnetwork-scripts needs initscripts
12540SME Server 11.XunspecifiedCONFIRMEDuseradd: user 'apache' already exists
12539SME Server 11.XunspecifiedCONFIRMEDscriptlet: smeserver-manager-jsquery
12538SME Server 11.XunspecifiedRESOLVEDulogd : No such file or directory
Warnings were generated during the execution of function
  1. Report truncated - count greater than max allowed 101 > 100