Common issues and solutions for mc-webui.
Check logs:
docker compose logs -f mc-webuiCommon causes:
- Serial port not found → Verify
MC_SERIAL_PORTin.env - Permission denied → Add user to dialout group
- Port 5000 already in use → Change
FLASK_PORTin.env
Check if port is open:
sudo netstat -tulpn | grep 5000Check firewall:
# Allow port 5000 (if using UFW)
sudo ufw allow 5000/tcpCheck container is running:
docker compose psCheck device connection:
# Check container logs for device communication
docker compose logs -f mc-webuiCheck database:
# Verify the database file exists
ls -la data/meshcore/*.dbCheck System Log in the web UI (Menu → System Log) for real-time device event information.
# Check if device is connected
ls -l /dev/serial/by-id/
# Verify device permissions
sudo chmod 666 /dev/serial/by-id/usb-Espressif*Check device connection:
ls -l /dev/serial/by-id/Restart container:
docker compose restart mc-webuiCheck device permissions:
ls -l /dev/serial/by-id/usb-Espressif*Should show crw-rw---- with group dialout.
Symptoms:
- Container logs show repeated
no_event_receivederrors and restarts:ERROR:meshcore:Error while querying device: Event(type=<EventType.ERROR: 'command_error'>, payload={'reason': 'no_event_received'}) - Device name not detected (auto-detection fails)
- All commands timeout in the Console
What this means:
The serial connection to the USB adapter (e.g. CP2102) is working, but the MeshCore device firmware is not responding to protocol commands. The device boots (serial port connects), but the application code is not running properly.
What does NOT help:
- Restarting Docker containers
- Restarting the host machine
- USB reset or USB power cycle (only resets the USB-to-UART adapter, not the MeshCore radio module)
Fix: Re-flash the firmware
The MeshCore device firmware is likely corrupted. Re-flash the latest firmware using the MeshCore Flasher:
- Download the latest firmware from MeshCore releases
- Flash using MeshCore Flasher or esptool
- Restart mc-webui:
docker compose up -d
This can happen after a power failure during OTA update, flash memory corruption, or other hardware anomalies.
If using Bluetooth Low Energy (BLE) transport, see the dedicated Bluetooth Pairing Guide for setup and troubleshooting, including:
- Host preparation (BlueZ configuration,
ControllerMode = le) - Pairing with fixed PIN
- Trusting the device for automatic reconnection
- Diagnosing connection loops and stale BlueZ connections
Check logs:
# mc-webui container logs
docker compose logs -f mc-webuiYou can also check the System Log in the web UI (Menu → System Log) for real-time information about contact events and settings changes.
docker compose logs -f mc-webuidocker compose restart mc-webui# Start the application
docker compose up -d
# Stop the application
docker compose down
# Rebuild after code changes
docker compose up -d --builddocker compose psdocker compose exec mc-webui shAll important data is in the data/ directory.
You can create and download database backups directly from the web UI:
- Click the menu icon (☰) → "Backup"
- Click "Create Backup" to create a timestamped backup
- Click "Download" to save a backup to your local machine
cd ~/mc-webui
tar -czf ../mc-webui-backup-$(date +%Y%m%d).tar.gz data/
# Verify backup
ls -lh ../mc-webui-backup-*.tar.gz- Weekly backups of
data/directory - Before major updates
- After significant configuration changes
# Stop application
cd ~/mc-webui
docker compose down
# Restore data
tar -xzf ../mc-webui-backup-YYYYMMDD.tar.gz
# Restart
docker compose up -dAfter successful installation:
- Join channels - Create or join encrypted channels with other users
- Configure contacts - Enable manual approval if desired
- Test Direct Messages - Send DM to other COM contacts
- Set up backups - Schedule regular backups of
data/directory - Read full documentation - See User Guide for all features
Documentation:
- User Guide - How to use all features
- Architecture - Technical documentation
- README - Installation guide
- MeshCore docs: https://meshcore.org
Issues:
- GitHub Issues: https://github.com/MarekWo/mc-webui/issues
- Check existing issues before creating new ones
- Include logs when reporting problems (use Menu → System Log for easy access)