Changes for page Proxmox Backup server

Last modified by Kevin Wiki on 2024/05/21 21:23

From version 18.1
edited by Kevin Wiki
on 2024/04/06 12:48
Change comment: There is no comment for this version
To version 19.1
edited by Kevin Wiki
on 2024/04/06 12:51
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -19,36 +19,45 @@
19 19  
20 20  There are currently 2 x 8TB WD drives. Current pool status:
21 21  
22 -{{{kevin@clio:~$ sudo zpool status pergamum
23 - pool: pergamum
24 - state: ONLINE
25 - scan: scrub repaired 0B in 09:52:23 with 0 errors on Sun Mar 10 10:16:24 2024
22 +(((
23 +{{code language="none"}}
24 +kevin@clio:~$ sudo zpool status pergamum
25 +pool: pergamum
26 +state: ONLINE
27 +  scan: scrub repaired 0B in 09:52:23 with 0 errors on Sun Mar 10 10:16:24 2024
26 26  config:
29 +        NAME                                            STATE     READ WRITE CKSUM
30 +        pergamum                                        ONLINE       0     0     0
31 +          raidz1-0                                      ONLINE       0     0     0
32 +            scsi-0QEMU_QEMU_HARDDISK_drive-scsi2-part1  ONLINE       0     0     0
33 +            sdc1                                        ONLINE       0     0     0
34 +errors: No known data errors
35 +{{/code}}
36 +)))
27 27  
28 - NAME STATE READ WRITE CKSUM
29 - pergamum ONLINE 0 0 0
30 - raidz1-0 ONLINE 0 0 0
31 - scsi-0QEMU_QEMU_HARDDISK_drive-scsi2-part1 ONLINE 0 0 0
32 - sdc1 ONLINE 0 0 0
33 33  
34 -errors: No known data errors}}}
35 -
36 -
37 37  === Creating and expanding zfs pool ===
38 38  
39 -```
41 +(((
42 +{{code language="none"}}
40 40  zpool create pergamum raidz /dev/disk/by-partuuid/9fab17e5-df2d-2448-b5d4-10193c673a6b /dev/disk/by-partuuid/f801ed37-1d6c-ee40-8b85-6bfc49aba0fb -f
41 41  zfs set mountpoint=/mnt/pergamum pergamum
42 42  (zpool import -c /etc/zfs/zpool.cache -aN)
43 43  zpool export pergamum
44 -```
47 +{{/code}}
48 +)))
45 45  
46 46  
51 +(((
47 47  have not tried yet, but adding another set of disks for an additional top-level virtual device to our existing RAID-Z pool:
48 -```
53 +
54 +{{code language="none"}}
49 49  zpool add -n pergamum raidz DISK1 DISK2
50 -```
56 +{{/code}}
57 +
58 +
51 51  ~> NOTE! `-n` is dry run, remove to commit.
60 +)))
52 52  
53 53  
54 54  == Access Control ==
... ... @@ -127,8 +127,9 @@
127 127  Cloud backup provider used is jottacloud. They provide a cli to easily add directories to sync to their cloud backup storage.
128 128  NOTE! This setup still uses user `kevin` and not the correct jottad user.
129 129  
130 -
131 -{{{# install jotta-cli
139 +(((
140 +{{code language="none"}}
141 +# install jotta-cli
132 132  sudo curl -fsSL https://repo.jotta.cloud/public.asc -o /usr/share/keyrings/jotta.gpg
133 133  echo "deb [signed-by=/usr/share/keyrings/jotta.gpg] https://repo.jotta.cloud/debian debian main" | sudo tee /etc/apt/sources.list.d/jotta-cli.list
134 134  sudo apt-get update
... ... @@ -136,9 +136,10 @@
136 136  
137 137  # configure runtime environment
138 138  sudo useradd -m jottad
139 -sudo usermod -a -G jottad backup}}}
149 +sudo usermod -a -G jottad backup
150 +{{/code}}
151 +)))
140 140  
141 -
142 142  Create systemd file: `/usr/lib/systemd/user/jottad.service ` and enable with :
143 143  
144 144  (((