mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-15 14:16:02 -06:00
[GH-ISSUE #989] cannot listen for clients: cannot bind address: Address already in use #788
Labels
No labels
HiDPI
bounty
bsd/freebsd
bsd/openbsd
bug
bug
build-infra
cantfix
critical
doc
duplicate
enhancement
fix-available
from git
from release
good first issue
help wanted
installer/package
invalid
linux
macOS
meta
needs testing
pull-request
query
question
regression
regression
v2.4.0
windows
wontfix
work-in-progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/barrier#788
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @apfaffman on GitHub (Dec 13, 2020).
Original GitHub issue: https://github.com/debauchee/barrier/issues/989
Hello, everyone.
Barrier v 2.3.3 on Fedora 33.
Can't get Barrier running as a server. The logs report the following when trying to start the service:
[2020-12-12T18:34:32] ERROR: cannot listen for clients: cannot bind address: Address already in use
[2020-12-12T18:34:32] DEBUG: retry in 1 seconds
[2020-12-12T18:34:33] ERROR: cannot listen for clients: cannot bind address: Address already in use
[2020-12-12T18:34:33] DEBUG: retry in 1 seconds
[2020-12-12T18:34:34] DEBUG: retry in 1 seconds
[2020-12-12T18:34:34] ERROR: cannot listen for clients: cannot bind address: Address already in use
This is with SSL enabled or disabled on default port 24800.
Seems like there's a simple fix here I'm missing. Anyone know?
@albertony commented on GitHub (Dec 13, 2020):
First guess would be that another instance of barrier server is already running, for some reason.
Have you checked that?
pidof barriersOr, some other process could be already bound to that port?
sudo netstat -tlpn | grep ':24800'@p12tic commented on GitHub (Jan 10, 2021):
Indeed, this seems to be most likely another instance of Barrier. We can't work around this, I'm thus closing the issue.
Please reopen if further investigation (e.g. by executing commands suggested here https://github.com/debauchee/barrier/issues/989#issuecomment-744002178) results in a different cause being uncovered.
@YKX-RL commented on GitHub (Feb 27, 2024):
The reason is that address is already in use. Use "ps aux | grep synergys" to find process id, then kill all of them. After that restart synergy. For more details, please check the address of this website "https://superuser.com/questions/1217379/synergy-error-message-cannot-listen-for-clients-cannot-bind-address-address-a".