Open Media Vault Setup:
Access OMV by typing in the IP address of the Pi into your web browser. OMV's web dashboard will show up. The default login:
User: admin
password: openmediavault
OMV Setup:
Change the Password: User Settings Icon in the top right of the web UI
Dashboard Setup: User Settings -> Dashboard
Setting up RAID:
Install RAID plugin: System -> plugins -> search for "md" -> Select openmediavault-md -> Install -> You should see Multiple Devices appear under Storage
Wipe Disks: Storage -> Disks -> Left Click each disk -> Wipe (eraser button) -> Confirm -> Quick
Setup RAID: Storage -> Multiple Devices -> Create (+ button) -> Level: RAID 5 -> Select Devices: all your drives you want in RAID -> Save
RAID 5 only works with the same storage amount HDDs
Setup File System: Create and Mount a File System (+ button) -> EXT4 -> Select the RAID device you just made -> Save
Set up a Shared Folder:
Storage -> Shared Folders -> Create (+ button) -> Name the Shared folder -> Change Permissions -> Save
Enable SMB/CIFS:
Enable SMB/CIFS service: Services -> Settings -> Click "Enabled" Check mark box -> Save
Shares -> Select the folder you want to share -> Change Public Setting if you want to (default No) -> Save
Create a User:
User Management -> Users -> Create (+ button) -> Name the user -> create the password -> Save
User Management -> Users -> Select a User -> Shared folder permissions (Folder with a key button) -> Give permissions to user
NOTE: When setting up Users, you will notice a user with the hostname of the Pi (Mine was pi-5-nas). This user is a part of many groups and is used as an SSH access point to OMV when you are initialy setting up OMV. DO NOT DELETE THIS USER. If you delete this user, you lose SSH permissions to the RPi and OMV. I found that you can setup a user with the same name (if accidentally deleted) in OMV, but I don't know if not having this default user messes anything else up in OMV.
Go to the OMV Web GUI -> Type in your IP address into your browser
login with admin credentials
User -> Create new user -> Name: pi-5-nas and create password -> groups -> ssh, users, and sudo -> Save
SSH into the Pi again through cmd: ssh pi-5-nas@192.168.1.XXX (Syntax: ssh username@pi_ip_address)
If your username and pass worked, you will see the error: Could not chdir to home directory /home/pi-5-nas: Permission denied
In SSH, run the commands :
sudo mkdir -p /home/pi-5-nas
sudo chown -R pi-5-nas:pi-5-nas /home/pi-5-nas
sudo chmod 755 /home/pi-5-nas
exit
SSH into the Pi again: ssh pi-5-nas@192.168.1.XXX
Check home directory: getent passwd pi-5-nas. You should see something like: /home/pi-5-nas
You should be able to SSH into OMV again now.
At this point, I just decided to reflash the SD Card and re-setup OMV
Important Things to Note About Shared Folders in OMV:
When you are accessing OMV shared folders through IP address/hostname in file explorer on a PC, you can login into multiple shared folders with different credentials. EX: I can login into "media" folder with user "Eddie" and "photos" folder with user "Bob" as long as I know both credentials.