Troubleshooting
Proxy won't start
Port is already in use
lsof -iTCP:1080 -sTCP:LISTEN -n -P
lsof -iTCP:2080 -sTCP:LISTEN -n -PGet-NetTCPConnection -LocalPort 1080
Get-NetTCPConnection -LocalPort 2080Data directory is not writable
# Make sure the directory exists and is owned by the proxy user
sudo mkdir -p ~/Library/Application Support/SpaceRouter Onion/
sudo chown spacerouter:spacerouter ~/Library/Application Support/SpaceRouter Onion/# Make sure the directory exists and is owned by the proxy user
sudo mkdir -p ~/.local/share/SpaceRouter Onion/
sudo chown spacerouter:spacerouter ~/.local/share/SpaceRouter Onion/# Make sure the directory exists and is owned by the current user
$dir = "$env:%APPDATA%\SpaceRouter Onion\"
New-Item -ItemType Directory -Force -Path $dir
$acl = Get-Acl $dir
$rule = New-Object System.Security.AccessControl.FileSystemAccessRule(
"spacerouter",
"FullControl",
"ContainerInherit,ObjectInherit",
"None",
"Allow"
)
$acl.SetAccessRule($rule)
Set-Acl -Path $dir -AclObject $aclDiscovery source is unreachable at startup
Can't reach /api/status
/api/statusThe proxy process isn't running
The API is bound to a different address
Firewall is blocking localhost (rare but real)
The listener is bound to a specific interface
Circuit build fails
Discovery returned zero nodes
No exit-capable nodes in the set
Handshake timeout against the guard
Collecting logs for a bug report
What to include in the report
What not to include
Last updated
Was this helpful?