5.4 KiB
| title | description | published | date | tags | editor | dateCreated |
|---|---|---|---|---|---|---|
| Setting Up Kopia | true | 2026-01-27T16:19:56.250Z | markdown | 2026-01-23T22:14:17.009Z |
Configure Kopia on ZNAS
Installed docker on ZNAS SERVER CERT SHA256: 696a4999f594b5273a174fd7cab677d8dd1628f9b9d27e557daa87103ee064b2
- Used the gui to create the first repository at /srv/vault/kopia_repository
- Entered the kopia container on znas
docker exec -it <name> /bin/sh - From the cli inside the container created the user for docker2
kopia server users add --ask-password admin@docker2
Configure Kopia on first client
- Use wget to get the kopia apt package and install on client
- use dpkg to install on client
- If this host has been configured before, remove old repository:
sudo kopia repository disconnect || truesudo rm -rf /root/.config/kopia
- Add new repository: `sudo kopia repo connect server --url=https://192.168.5.10:51515 --override-username=admin --server-cert-fingerprint=696a4999f594b5273a174fd7cab677d8dd1628f9b9d27e557daa87103ee064b2
- Create snapshot:
sudo kopia snapshot create /DockerVol/ - Add cronjob:
sudo crontab -e added: */180 * * * * /usr/bin/kopia snapshot create /DockerVol >> /var/log/kopia-cron.log 2>&1
Configure Kopia on Cindys desktop
- wised winget to get the ui and cli version
- Created user cindy@DESKTOP-QLSVD8P on repository server (password LucyDog123)
- On windows -
kopia repo connect server --url=https://192.168.5.10:51515 --override-username=cindy --server-cert-fingerprint=696a4999f594b5273a174fd7cab677d8dd1628f9b9d27e557daa87103ee064b2 - Ran first snapshot:
kopia snapshot create C:\Users\cindy - To save some space, modify the default policy
kopia policy set--global--add-ignore "**\AppData\Local\Temp\**"--add-ignore "**\AppData\Local\Packages**"` Note: When createing tasks for cindy used password Harvey123= (ms password for ms account) - Create a backup script (recommended)
a. Create a folder: C:\scripts
b. Create the file: C:\Scripts\kopia-nightly.ps1
# Set repo password (simplest method) $env:KOPIA_PASSWORD = "YOUR_REPOSITORY_PASSWORD" # Run backup kopia snapshot create C:\Users\cindy --progress - Schedule this via Task Scheduler
Split policies (Documents vs everything else)
Add backup failure notifications
Tune performance for LAN speed
Just say the word.
I would like to schedule a nightly backup
Perfect — let’s wire this up so it just runs every night and you never think about it again 😄 This is the clean, reliable way to schedule Kopia CLI on Windows.
I’ll assume:
Repo is already connected
You want to back up C:\Users\cindy
You’re okay using Windows Task Scheduler (best option)
1️⃣ Create a backup script (recommended)
Create a folder:
C:\Scripts
Create this file:
C:\Scripts\kopia-nightly.ps1
Put this in it:
Set repo password (simplest method)
$env:KOPIA_PASSWORD = "YOUR_REPOSITORY_PASSWORD"
Run backup
kopia snapshot create C:\Users\cindy --progress
🔐 Secure the script
Right-click → Properties → Security
Ensure only your user has read access
This prevents password exposure
If you want a more secure option later, we can move the password to Windows Credential Manager.
2️⃣ Create the scheduled task
Press Win + R → type:
taskschd.msc
Create Task (not “Basic Task”)
General tab
Name: Kopia Nightly Backup
✔ Run whether user is logged on or not
✔ Run with highest privileges
Configure for: your Windows version
Triggers tab
New…
Begin task: On a schedule
Daily
Time: 2:00 AM (or whenever you like)
✔ Enabled
Actions tab
New…
Action: Start a program
Program/script:
powershell.exe
Add arguments:
-ExecutionPolicy Bypass -File C:\Scripts\kopia-nightly.ps1
Start in:
C:\Scripts
Conditions tab (important)
Recommended settings:
✔ Wake the computer to run this task
❌ Stop if the computer switches to battery (your choice)
❌ Start only if on AC power (recommended for laptops)
Settings tab
✔ Allow task to be run on demand
✔ Run task as soon as possible after a scheduled start is missed
❌ Stop the task if it runs longer than… (don’t limit it)
3️⃣ Test the task immediately
Right-click the task → Run
Then check:
kopia snapshot list
You should see a fresh snapshot.
4️⃣ (Strongly recommended) Add logging
Update your script to this:
$env:KOPIA_PASSWORD = "YOUR_REPOSITORY_PASSWORD"
kopia snapshot create C:\Users\cindy --progress
| Tee-Object -FilePath C:\Logs\kopia.log -Append
Create the log folder once:
mkdir C:\Logs
Now you have a paper trail if anything ever fails.
5️⃣ Common laptop gotchas (especially Dell Latitudes)
Make sure:
Sleep is disabled or delayed overnight
Lid close action = Do nothing
Network adapter power saving = ❌ disabled
Otherwise the task runs, but the network drops mid-backup.
Quick health checks (monthly) kopia snapshot list kopia snapshot verify kopia repository status
Optional next upgrades
If you want, I can help you:
🔐 Store the password securely (no plaintext)
📧 Email yourself on backup failure
🗂️ Add multiple sources with different policies
🧹 Schedule weekly maintenance automatically
🐧 Verify snapshots from the Linux server
Just tell me how “hands-off” you want this to be — you’re already 90% of the way to a pro-grade backup setup 💪
user does not know her windows password, only her pin
Ah — that’s an important detail 👍