Fix Discord Bot Offline / Not Responding
bot offlinenot responding to commandsPrivileged intentdisconnectsA Discord bot that's offline or silent usually comes down to the token, gateway intents, permissions, or where it's hosted. Here's how to work through it.
Bot shows offline
If the bot is offline, its process isn't running or can't log in. Check it's actually running and the token is correct (a reset token invalidates the old one):
- Is the bot process running? Restart it and watch the console for a login error.
- Is the token valid? Regenerate it in the Developer Portal and update your config/env.
- Never commit your token publicly — Discord auto-invalidates leaked tokens.
Online but ignoring commands
If it's online but silent, it's usually gateway intents or permissions. Message-content is a privileged intent you must enable:
# Discord Developer Portal → your app → Bot
# enable: MESSAGE CONTENT INTENT (and Server Members if needed)
# and request the same intents in your bot code
Permissions & slash commands
- The bot's role needs permission to read/send in the channel.
- For slash commands, make sure they're registered (globally or per-guild) and the bot has the applications.commands scope.
- Check the bot role is above the roles it needs to manage.
A bot on your PC goes offline when you close it. For 24/7 uptime, run it on a VDS under a process manager (pm2, systemd or screen) so it restarts on crash and boot.
Offline = process/token. Silent = intents/permissions. For uptime, host it on a VDS under pm2/systemd.
Discord is a trademark of Discord Inc. ESAGAMES is an independent hosting provider, not affiliated with or endorsed by Discord Inc.
Host your bot 24/7 on a VDS
Our VDS plans keep your Discord bot online around the clock on protected NVMe infrastructure in Frankfurt.
Frequently asked questions
Why is my Discord bot offline?
Its process isn't running or it can't authenticate. Restart it and check the console — most often the token is wrong or was regenerated. Update the token and keep the process running 24/7.
Why is my bot online but not responding to messages?
Usually the Message Content privileged intent isn't enabled, or the bot lacks channel permissions. Enable the intent in the Developer Portal and request it in code, and check the bot's role permissions.
How do I keep a Discord bot running 24/7?
Host it on an always-on machine like a VDS and run it under a process manager (pm2, systemd or screen) so it stays up, restarts on crash, and starts on boot — not on your home PC.
Related articles
Fix SSH "Connection refused" / "Connection timed out"
SSH "connection refused" vs "timed out" — what each means and the exact steps to fix them.
Read fix Linux & VPSFix "Permission denied" on Linux (chmod & chown Explained)
"Permission denied" on a script or file? Understand chmod/chown and fix it the right way.
Read fix Linux & VPSHow to Check CPU, RAM & Disk Usage on a Linux Server
The essential commands to check CPU, RAM and disk on Linux — and find what's eating them.
Read fix