Could not bind socket: Address already in use The 2019 Stack Overflow Developer Survey Results...
Circular reasoning in L'Hopital's rule
How to determine omitted units in a publication
How to type a long/em dash `—`
Is every episode of "Where are my Pants?" identical?
Single author papers against my advisor's will?
Keeping a retro style to sci-fi spaceships?
University's motivation for having tenure-track positions
Can each chord in a progression create its own key?
Is this wall load bearing? Blueprints and photos attached
Button changing its text & action. Good or terrible?
How to read αἱμύλιος or when to aspirate
Are there continuous functions who are the same in an interval but differ in at least one other point?
US Healthcare consultation for visitors
What's the point in a preamp?
Can I visit the Trinity College (Cambridge) library and see some of their rare books
Can the DM override racial traits?
How did passengers keep warm on sail ships?
Did the new image of black hole confirm the general theory of relativity?
How did the audience guess the pentatonic scale in Bobby McFerrin's presentation?
Sub-subscripts in strings cause different spacings than subscripts
Simulating Exploding Dice
First use of “packing” as in carrying a gun
Am I ethically obligated to go into work on an off day if the reason is sudden?
Homework question about an engine pulling a train
Could not bind socket: Address already in use
The 2019 Stack Overflow Developer Survey Results Are In
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraApache can't bind to address [::]:80, already in useDebian: Some packages could not be installedBIND file not workingcannot start mysql server bind socket deniedBind & Debian - Host not foundBind IP address to applicationpostgresql 9.1 raspberry pi could not bind IPv4 socketSYNERGY ERROR MESSAGE: cannot listen for clients: cannot bind address: Address already in usessh connect to host X.X.X.X port 22: connection refusedCould not bind socket : Permission denied
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm using port 8082 in dockerfile: ENV FILESERVER_PORT 8082
.
When starting seafile with:
sudo bash /opt/seafile/seafile-server-6.3.4/seafile.sh start
I get the error http-server.c(2197): Could not bind socket: Address already in use
I tried to delete ccnet.sock
and starting docker again. That didn't help.
Netstat is showing:
tcp6 0 0 :::8082 :::* LISTEN 4993/docker-proxy
tcp6 0 0 :::8090 :::* LISTEN 5321/docker-proxy
tcp6 0 0 :::8000 :::* LISTEN 5007/docker-proxy
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 899/mysqld
sudo docker ps:
#####:~$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
############ mdh_seafile "/bin/sh -c 'bash /s…" 23 minutes ago Up 3 minutes 0.0.0.0:8000->8000/tcp, 0.0.0.0:8082->8082/tcp mdh_seafile_1_f2341d904d27
############ mdh_owncloud "/bin/sh -c 'bash /s…" 22 hours ago Up 3 minutes 0.0.0.0:8090->80/tcp mdh_owncloud_1_260c3a56f2a5
############ mysql "docker-entrypoint.s…" 26 hours ago Up 3 minutes 3306/tcp, 33060/tcp mdh_db_1_46bebe733124
I tried changing the port in docker-compose from:
ports:
- "8000:8000"
- "8082:8082
to
ports:
- "8001:8001"
- "8083:8083
But it just told me the same.
Also netstat shows just one output:
sudo netstat -pna | grep 8082
tcp6 0 0 :::8082 :::* LISTEN 19685/docker-proxy
linux debian docker
New contributor
add a comment |
I'm using port 8082 in dockerfile: ENV FILESERVER_PORT 8082
.
When starting seafile with:
sudo bash /opt/seafile/seafile-server-6.3.4/seafile.sh start
I get the error http-server.c(2197): Could not bind socket: Address already in use
I tried to delete ccnet.sock
and starting docker again. That didn't help.
Netstat is showing:
tcp6 0 0 :::8082 :::* LISTEN 4993/docker-proxy
tcp6 0 0 :::8090 :::* LISTEN 5321/docker-proxy
tcp6 0 0 :::8000 :::* LISTEN 5007/docker-proxy
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 899/mysqld
sudo docker ps:
#####:~$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
############ mdh_seafile "/bin/sh -c 'bash /s…" 23 minutes ago Up 3 minutes 0.0.0.0:8000->8000/tcp, 0.0.0.0:8082->8082/tcp mdh_seafile_1_f2341d904d27
############ mdh_owncloud "/bin/sh -c 'bash /s…" 22 hours ago Up 3 minutes 0.0.0.0:8090->80/tcp mdh_owncloud_1_260c3a56f2a5
############ mysql "docker-entrypoint.s…" 26 hours ago Up 3 minutes 3306/tcp, 33060/tcp mdh_db_1_46bebe733124
I tried changing the port in docker-compose from:
ports:
- "8000:8000"
- "8082:8082
to
ports:
- "8001:8001"
- "8083:8083
But it just told me the same.
Also netstat shows just one output:
sudo netstat -pna | grep 8082
tcp6 0 0 :::8082 :::* LISTEN 19685/docker-proxy
linux debian docker
New contributor
add a comment |
I'm using port 8082 in dockerfile: ENV FILESERVER_PORT 8082
.
When starting seafile with:
sudo bash /opt/seafile/seafile-server-6.3.4/seafile.sh start
I get the error http-server.c(2197): Could not bind socket: Address already in use
I tried to delete ccnet.sock
and starting docker again. That didn't help.
Netstat is showing:
tcp6 0 0 :::8082 :::* LISTEN 4993/docker-proxy
tcp6 0 0 :::8090 :::* LISTEN 5321/docker-proxy
tcp6 0 0 :::8000 :::* LISTEN 5007/docker-proxy
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 899/mysqld
sudo docker ps:
#####:~$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
############ mdh_seafile "/bin/sh -c 'bash /s…" 23 minutes ago Up 3 minutes 0.0.0.0:8000->8000/tcp, 0.0.0.0:8082->8082/tcp mdh_seafile_1_f2341d904d27
############ mdh_owncloud "/bin/sh -c 'bash /s…" 22 hours ago Up 3 minutes 0.0.0.0:8090->80/tcp mdh_owncloud_1_260c3a56f2a5
############ mysql "docker-entrypoint.s…" 26 hours ago Up 3 minutes 3306/tcp, 33060/tcp mdh_db_1_46bebe733124
I tried changing the port in docker-compose from:
ports:
- "8000:8000"
- "8082:8082
to
ports:
- "8001:8001"
- "8083:8083
But it just told me the same.
Also netstat shows just one output:
sudo netstat -pna | grep 8082
tcp6 0 0 :::8082 :::* LISTEN 19685/docker-proxy
linux debian docker
New contributor
I'm using port 8082 in dockerfile: ENV FILESERVER_PORT 8082
.
When starting seafile with:
sudo bash /opt/seafile/seafile-server-6.3.4/seafile.sh start
I get the error http-server.c(2197): Could not bind socket: Address already in use
I tried to delete ccnet.sock
and starting docker again. That didn't help.
Netstat is showing:
tcp6 0 0 :::8082 :::* LISTEN 4993/docker-proxy
tcp6 0 0 :::8090 :::* LISTEN 5321/docker-proxy
tcp6 0 0 :::8000 :::* LISTEN 5007/docker-proxy
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 899/mysqld
sudo docker ps:
#####:~$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
############ mdh_seafile "/bin/sh -c 'bash /s…" 23 minutes ago Up 3 minutes 0.0.0.0:8000->8000/tcp, 0.0.0.0:8082->8082/tcp mdh_seafile_1_f2341d904d27
############ mdh_owncloud "/bin/sh -c 'bash /s…" 22 hours ago Up 3 minutes 0.0.0.0:8090->80/tcp mdh_owncloud_1_260c3a56f2a5
############ mysql "docker-entrypoint.s…" 26 hours ago Up 3 minutes 3306/tcp, 33060/tcp mdh_db_1_46bebe733124
I tried changing the port in docker-compose from:
ports:
- "8000:8000"
- "8082:8082
to
ports:
- "8001:8001"
- "8083:8083
But it just told me the same.
Also netstat shows just one output:
sudo netstat -pna | grep 8082
tcp6 0 0 :::8082 :::* LISTEN 19685/docker-proxy
linux debian docker
linux debian docker
New contributor
New contributor
edited yesterday
Ora nge
New contributor
asked yesterday
Ora ngeOra nge
11
11
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Ora nge is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1424241%2fcould-not-bind-socket-address-already-in-use%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Ora nge is a new contributor. Be nice, and check out our Code of Conduct.
Ora nge is a new contributor. Be nice, and check out our Code of Conduct.
Ora nge is a new contributor. Be nice, and check out our Code of Conduct.
Ora nge is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1424241%2fcould-not-bind-socket-address-already-in-use%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown