django app not being served on digitalocean droplet
I'm following this tutorial online https://simpleisbetterthancomplex.com/tutorial/2016/10/14/how-to-deploy-to-digital-ocean.html
I get to an intermediary step where I want to check if I can access the app on the IP address. I run python manage.py runserver 0.0.0.0:8000
which returns the following:
System check identified no issues (0 silenced).
November 22, 2018 - 17:41:08
Django version 2.1.3, using settings 'mysite.settings'
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
So no errors. Then I navigate to my_droplet_ip
:8000 and I get a timeout. "took to long to respond."
I am running the runserver command from a user rather than root. Don't know if that matters...
Any idea what's going on here?
django ip digital-ocean droplet
add a comment |
I'm following this tutorial online https://simpleisbetterthancomplex.com/tutorial/2016/10/14/how-to-deploy-to-digital-ocean.html
I get to an intermediary step where I want to check if I can access the app on the IP address. I run python manage.py runserver 0.0.0.0:8000
which returns the following:
System check identified no issues (0 silenced).
November 22, 2018 - 17:41:08
Django version 2.1.3, using settings 'mysite.settings'
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
So no errors. Then I navigate to my_droplet_ip
:8000 and I get a timeout. "took to long to respond."
I am running the runserver command from a user rather than root. Don't know if that matters...
Any idea what's going on here?
django ip digital-ocean droplet
1
try totelnet your_ip 8000
from local machine, probably 8000 port is closed from external connections by default
– Satevg
Nov 23 '18 at 7:47
Ok I found out that I needed to expose my port on the server doingsudo ufw allow 8000
– Ludo
Nov 23 '18 at 11:37
add a comment |
I'm following this tutorial online https://simpleisbetterthancomplex.com/tutorial/2016/10/14/how-to-deploy-to-digital-ocean.html
I get to an intermediary step where I want to check if I can access the app on the IP address. I run python manage.py runserver 0.0.0.0:8000
which returns the following:
System check identified no issues (0 silenced).
November 22, 2018 - 17:41:08
Django version 2.1.3, using settings 'mysite.settings'
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
So no errors. Then I navigate to my_droplet_ip
:8000 and I get a timeout. "took to long to respond."
I am running the runserver command from a user rather than root. Don't know if that matters...
Any idea what's going on here?
django ip digital-ocean droplet
I'm following this tutorial online https://simpleisbetterthancomplex.com/tutorial/2016/10/14/how-to-deploy-to-digital-ocean.html
I get to an intermediary step where I want to check if I can access the app on the IP address. I run python manage.py runserver 0.0.0.0:8000
which returns the following:
System check identified no issues (0 silenced).
November 22, 2018 - 17:41:08
Django version 2.1.3, using settings 'mysite.settings'
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
So no errors. Then I navigate to my_droplet_ip
:8000 and I get a timeout. "took to long to respond."
I am running the runserver command from a user rather than root. Don't know if that matters...
Any idea what's going on here?
django ip digital-ocean droplet
django ip digital-ocean droplet
asked Nov 22 '18 at 17:49
LudoLudo
414211
414211
1
try totelnet your_ip 8000
from local machine, probably 8000 port is closed from external connections by default
– Satevg
Nov 23 '18 at 7:47
Ok I found out that I needed to expose my port on the server doingsudo ufw allow 8000
– Ludo
Nov 23 '18 at 11:37
add a comment |
1
try totelnet your_ip 8000
from local machine, probably 8000 port is closed from external connections by default
– Satevg
Nov 23 '18 at 7:47
Ok I found out that I needed to expose my port on the server doingsudo ufw allow 8000
– Ludo
Nov 23 '18 at 11:37
1
1
try to
telnet your_ip 8000
from local machine, probably 8000 port is closed from external connections by default– Satevg
Nov 23 '18 at 7:47
try to
telnet your_ip 8000
from local machine, probably 8000 port is closed from external connections by default– Satevg
Nov 23 '18 at 7:47
Ok I found out that I needed to expose my port on the server doing
sudo ufw allow 8000
– Ludo
Nov 23 '18 at 11:37
Ok I found out that I needed to expose my port on the server doing
sudo ufw allow 8000
– Ludo
Nov 23 '18 at 11:37
add a comment |
1 Answer
1
active
oldest
votes
I had to expose the port 8000 by running the command sudo ufw allow 8080
. Wasn't mentioned anywhere in the tutorial...
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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
});
}
});
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%2fstackoverflow.com%2fquestions%2f53436082%2fdjango-app-not-being-served-on-digitalocean-droplet%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I had to expose the port 8000 by running the command sudo ufw allow 8080
. Wasn't mentioned anywhere in the tutorial...
add a comment |
I had to expose the port 8000 by running the command sudo ufw allow 8080
. Wasn't mentioned anywhere in the tutorial...
add a comment |
I had to expose the port 8000 by running the command sudo ufw allow 8080
. Wasn't mentioned anywhere in the tutorial...
I had to expose the port 8000 by running the command sudo ufw allow 8080
. Wasn't mentioned anywhere in the tutorial...
answered Nov 23 '18 at 11:38
LudoLudo
414211
414211
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f53436082%2fdjango-app-not-being-served-on-digitalocean-droplet%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
1
try to
telnet your_ip 8000
from local machine, probably 8000 port is closed from external connections by default– Satevg
Nov 23 '18 at 7:47
Ok I found out that I needed to expose my port on the server doing
sudo ufw allow 8000
– Ludo
Nov 23 '18 at 11:37