Installation
SSH into your server
ssh root@<YOUR_SERVER_IP>Install essential tools
apt update
apt install -y curl wget git build-essential pkg-config libssl-dev screen ufw unzip nanoIncrease your open files limit
ulimit -n 65535Create a folder for FOMO
mkdir -p /root/fomo
cd /root/fomoDownload the release zip
wget https://github.com/FOMO-MEV/FOMO-solana-arbitrage-aggregator-bot/archive/refs/tags/v2.0.2.zip -O fomo-v2.0.2.zipUnzip it
Move the files into /root/fomo (the zip creates a versioned folder)
Config setup (required)
Edit it
Make files executable
Encrypt your key (required)
Run FOMO continuously (recommended)
Create the systemd service
Paste this
Enable + start
Viewing running bot
To exit screen without stopping the bot
If you edit config.toml, restart to apply changes
To stop the bot (and service), run this command
Last updated