Docs/Mirrors: Difference between revisions

(we fixed the ubuntu mirrors)
 
(7 intermediate revisions by the same user not shown)
The LUG Mirror server mirrors a number of different Linux distros.
Mirrors is a standalone [https://www.dell.com/en-us/shop/povw/poweredge-r730xd/1000 Dell R730xd] server (3.5" drive bay variant) running FreeBSD.
 
Currently, we mirror Debian (+ISOs), Arch Linux, CentOS (+AltArch), gentoo, Fedora (+EPEL &RPMfusion), and Ubuntu (+ISOs). The full list can be seen by going to https://mirrors.lug.mtu.edu/
It uses ZFS as the filesystem for the root pool and primary pool that's used for the distribution mirrors (the pool named <code>lug</code>)
 
=== Hardware ===
Mirrors is a standalone [https://www.dell.com/en-us/shop/povw/poweredge-r730xd/1000 Dell R730xd] server (3.5" drive bay variant) running FreeBSD.
 
Currently iDrac is non-functional, this should be investigated.
It used to use salt, but it broke when upgrading from FreeBSD 12-14. Currently, all maintenance is done by hand (this is a good thing)
 
=== Operating System ===
Mirrors runs FreeBSD.
 
It uses ZFS as the filesystem for the root pool and primary pool that's used for the distribution mirrors (the pool named <code>lug</code>)
 
It used to use salt, but it broke when upgrading from FreeBSD 12-14. Currently, all maintenance is done by hand (this is a good thing)
 
At its core, a mirror server performs two functions:
On our mirrors, this is accomplished with archvsync+cron to synchronize content with upstream, and vsftpd+rsyncd+nginx to handle hosting the content.
 
=== Certificate maintenance:Maintenance ===
 
==== Certificates ====
Put the certificate (the 'intermediate' download option from our Certificate Authority) in <code>/usr/local/share/certs/mirrors_lug_mtu_edu_bundle.cer</code>, and the key in <code>/usr/local/share/certs/mirrors_lug_mtu_edu.key</code>
 
You can view the nginx configuration in <code>/usr/local/etc/nginx/nginx.conf</code> to view and change settings. This file is no longer managed by salt, and can be edited by hand.
 
=== PullingCore from upstreamtasks ===
At its core, a mirror server performs two functions:
 
# Synchronizing the content from upstream mirrors to itself
# Hosting that downloaded content for end-users and other downstream mirrors to pull from
 
On our mirrors, this is accomplished with archvsync+cron to synchronize content with upstream, and vsftpd+rsyncd+nginx to handle hosting the content.
 
==== Pulling from upstream ====
 
===== ftpsync =====
The ftpsync utility from the archvsync project is what we use to synchronize content on upstream servers to Mirrorsour local Mirror server.
 
archvsync is a script by the Debian project to provision mirror servers, and should be all-inclusive.
It's nice because it prevents half-sync'd files from getting served to users, so they don't pull corrupted binaries that don't verify with the package signature.
 
This is especially important when acting as an upstream mirror for downstream mirrorsmirror servers, as they do not(?) typically check package authenticity, replying on end-user's package managers to check them.
 
Under the hood, ftpsync can use the ftp(?) or rsync protocols, and is determined by the ftpsync config for a distribution.
|rsync
|}
 
 
 
It's just a repo that was <code>git pull</code>'d, and was not natively installed on the system via pkg.
 
WhenIf we rebuild mirrors, we should either install it via pkg (if available) or <code>git pull</code> it anew, and place it in <code>/opt/archvsync/</code>
 
===== cron =====
<code>cron</code> calls <code>ftpsync</code> to run at certain times.
 
This is what determines that, say,Arch archLinux is synced with upstream every ~15 minutes, while Debian is only synced four times a day, for example.
 
This should be set according to theeach distribution's official docsrules on mirrorsmirror servers.
 
Most distros want tier 1's to sync 4 times a day, and setwant the exact hours/minutes slightlyset randomly so theythe Tier0's don't get every downstream serverTier1 hammering requests all at once.
 
Currently, this is the schedule Mirrors uses (all times in EST):
Keep in mind this is when syncing starts, it may take a moment before it's fully up-to-date with upstream.
 
==== Serving to downstream ====
<code>vsftpd</code> is the ftp daemon running on port <code>21</code>, and allows all recursive content inside <code>/lug</code> to be downloaded by anonymous users.
 
 
It has a hardcoded <code>if</code> block pointing to each distro's dataset path, I'm almost certain could just be replaced with <code>root /lug</code> in the <code>server</code> block.
 
 
 
salt.tar.gz contains all the configuration for salt, and the config files it uses to overwrite the config files located in the standard location (as well as the template files it uses to 'build' configs for services like rsyncd and archvsync when a new distro is added to the primary salt config)
 
 
=== Salt ===
Salt used to administer these services, but it's half-broken at the moment and ''should not be reinstalled'' (in my opinion).
 
As such, I think the way Mirrors is setup is essentially perfect, sans salt.
 
 
salt.tar.gz contains all the configuration for salt, and the config files it uses to overwrite the config files located in the standard location (as well as the template files it uses to 'build' configs for services like rsyncd and archvsync when a new distro is added to the primary salt config)