You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.2 KiB

##############################################################################
Adding a new metal server node for Proxmox.
Allocate IP on firewall and set up port forwarding for ssh.
Run bootstrap file such as forksand-sf-005-bootstrap from
../sharkfork-bootstrap/forksand-sf-005-bootstrap
##############################################################################
Log into web interface:
Set up tunnel:
ssh -N -C -L 18025:localhost:8006 sf-005
Then in web browser go to:
https://localhost:18025/
Log in.
Set up Proxmox subscription key.
See:
../sharkfork-bootstrap/forksand-sf-proxmox
##############################################################################
6 years ago
# unlock example:
6 years ago
qm unlock 102
##############################################################################
6 years ago
# Resize disk:
apt install parted
# Delete partition, create new one new full size, write.
6 years ago
# If there is a GPT disklabel, hit "g" to create a new label. (This won't change partition label, /etc/ftab is Ok unchanged.)
6 years ago
fdisk /dev/FOO
# Re-read partition table
6 years ago
partprobe -s
6 years ago
# Resize filesystem
resize2fs -p /dev/FOO
##############################################################################