You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Overview of the different machines we have gotten:
Maybe setup coturn Prometheus exporter. (Seen as a weekend project 🥇 )
Document all deployments as they are now
Setup and mount disks on the machines that need a lot of disk space (For disk setup on big machines). This is all hosts except the one ending with .31 and only 120 GB disk allocated.
lsblk # Check that you have a disk called xvdb that is not setup
sudo cgdisk /dev/xvdb # Setup new partition via TCL and call it 'data_disk'
lsblk # Check that you now have a portion on that disk
sudo mkfs -t ext4 /dev/xvdb1 # Format the disk partition
sudo mkdir /media/storage # Create a mounting point on your system
sudo blkid # take the UUID from the disk
sudo vim /etc/fstab # Add the following line: 'UUID="e8311df4...." /media/storage ext4 defaults 0 2' with the right UUID
sudo mount -av # Mount and check if successful
sudo chown agpbruger:agpbruger -R /media/storage/ # Permission fix
Setup Turn server
Setup Application server
The text was updated successfully, but these errors were encountered:
Overview of the deployment:

Overview of the different machines we have gotten:

Maybe setup coturn Prometheus exporter. (Seen as a weekend project 🥇 )
Document all deployments as they are now
Setup and mount disks on the machines that need a lot of disk space (For disk setup on big machines). This is all hosts except the one ending with .31 and only 120 GB disk allocated.
The text was updated successfully, but these errors were encountered: