Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-21 Thread Chris Angelico
On Wed, Aug 22, 2018 at 7:09 AM, Joel Goldstick wrote: > although i don't offer advice too often here, as i am kind of > retired., this is extremely reminiscent of a whole lot of server issue > posts from I believe this same OP some years ago. It will soon become > a rabbit hole. take care to

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-21 Thread Joel Goldstick
On Tue, Aug 21, 2018 at 12:06 PM Dennis Lee Bieber wrote: > > On Mon, 20 Aug 2018 05:07:59 -0700 (PDT), ? > declaimed the following: > > >?? ???, 20 ? 2018 - 7:59:06 ?.?. UTC+3, ? ??? dieter ??: > >> ? writes: > > >> > > >> > run(host='localhost', port=8080) > >> >

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-21 Thread Νίκος
Τη Τρίτη, 21 Αυγούστου 2018 - 4:39:50 μ.μ. UTC+3, ο χρήστης Michael Torrie έγραψε: > On 08/20/2018 06:07 AM, Νίκος wrote: > > Iam trying to access the bottle web framework running on my VPS as > > > > http://superhost.gr:8080/hello > > > > i get connection refused > > > The weird thing is that

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-21 Thread Νίκος
Τη Δευτέρα, 20 Αυγούστου 2018 - 7:18:16 μ.μ. UTC+3, ο χρήστης Chris Warrick έγραψε: > On Mon, 20 Aug 2018 at 18:15, Νίκος wrote: > > > > Τη Δευτέρα, 20 Αυγούστου 2018 - 9:49:00 π.μ. UTC+3, ο χρήστης Miki Tebeka > > έγραψε: > > > If you're trying to access the machine from another machine, you

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-21 Thread Michael Torrie
On 08/20/2018 06:07 AM, Νίκος wrote: > Iam trying to access the bottle web framework running on my VPS as > > http://superhost.gr:8080/hello > > i get connection refused > The weird thing is that in my vps command line my hello app is in state of > listening > > [root@superhost public_html]#

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-20 Thread dieter
Νίκος writes: > ... > The weird thing is that in my vps command line my hello app is in state of > listening > > [root@superhost public_html]# python3 app.py > Bottle v0.12.13 server starting up (using WSGIRefServer())... > Listening on http://localhost:8080/ > Hit Ctrl-C to quit. > > So, i

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-20 Thread Chris Warrick
On Mon, 20 Aug 2018 at 18:15, Νίκος wrote: > > Τη Δευτέρα, 20 Αυγούστου 2018 - 9:49:00 π.μ. UTC+3, ο χρήστης Miki Tebeka > έγραψε: > > If you're trying to access the machine from another machine, you need to > > change the host to '0.0.0.0'. 'localhost' is the internal interface. > > > > On

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-20 Thread Νίκος
Τη Δευτέρα, 20 Αυγούστου 2018 - 9:49:00 π.μ. UTC+3, ο χρήστης Miki Tebeka έγραψε: > If you're trying to access the machine from another machine, you need to > change the host to '0.0.0.0'. 'localhost' is the internal interface. > > On Sunday, August 19, 2018 at 10:36:25 PM UTC+3, Νίκος wrote: >

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-20 Thread Νίκος
Τη Δευτέρα, 20 Αυγούστου 2018 - 7:59:06 π.μ. UTC+3, ο χρήστης dieter έγραψε: > Νίκος writes: > > i just installed bottle and flask web frameworks in my CentOS environment > > but i canno get it working even with the simpleste xample. The coonection > > is refused always. > > "connection

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-20 Thread Miki Tebeka
If you're trying to access the machine from another machine, you need to change the host to '0.0.0.0'. 'localhost' is the internal interface. On Sunday, August 19, 2018 at 10:36:25 PM UTC+3, Νίκος wrote: > Hello, > > i just installed bottle and flask web frameworks in my CentOS environment but

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-19 Thread dieter
Νίκος writes: > i just installed bottle and flask web frameworks in my CentOS environment but > i canno get it working even with the simpleste xample. The coonection is > refused always. "connection refused" is an indication that there is no (running) server at the connection port. Unlike

Re: Connection refused when tryign to run bottle/flask web framweworks

2018-08-19 Thread Ian Kelly
On Sun, Aug 19, 2018, 1:47 PM Νίκος wrote: > Hello, > > i just installed bottle and flask web frameworks in my CentOS environment > but i canno get it working even with the simpleste xample. The coonection > is refused always. > > from bottle import route, run, template > > @route('/hello/') >

Connection refused when tryign to run bottle/flask web framweworks

2018-08-19 Thread Νίκος
Hello, i just installed bottle and flask web frameworks in my CentOS environment but i canno get it working even with the simpleste xample. The coonection is refused always. from bottle import route, run, template @route('/hello/') def index(name): return template('Hello {{name}}!',