Since we don't have SSH keys configured, you can access the droplet via the DigitalOcean console.
Option 1: Use DigitalOcean Console (Recommended)
- Go to: https://cloud.digitalocean.com/droplets/528049298
- Click "Console" button (top right, or in "Access" tab)
- You'll get a browser-based terminal
- Login as root (password will be emailed to you, or use password reset)
Once logged in, paste this command:
curl -fsSL https://raw.githubusercontent.com/dablackfox/IBG_HUB/main/rmm-psa-platform/devops/digitalocean/setup_on_droplet.sh | bash
This will download and run the setup script directly from GitHub.
Option 2: Setup SSH Keys (For Future Use)
On your local machine:
# Generate SSH key
ssh-keygen -t ed25519 -C "your_email@example.com"
# Copy public key
cat ~/.ssh/id_ed25519.pub
Add to DigitalOcean:
- Go to https://cloud.digitalocean.com/account/security
- Click "Add SSH Key"
- Paste your public key
- Name it (e.g., "my-laptop")
Manually add to droplet:
In the droplet console:
mkdir -p ~/.ssh
echo "YOUR_PUBLIC_KEY_HERE" >> ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
chmod 700 ~/.ssh
Then you can SSH normally:
Option 3: Password Reset
If you didn't receive the root password email:
- Go to: https://cloud.digitalocean.com/droplets/528049298
- Click "Access" tab
- Click "Reset Root Password"
- You'll receive a new password via email
- Use that password with: ssh root@209.38.80.86
Current Droplet Info
- ID: 528049298
- IP: 209.38.80.86
- Name: rmm-psa-demo
- Region: Sydney (syd1)
Quick Setup Commands
Once you're logged into the droplet console, you can either:
Method A: Run from GitHub (easiest)
curl -fsSL https://raw.githubusercontent.com/dablackfox/IBG_HUB/main/rmm-psa-platform/devops/digitalocean/setup_on_droplet.sh | bash
Method B: Copy script content manually If the above doesn't work, copy the entire content of devops/digitalocean/setup_on_droplet.sh and paste it into the console:
cat > /root/setup.sh << 'EOF'
[paste the entire script content here]
EOF
chmod +x /root/setup.sh
bash /root/setup.sh