Troubleshooting
Mac Bluetooth Not Working? Try These Fixes
Mac Bluetooth refusing to pair, dropping AirPods, or showing 'unavailable'? Here's the full reset sequence for macOS Sonoma and Sequoia.
Bluetooth on a Mac usually works flawlessly until it doesn’t, and when it doesn’t, the menu bar icon goes gray with a slash through it and the System Settings panel says “Bluetooth: Not Available.” Restarting helps sometimes. Sometimes it doesn’t. Then you’re hunting for forum threads at 11 PM trying to pair AirPods that worked yesterday.
Here’s the actual fix sequence, ordered from least invasive to most. macOS Sonoma 14.x and Sequoia 15.x both behave the same way for these.
Step 1: Toggle Bluetooth from Control Center
Click the Control Center icon in the menu bar (the two pills) → click the Bluetooth tile → off, wait five seconds, on. Sometimes the Bluetooth daemon (bluetoothd) recovers cleanly from a toggle.
If the toggle does nothing — Bluetooth stays off, or the icon stays gray — proceed.
Step 2: Restart bluetoothd
Open Terminal:
sudo pkill bluetoothd
launchd will restart it automatically. If bluetoothd was hung, this clears the hang without rebooting. Watch the menu bar; the icon should refresh.
Step 3: Reset the Bluetooth module
In macOS Monterey and earlier, Apple shipped a “Reset the Bluetooth module” option in the Option-Shift Bluetooth menu. They removed that GUI in Ventura, but the underlying command still works. Open Terminal:
sudo pkill bluetoothd
sudo rm -rf /Library/Preferences/com.apple.Bluetooth.plist
sudo rm -rf /Library/Preferences/ByHost/com.apple.Bluetooth.*.plist
Restart the Mac. Bluetooth rebuilds its preferences from scratch. You’ll need to re-pair every device.
This is the closest equivalent to iOS’s “Reset Network Settings” for Bluetooth, and it fixes the majority of “Bluetooth not available” complaints.
Step 4: Unpair and re-pair the device
If only one device is misbehaving (your AirPods drop, but your Magic Mouse is fine):
- System Settings → Bluetooth.
- Hover over the problem device → click the (i) → Forget This Device.
- Put the device in pairing mode (AirPods: hold the case button until the LED blinks white; Magic Mouse: turn it off, on, and toggle the switch).
- Re-pair.
If the device shows “Connected” but doesn’t actually work (audio doesn’t play, mouse doesn’t move), that’s almost always a stale pairing record on the Mac.
Step 5: Move away from interference
Bluetooth lives in the 2.4 GHz band, the same as Wi-Fi 2.4 GHz, microwaves, and most wireless mice. If your Bluetooth misbehaves only:
- Near a microwave running.
- Near a USB 3 hard drive (USB 3 generates 2.4 GHz noise — Apple has a whole tech note about this).
- Near another Mac with Continuity active.
The fix is physical. Move the receiver/dongle, switch USB drives to USB-C ports on the opposite side, separate Macs by at least a few feet.
Step 6: Check power management
macOS occasionally turns Bluetooth off to save power and forgets to turn it back on. Check:
sudo pmset -g
Look for the bluetoothd and wakeup_with_bt entries. They should be active. If they’re not:
sudo pmset -a bt_keyboard_wake 1
Restart and watch.
Step 7: Reset NVRAM (Intel only)
This still helps on Intel Macs for Bluetooth and audio routing weirdness. Apple Silicon Macs reset NVRAM automatically, so this only applies to pre-2020 Macs.
- Shut down.
- Press the power button and immediately hold Cmd+Option+P+R.
- Hold for 20 seconds. The Mac may chime twice.
- Release.
Step 8: Check for problematic apps
Some third-party apps hook Bluetooth in ways that break it. Common offenders:
- Bose Music app: occasionally locks the Bluetooth connection.
- Tools like ToothFairy: keep audio routing weird if uninstalled improperly.
- OBS with a virtual audio source: can confuse the Mac’s audio routing.
- Any “audio enhancement” app: SoundSource, Boom 3D, etc.
Quit them and toggle Bluetooth. If pairing works after quitting, you’ve found the culprit. If you uninstalled one of these but Bluetooth is still flaky, the audio routing extensions stuck around. Sweep’s app uninstaller handles audio extension removal as part of full app cleanup.
Step 9: Reset the SMC (Intel only)
The SMC controls power, fans, and some peripheral interfaces. Resetting can fix Bluetooth on Intel Macs.
T2 / non-T2 Intel desktops: shut down, hold the power button for 10 seconds, release, press power.
Intel MacBooks with T2 chip: shut down, hold Control+Option+Shift (right shift) for 7 seconds, then add the power button for 7 more seconds. Release all, wait, press power.
Apple Silicon doesn’t have an SMC, so this doesn’t apply.
Step 10: Check the Bluetooth log
Console.app → search “bluetooth.” Filter by errors. You’ll see entries from bluetoothd indicating what’s failing. Common entries:
- “Failed to connect HID device” → device-side problem; re-pair.
- “Authentication failed” → stale pairing keys; unpair both sides and try again.
- “Power state denied” → power management blocking; reboot.
- “controller restart” → kernel-level issue; reset Bluetooth module per Step 3.
Step 11: Test in a different user account
Create a new user (System Settings → Users & Groups → Add User). Log into it. Try Bluetooth there.
If Bluetooth works fine in the new user, the issue is in your user-level prefs, not the system. Look at:
~/Library/Preferences/com.apple.bluetooth.plist
~/Library/Preferences/ByHost/com.apple.Bluetooth.*.plist
Move both to the desktop, log out, log back in.
Step 12: Boot in Safe Mode
Safe Mode loads only Apple’s kernel extensions and skips third-party login items.
- Apple Silicon: shut down, hold power, “Loading startup options,” select disk while holding Shift, Continue in Safe Mode.
- Intel: shut down, press power, hold Shift until login window.
If Bluetooth works in Safe Mode but not normal mode, something installed is breaking it. Most likely a VPN, antivirus, or audio enhancement that loaded a system extension.
Step 13: Check for dead batteries
This sounds dumb but it costs you nothing. AirPods with one earbud at 3% battery often appear connected but don’t pass audio. Magic Mouse and Magic Trackpad below 10% can drop signal mid-session. Charge everything fully and re-test.
If it’s a Bluetooth keyboard with replaceable batteries, just swap them. The “low battery” warning in macOS lags reality by a few hours.
Step 14: USB Bluetooth dongle test
This is the definitive hardware test. Buy or borrow a $15 Bluetooth USB adapter. Plug it in. macOS will use it instead of the built-in chip. If pairing works through the dongle, your built-in Bluetooth chip is the problem and that’s a hardware service ticket.
The built-in Bluetooth on Apple Silicon Macs is on the SoC, so a hardware fault there means motherboard repair. On Intel Macs it’s a daughtercard, sometimes user-replaceable on older MacBook Pros.
Step 15: When you’ve truly tried everything
If steps 1-14 don’t fix it and a USB dongle works:
- The Bluetooth chip itself has an issue.
- Schedule an Apple Genius Bar appointment with diagnostics already run.
If a USB dongle also fails to pair the same device:
- The device itself is broken.
- Test it on another Mac, an iPhone, or a PC.
The vast majority of “Mac Bluetooth not working” complaints are solved by Step 3 (the deep reset), Step 5 (interference), or Step 8 (a misbehaving third-party app). Working through them in order saves you from blowing up your environment with a full OS reinstall.