python flask 如何修改默认端口号的方法步骤

场景:按照github文档上启动一个flask的app,默认是用5000端口,如果5000端口被占用,启动失败。

样例代码:

from flask import Flask

app = Flask(__name__)

@app.route('/')
def hello():
  return 'Hello, World!' 

启动的脚本:

$ env FLASK_APP=hello.py flask run 

出错信息如下:

renjg@renjg-HP-Compaq-Pro-6380-MT:~/WorkSpace/python/django$ env FLASK_APP=index.py flask run
 * Serving Flask app "index.py"
 * Environment: production
  WARNING: Do not use the development server in a production environment.
  Use a production WSGI server instead.
 * Debug mode: off
Traceback (most recent call last):
 File "/usr/local/bin/flask", line 11, in <module>
  sys.exit(main())
 File "/usr/local/lib/python2.7/dist-packages/flask/cli.py", line 894, in main
  cli.main(args=args, prog_name=name)
 File "/usr/local/lib/python2.7/dist-packages/flask/cli.py", line 557, in main
  return super(FlaskGroup, self).main(*args, **kwargs)
 File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 717, in main
  rv = self.invoke(ctx)
 File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 1137, in invoke
  return _process_result(sub_ctx.command.invoke(sub_ctx))
 File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 956, in invoke
  return ctx.invoke(self.callback, **ctx.params)
 File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 555, in invoke
  return callback(*args, **kwargs)
 File "/usr/local/lib/python2.7/dist-packages/click/decorators.py", line 64, in new_func
  return ctx.invoke(f, obj, *args, **kwargs)
 File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 555, in invoke
  return callback(*args, **kwargs)
 File "/usr/local/lib/python2.7/dist-packages/flask/cli.py", line 771, in run_command
  threaded=with_threads, ssl_context=cert)
 File "/usr/local/lib/python2.7/dist-packages/werkzeug/serving.py", line 814, in run_simple
  inner()
 File "/usr/local/lib/python2.7/dist-packages/werkzeug/serving.py", line 774, in inner
  fd=fd)
 File "/usr/local/lib/python2.7/dist-packages/werkzeug/serving.py", line 660, in make_server
  passthrough_errors, ssl_context, fd=fd)
 File "/usr/local/lib/python2.7/dist-packages/werkzeug/serving.py", line 577, in __init__
  self.address_family), handler)
 File "/usr/lib/python2.7/SocketServer.py", line 417, in __init__
  self.server_bind()
 File "/usr/lib/python2.7/BaseHTTPServer.py", line 108, in server_bind
  SocketServer.TCPServer.server_bind(self)
 File "/usr/lib/python2.7/SocketServer.py", line 431, in server_bind
  self.socket.bind(self.server_address)
 File "/usr/lib/python2.7/socket.py", line 228, in meth
  return getattr(self._sock,name)(*args)
socket.error: [Errno 98] Address already in use

问题:

那么该怎么指定新的端口呢?又如何查看5000端口指定的位置呢?

源码分析,首先clone github上的flask框架,然后直接grep命令查看5000的位置。

renjg@renjg-HP-Compaq-Pro-6380-MT:~/WorkSpace/python/django/flask$ grep 5000 * -nrw
docs/patterns/appdispatch.rst:28:  run_simple('localhost', 5000, application, use_reloader=True)
docs/patterns/appdispatch.rst:48:    run_simple('localhost', 5000, app,
docs/config.rst:417:   * Running on http://127.0.0.1:5000/
docs/config.rst:453:   * Running on http://127.0.0.1:5000/
docs/quickstart.rst:51:   * Running on http://127.0.0.1:5000/
docs/quickstart.rst:66:   * Running on http://127.0.0.1:5000/
docs/quickstart.rst:72:Now head over to `http://127.0.0.1:5000/ <http://127.0.0.1:5000/>`_, and you
docs/deploying/wsgi-standalone.rst:38:  $ uwsgi --http 127.0.0.1:5000 --module myproject:app
docs/deploying/wsgi-standalone.rst:55:  http_server = WSGIServer(('', 5000), app)
docs/server.rst:26:*http://localhost:5000/*.
docs/cli.rst:97:   * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
docs/cli.rst:143:   * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
docs/tutorial/static.rst:58:Go to http://127.0.0.1:5000/auth/login and the page should look like the
docs/tutorial/factory.rst:169:   * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
docs/tutorial/factory.rst:174:Visit http://127.0.0.1:5000/hello in a browser and you should see the
docs/tutorial/templates.rst:174:then go to http://127.0.0.1:5000/auth/register.
examples/javascript/README.rst:39:Open http://127.0.0.1:5000 in a browser.
examples/tutorial/README.rst:62:Open http://127.0.0.1:5000 in a browser.
<strong>flask/app.py:878:    :param port: the port of the webserver. Defaults to ``5000`` or the
flask/app.py:925:    _port = 5000
flask/cli.py:738:@click.option('--port', '-p', default=5000,</strong>
README.rst:43:   * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
tests/test_basic.py:369:    SERVER_NAME='localhost:5000',
tests/test_basic.py:377:  rv = client.get('/', 'http://localhost:5000/')
tests/test_basic.py:385:    SERVER_NAME='127.0.0.1:5000',
tests/test_basic.py:393:  rv = client.get('/', 'http://127.0.0.1:5000/')
tests/test_basic.py:1448:    SERVER_NAME='localhost.localdomain:5000'
tests/test_basic.py:1463:  rv = client.get('/', 'http://localhost.localdomain:5000')
tests/test_basic.py:1466:  rv = client.get('/', 'https://localhost.localdomain:5000')
tests/test_reqctx.py:72:    SERVER_NAME='localhost.localdomain:5000'
tests/test_reqctx.py:85:        'http://localhost.localdomain:5000/'
tests/test_reqctx.py:89:        'http://foo.localhost.localdomain:5000/'
tests/test_reqctx.py:97:      "('localhost.localdomain:5000') does not match the "

可以看到在flask/app.py 以及cli.py中有指定。那么根据启动命令flask run 实际上是启动了一个http server,然后监听了一个本地端口,等待连接。那么看看是否有相应的参数。

renjg@renjg-HP-Compaq-Pro-6380-MT:~/WorkSpace/python/django/flask$ flask --help
Traceback (most recent call last):
 File "/usr/local/lib/python2.7/dist-packages/flask/cli.py", line 529, in list_commands
  rv.update(info.load_app().cli.list_commands(ctx))
 File "/usr/local/lib/python2.7/dist-packages/flask/cli.py", line 384, in load_app
  'Could not locate a Flask application. You did not provide '
NoAppException: Could not locate a Flask application. You did not provide the "FLASK_APP" environment variable, and a "wsgi.py" or "app.py" module was not found in the current directory.
Usage: flask [OPTIONS] COMMAND [ARGS]...

 A general utility script for Flask applications.

 Provides commands from Flask, extensions, and the application. Loads the
 application defined in the FLASK_APP environment variable, or from a
 wsgi.py file. Setting the FLASK_ENV environment variable to 'development'
 will enable debug mode.

  $ export FLASK_APP=hello.py
  $ export FLASK_ENV=development
  $ flask run

Options:
 --version Show the flask version
 --help   Show this message and exit.

Commands:
 routes Show the routes for the app.
 run   Runs a development server.
 shell  Runs a shell in the app context.
renjg@renjg-HP-Compaq-Pro-6380-MT:~/WorkSpace/python/django/flask$ flask run --help
Usage: flask run [OPTIONS]

 Run a local development server.

 This server is for development purposes only. It does not provide the
 stability, security, or performance of production WSGI servers.

 The reloader and debugger are enabled by default if FLASK_ENV=development
 or FLASK_DEBUG=1.

Options:
 -h, --host TEXT         The interface to bind to.
 <strong> -p, --port INTEGER       The port to bind to.</strong>
 --cert PATH           Specify a certificate file to use HTTPS.
 --key FILE           The key file to use when specifying a
                 certificate.
 --reload / --no-reload     Enable or disable the reloader. By default
                 the reloader is active if debug is enabled.
 --debugger / --no-debugger   Enable or disable the debugger. By default
                 the debugger is active if debug is enabled.
 --eager-loading / --lazy-loader
                 Enable or disable eager loading. By default
                 eager loading is enabled if the reloader is
                 disabled.
 --with-threads / --without-threads
                 Enable or disable multithreading.
 --help             Show this message and exit.

可以看到有-p这个参数,是指定端口的,默认是5000,那么尝试修改一下。

renjg@renjg-HP-Compaq-Pro-6380-MT:~/WorkSpace/python/django$ env FLASK_APP=index.py flask run -p 5001
 * Serving Flask app "index.py"
 * Environment: production
  WARNING: Do not use the development server in a production environment.
  Use a production WSGI server instead.
 * Debug mode: off
 * Running on http://127.0.0.1:5001/ (Press CTRL+C to quit)

还一个5001的端口就成功了,由此可知,当出现一个我们不知道该如何解决问题的时候,我们可以尝试着自己分析源码,得到想要的结果。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • 使用python根据端口号关闭进程的方法

    我们知道,做web开发,在调试时需要反复启动整个工程,那么上一个工程占用的端口,在下一次工程启动时就不能用了,因为占用的端口没有释放,但是手动关闭方法是: lsof -i:12345 得到pid后再kill -9 pid 十分麻烦,所以能否在启动python的web工程时顺便把上一次占用的端口给关闭了呢? 当然是有的,下面以flask为例(注意,复制下面的代码时,不要直接鼠标复制,而是使用左上角的view plain来复制,因为csdn博客会把'''+str(port)+'''的右侧显示成5个单

  • Appium+python自动化怎么查看程序所占端口号和IP

    简介 这篇博文和分类看似没有多大关系,但是也是从上一篇衍生出来的产物,因为涉及到 FQ工具 Lantern ,就算是给关注和支持的小伙伴们拓展一下眼界和知识面.而且好多人都阅读了上一篇没发现那个参考博客点不开吗?那是因为还没来的急,整理和编写,今天再试一下就可以. 一个软件可能占用多个端口拥有多个目标IP,下面以FQ工具 Lantern 为例,说明端口查看方法: 1.借助第三方软件查看 如果你电脑上安装了360等优化工具,可能会自带查看网络状况的插件如下图: 2.命令行窗口查看 在命令行窗口查看

  • python flask 如何修改默认端口号的方法步骤

    场景:按照github文档上启动一个flask的app,默认是用5000端口,如果5000端口被占用,启动失败. 样例代码: from flask import Flask app = Flask(__name__) @app.route('/') def hello(): return 'Hello, World!' 启动的脚本: $ env FLASK_APP=hello.py flask run 出错信息如下: renjg@renjg-HP-Compaq-Pro-6380-MT:~/Wor

  • CentOS6.5与CentOS7 ssh修改默认端口号的方法

    本文实例讲述了CentOS6.5与CentOS7 ssh修改默认端口号的方法.分享给大家供大家参考,具体如下: CentOS6.5ssh修改默认端口号 先查看下服务器端口号范围: # sysctl -a|grep ip_local_port_range net.ipv4.ip_local_port_range = 32768 61000 新ssh端口号在这个范围内即可,如41134 第一步: vi /etc/sysconfig/iptables 找到现有的ssh那行,把22修改为新的SSH端口号

  • JavaScript React如何修改默认端口号方法详解

    问题 我们在使用React的时候经常会遇到这种情况,3000端口号被占用.有时候可以关掉3000端口,但更多时候,我们需要打开多个项目的时候,就必须要开启多个端口了.这时候就需要修改默认端口号了. 解决办法 修改默认端口号 具体做法 第一步:找到start.js文件 这个文件的位置在:node_modules文件夹下 -> react-scripts文件夹下 -> scripts文件夹下 -> start.js node_modules下 start.js文件 51行处修改,整个文件端口

  • django 修改server端口号的方法

    django可以在运行服务器时指定端口号 python manage.py runserver 8080 我们启动django开发服务器,输入命令 manage.py runserver 默认的端口是8000. 我们在浏览器中输入127.0.0.1:8000,可以访问8000端口 我们先停掉django的服务,按ctrl + c 就可以停掉服务 .然后查看django的runserver的命令解释. 其中图片中的addrport意思是增加端口的意思 是可选择参数 这时候我们可以重启服务器,并指定

  • centos 修改ssh默认端口号的方法示例

    linux服务器一般默认的ssh端口号都为22,所以在大部分的使用者手中出于安全考虑就需要修改ssh的默认端口号,下面为为修改ssh默认端口号方法 一:修改/etc/ssh/sshd_config配置文件(注意:这里是sshd_config,而不是ssh_config) 1:查看ssh的默认端口号 netstat -anp|grep ssh 2:修改/etc/ssh/sshd_config配置文件 在sshd_config文件中添加一个端口号10011(这里保留22端口,是为了放置假如配置失败的

  • CentOS7增加或修改SSH端口号的方法

    前言:开启某服务或软件的端口,要从该服务或软件监听的端口(多以修改配置文件为主),SeLinux和防火墙(FireWall)的安全策略下手.如果使用阿里云,腾讯等第三方服务器还需要对管理控制台的安全组下手. 下面进入主题,如果有什么问题请查看下面的补充栏: 第一步:修改SSH配置文件(注意是sshd_config而不是ssh_config,多了个d) vim /etc/ssh/sshd_config 找到"#Port 22",这一行直接键入"yyp"复制该行到下一行

  • 修改Tomcat服务器默认端口号的实现方法

    修改Tomcat服务器默认端口号的实现方法 一 修改方法 修改D:\apache-tomcat-7.0.81\conf\server.xml文件如下 二 测试 如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

  • Spring Boot修改内置Tomcat默认端口号的示例

    Spring Boot 内置Tomcat默认端口号为8080,在开发多个应用调试时很不方便,本文介绍了修改 Spring Boot内置Tomcat端口号的方法. 一.EmbeddedServletContainerCustomizer接口 EmbeddedServletContainerCustomizer接口提供了customize方法用来自定义servlet容器的一些属性 如图编写实现类在customize方法中可设置容器端口号为8088 . 二.TomcatEmbeddedServletC

  • Linux 6 修改ssh默认远程端口号的操作步骤

    linux 默认的ssh远程端口是22,有时默认端口会遭到别有用心的人们扫描或攻击,为了时我们的系统更加安全那就需要修改远程端口号 操作步骤: 1.修改ssh_config配置文件 vim /etc/ssh/sshd_config 2.配置文件中找到#Port 22所在行(默认22端口) 3.修改该行,改为你想要的端口号 Port 222(注意:去掉前面的#号) 4.[可选]如果想添加一个端口号并存(22端口和222端口同时生效) Port 22(注意:前面无#号) Port 222(注意:前面

  • 修改maven项目端口号的方法

    同时启动多个maven项目,需要修改其端口号.一行命令就可以搞定! tomcat7:run -Dmaven.tomcat.port=8080 以上这篇修改maven项目端口号的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们. 您可能感兴趣的文章: 修改maven本地仓库路径的方法 Java修改maven的默认jdk版本为1.7的方法

随机推荐