Step 2: System Tuning
Kernel parameter optimization, system limits, and disk formatting.
Step 2: System Tuning
1. Optimize Kernel Parameters (sysctl)
sudo nano /etc/sysctl.d/20-solana-udp-buffers.conf# Increase UDP Buffer sizes for high-volume gossip
net.core.rmem_max=134217728
net.core.rmem_default=134217728
net.core.wmem_max=134217728
net.core.wmem_default=134217728
# Increase memory map limit (Critical for Accounts DB)
# Allows the node to map the massive accounts database into RAM
vm.max_map_count=1000000
# Increase limit for open files (File Descriptors)
fs.nr_open=10000002. Configure User Limits (NOFILE)
3. Disk Partitioning & Mounting
4. CPU Performance Mode
✅ Checklist: Ready for Installation?
Last updated