详解OpenStack之服务端口号
程序员文章站
2022-06-27 14:47:17
在部署openstack的过程中,你会遇到配置各种服务的endpoint,openstack通过url和端口来识别对应请求的是哪一类服务
openstack组件使用的默认...
在部署openstack的过程中,你会遇到配置各种服务的endpoint,openstack通过url和端口来识别对应请求的是哪一类服务
openstack组件使用的默认端口号
openstack service | default ports | port type |
---|---|---|
block storage (cinder) | 8776 | publicurl and adminurl |
compute (nova) endpoints | 8774 | publicurl and adminurl |
compute api (nova-api) | 8773, 8775 | |
compute ports for access to virtual machine consoles | 5900-5999 | |
compute vnc proxy for browsers ( openstack-nova-novncproxy) | 6080 | |
compute vnc proxy for traditional vnc clients (openstack-nova-xvpvncproxy) | 6081 | |
proxy port for html5 console used by compute service | 6082 | |
data processing service (sahara) endpoint | 8386 | publicurl and adminurl |
identity service (keystone) administrative endpoint | 35357 | adminurl |
identity service public endpoint | 5000 | publicurl |
image service (glance) api | 9292 | publicurl and adminurl |
image service registry | 9191 | |
networking (neutron) | 9696 | publicurl and adminurl |
object storage (swift) | 6000, 6001, 6002 | |
orchestration (heat) endpoint | 8004 | publicurl and adminurl |
orchestration aws cloudformation-compatible api (openstack-heat-api-cfn) | 8000 | |
orchestration aws cloudwatch-compatible api (openstack-heat-api-cloudwatch) | 8003 | |
telemetry (ceilometer) | 8777 | publicurl and adminurl |
非openstack组件使用的默认端口号
openstack service | default ports | used by |
---|---|---|
http | 80 | openstack dashboard (horizon) when it is not configured to use secure access. |
http alternate | 8080 | openstack object storage (swift) service. |
https | 443 | any openstack service that is enabled for ssl, especially secure-access dashboard. |
rsync | 873 | openstack object storage. required. |
iscsi target | 3260 | openstack block storage. required. |
mysql database service | 3306 | most openstack components. |
message broker (amqp traffic) | 5672 | openstack block storage, networking, orchestration, and compute. |
理清openstack各个服务的端口,对学习openstack有很大的帮助。
参考链接:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。