Python app.py error after run url - http//.e.cloudxlab.com:4080/ showing Check if there is a typo in http

Hi This is LAB4 server issue
I am not able to check anything after run command python app2.py below shown on terminal

  • Debug mode: on
  • Running on all addresses.
    WARNING: This is a development server. Do not use it in a production deployment.
  • Running on http://10.142.1.4:4080/ (Press CTRL+C to quit)
  • Restarting with stat
  • Debugger is active!
  • Debugger PIN: 142-351-949

But while running URL- http//e.cloudxlab.com:4080/ – showing This site can’t be reached image
I am unable to check anything to complete task of lab3 and 4 as well. please guide

Hi Priyanka,

Let’s debug it. We can start with some basic steps such as:

  • Check port in app2.py: Ensure the app is running on port 4080 in the app.run() line.
  • Verify server listening on port: Use netstat -tuln | grep 4080 to confirm if the server is active on the specified port.

If both things work fine, then we will check further.