Building a Storage Server

From Da Nerd Mage Wiki
Revision as of 15:08, 3 August 2024 by Tinker (talk | contribs) (Created page with "{{{!}} class="wikitable" style="float: right; width: 322px;" border="2" {{!}}+ Proven on: {{!}}- --="" debian="" {{!}} style="text-align: center; width: 60px;" {{!}} [[File:Logo Debian.png{{!}}60px{{!}}link=https://www.debian.org/{{!}}center{{!}}middle{{!}}frameless]] {{!}} style="text-align: center; width: 40px;" {{!}} 12 (bookworm) {{!}} <br> {{!}}} We will be creating our storage server as an LXC under Proxmox with dedicated physical drives on the physical server....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Proven on:
Logo Debian.png
12 (bookworm)


We will be creating our storage server as an LXC under Proxmox with dedicated physical drives on the physical server.

(NOTE: any file/folder names in bold & italic here are examples of what I'm doing on a local system & may be different depending on YOUR needs...)

Building the LXC under Proxmox

Configuring the LXC

Configure this as a Privileged container.

Under Options / Features, turn on Nesting, NFS & SMB/CIFS.

It will simply your life if you can set up local users matching each network user that will be accessing this server. On my network, there are only 3 users that match this criteria. But, you may want to look into kerberos or some such.

Setting up dedicated drives

Prepping the shares "to be"

  • Create the starting points
    • sudo mkdir /Backups
    • sudo mkdir /Media
    • sudo mkdir /Documents
  • Create the folders to be shared
    • sudo mount -o bind /mnt/Storage-3/Cecil-Backup/ /Backups/Cecil
    • sudo mount -o bind /mnt/Storage-3/Cleanup-Space/Photos /Media/Photos
    • etc, etc, etc...

NFS

See: Setting up NFS for file sharing

Configuring the NFS shares

SMB

See: Installing Samba from the command line

Configuring the SMB shares

FTP

See: FTP Serving

Configuring the FTP shares