xbazzi / pve-ha-mgmt

0 likes
0 forks
1 files
Last active 1752043946
1 # ha-manager set vm:100 --state stopped

xbazzi / apply_fstab_changes

0 likes
0 forks
1 files
Last active 1752040121
1 systemctl daemon-reload
2 mount -a

javif89 / New postgres DB and user

0 likes
0 forks
1 files
Last active 1740724148
This can be used when you have an app that needs postgres and you want to quickly make a new db for it with a user
1 CREATE DATABASE nocodb;
2 create user nocodb with password '';
3 grant all privileges on schema public to nocodb
Newer Older