A comprehensive guide on how to deploy Sorada for yoru own SVM instance
System Requirements
Operating System
Ubuntu Server 22.04 LTS
Hardware Requirements
CPU: 2-core
RAM: 8GB
SSD: 16GB
Server Port Policy
Open port 80 to support RPC external services.
System Tuning
Optimize sysctl knobs
sudobash-c"cat >/etc/sysctl.d/21-haproxy.conf <<EOF# Increase system level number of allowed open file descriptorsfs.nr_open=1100000fs.file-max=1100000# Set tcp confignet.ipv4.ip_local_port_range=5000 65000net.ipv4.tcp_syncookies = 1net.core.somaxconn = 4096EOF"sudosysctl-p/etc/sysctl.d/21-haproxy.conf
Increase systemd file limits
sudomkdir/etc/systemd/system/haproxy.service.dsudobash-c"cat >/etc/systemd/system/haproxy.service.d/21-override.conf <<EOF[Service]# Increase user level number of hard limit and soft limit of file descriptorsLimitNOFILE=1000000EOF"sudosystemctldaemon-reloadsudosystemctlenablehaproxy