Troubleshooting
September 13, 2026 · View on GitHub
Connection problems
RuntimeError: NodeIdentity not set
No credentials were supplied via CLI flags and the identity file is missing or incomplete.
Fix:
hivemind-client set-identity \
--host ws://your-hive-host:5678 \
--key YOUR_ACCESS_KEY \
--password YOUR_PASSWORD
Or pass --host, --key, and --password directly on the command line.
Invalid host, please specify a protocol
The host string did not start with ws:// or wss://. The satellite auto-prepends ws:// when it detects no protocol. Check the value you passed. If it contains https:// or a stray character, the auto-fix does not apply.
Fix: use --host ws://192.168.1.10:5678 or --host wss://myhive.example.com:5678.
TLS / SSL handshake errors (wss://)
If the hive uses a self-signed certificate, pass --selfsigned:
hivemind-voice-sat --host wss://myhive.local:5678 --selfsigned
For a CA-signed certificate that still fails: verify the system CA bundle is up to date (sudo update-ca-certificates on Debian/Ubuntu).
Connects then immediately disconnects
- Wrong access key or password. Regenerate with
hivemind-core add-clienton the hive. - The client entry was deleted on the hive. Re-add it.
- A firewall blocks port 5678. Check both ends.
No audio input (microphone)
Satellite starts but never hears the wakeword
- Confirm the mic is visible to the OS:
arecord -l - Record a short clip to confirm the mic works:
arecord -d 3 -f cd /tmp/test.wav && aplay /tmp/test.wav - Check the
microphone.moduleinmycroft.conf. If the plugin is missing, install it:pip install ovos-microphone-plugin-alsa # Linux ALSA pip install ovos-microphone-plugin-sounddevice # cross-platform - If using ALSA, set
device_nameexplicitly (see Deployment). - Ensure the running user is in the
audiogroup:groups $USER # should include "audio" sudo usermod -aG audio $USER
TypeError: 'NoneType' object is not callable when the listener starts
The base package installs no microphone plugin. The default configuration asks for
ovos-microphone-plugin-alsa, and when no microphone plugin is installed the listener
fails with this TypeError, which does not name the missing plugin. Install a
microphone backend, for example with the [linux] or [mac] extra above.
A device with no audio hardware
A test box or CI runner has no microphone. ovos-microphone-plugin-files reads WAV
files instead: it watches ~/file_microphone, reads each file dropped there as
microphone input, and then deletes it.
pip install --pre ovos-microphone-plugin-files
{ "listener": { "microphone": { "module": "ovos-microphone-plugin-files" } } }
Wakeword not triggering
- The wakeword plugin this package installs is
ovos-ww-plugin-vosk. Verify it is installed:pip show ovos-ww-plugin-vosk - Check the configured wakeword phrase matches what you are saying. Default is Hey Mycroft.
- Increase microphone gain or move closer. VAD may be clipping quiet speech.
- Try disabling the wakeword with continuous listening to isolate whether the issue is wakeword-specific:
{ "listener": { "continuous_listen": true } } ImportError: Wake Word hey_mycroft_precise with module ovos-ww-plugin-precise failed to loadat startup means the configuration names the precise plugin, which is not installed. The stock OVOS configuration does this unlessmycroft.confsetshey_mycrofttoovos-ww-plugin-voskas in the README. OVOS then loads the vosk fallback, so the wakeword can still work. Set the vosk module inmycroft.confto stop the error.- The vosk plugin downloads its language model from
alphacephei.comon its first start. A device with no internet access at that moment has no wakeword. Give it network access for the first start, or copy the model into~/.local/share/vosk/beforehand.
STT not working
Satellite transcribes silence or garbage
- Default STT is
ovos-stt-plugin-serverpointing to a remote endpoint. If the endpoint is unreachable, transcription fails silently. - Switch to a fully local plugin for testing:
pip install ovos-stt-plugin-faster-whisper{ "stt": { "module": "ovos-stt-plugin-faster-whisper", "ovos-stt-plugin-faster-whisper": { "model": "tiny" } } }
STT plugin import error
Plugin name in stt.module does not match the installed package entry point. Run:
ovos-plugin-manager --list stt
to see available STT plugins.
No audio output (TTS)
Responses arrive but nothing is spoken
- Test the system audio output:
speaker-test -t wav -c 2 - Check
tts.moduleinmycroft.conf. Default isovos-tts-plugin-server. - For a local TTS test:
pip install ovos-tts-plugin-piper{ "tts": { "module": "ovos-tts-plugin-piper", "ovos-tts-plugin-piper": { "voice": "en_US-lessac-medium" } } } - On headless Pi, ensure ALSA default output is set (see Deployment).
STT/TTS model download failures
Plugins that download models on first use (Vosk, Faster-Whisper, Piper) write to ~/.local/share/ by default. Ensure there is enough disk space:
df -h ~/.local
If the download fails midway, delete the partial model directory and restart. For offline environments, pre-download the models and configure the plugin to use the local path. Consult the individual plugin's README.
Logs
Default log level is INFO. Increase verbosity:
{ "log_level": "DEBUG" }
Log output goes to the terminal. When running under systemd:
sudo journalctl -u hivemind-voice-sat -f