[fsp@controller-21 ~]$ openstack --version ##fusionsphere 6.1基于openstack 2.2.1
[fsp@controller-21 ~]$ ps -ef|sort ##查看系统进程UID,对应的PID和PPID,服务运行路径
[fsp@controller-21 ~]$ netstat -lntup ##根据PID查看服务监听的端口信息
服务
组件
端口
功能
sql
gauss
5432,19998
华为自主数据库,基于pgsql开发
nosql
mongodb
27017
ceilo服务使用nosql数据库来存储信息
缓存
memcached
11211
认证服务认证缓存使用Memcached缓存令牌
消息队列
rabbitmq
5672,15672,50000
协调操作和各服务的状态信息
keystone
apache4keystone
为其他服务提供认证和授权,并为所有openstack服务提供endpoint目录
keystone_monitor
nova
nova-api
8774,8775,8880
接收和响应来自最终用户的计算API请求
nova-compute
创建和销毁虚拟机实例
nova-conductor
访问数据库中间件
nova-scheduler
决定后端哪台计算服务器主机来创建虚拟实例
nova-console
nova-consoleauth
控制台认证
nova-novncproxy
6080
用于访问实例,提供vnc代理
glance
glance-api
9292
接收镜像API的调用,诸如镜像发现、恢复、存储
glance-registry
9191
存储、处理和恢复镜像的元数据,元数据包括项诸如大小和类型
neutron
neutron_server
9696
接收和路由API请求到合适的OpenStack网络插件
neutron-reschedule
neutron-dhcp-agent
提供DHCP服务,以及状态查询服务metadata访问,可以获取metadata元数据信息实现自定义功能
neutron-metadata-agent
neutron-openvswitch-agent
为虚拟实例提供并管理网络资源
neutron-sriov-nic-agent
neutron-evs-agent
neutron-ns-metadata-proxy
neutron-metering-agent
neutron-servicechain-agent
neutron-l3-agent
l3代理,实现私有vpc,通过路由访问外部
cinder
cinder-api
接受API请求,并将其路由到cinder-volume执行
cinder-scheduler
选择最优存储提供节点来创建卷
cinder-backup
提供任何种类备份卷到一个备份存储
swift
swift-proxy-server
8081
接受对象存储API和HTTP请求,上传文件,修改元数据,创建容器
swift-account-server
6012
管理使用对象存储定义的帐户
swift-account-auditor
swift-account-replicator
swift-account-reaper
swift-container-server
6011
管理对象存储中容器或文件夹的映射
swift-container-auditor
swift-container-replicator
swift-container-sync
swift-container-updater
swift-object-server
6010
管理存储节点上的实际对象(如文件)
swift-object-auditor
swift-object-expirer
swift-object-replicator
swift-object-updater
ceilo
ceilo-api
提供从数据存储的数据访问
ceilometer-agent-hardware
轮询资源利用率统计信息
ceilometer-polling
ceilometer-collector
ceilometer-agent-notification
使用消息队列中的消息来生成事件和计量数据
aodh-api
8042
提供访问存储在数据中心的警告信息
aodh-evaluator
警报评估
aodh-notifier
报警通知
aodh-listener
通知监听,来检测什么时候发出告警
heat
heat-api
8004
提供原生的restful API对外使用,用户对API的调用,由heat-api处理之后,最终通过RPC传递给Heat-engine来进一步处理
heat-api-cfn
8025
提供了Amazon style 的查询 API
heat-engine
逻辑业务处理模块,此模块最终完成应用系统的创建和部署
1. 由dashboard或cli发送api请求,①首先到keystone认证获取token,②然后将请求发送给nova-api,③nova-api先到keystone验证token有效性,④然后在sql数据库中写入需求信息,并发布请求到消息队列
2. ⑤nova-scheduler收到请求,⑥到sql获取需求信息然后进行筛选,过滤掉不符合条件物理主机,最后根据算法选出最终执行任务的nova-compute;⑦选举出的nova-compute收到请求,⑧通过nova-conductor,⑨连接到sql获取到需求信息,然后调用底层hypervisor执行虚拟机的创建
3. ⑩nova-compute与其他资源组件进行交互,发布请求信息到glance,⑪glance首先到keystone验证token有效性,然后返回镜像资源;发布请求信息到neutron,⑪neutron首先到keystone验证token有效性,然后返回网络资源;发布请求信息到cinder,⑪cinder首先到keystone验证token有效性,然后返回存储资源
4. ⑫nova-compute进行虚拟实例创建,同时将当前状态写入到sql,dashboard通过sql获取到状态信息在前端web页面实时显示
=============================================================================================
keystone_monitor
opensta+ 27676 1 0 Aug15 ? 00:00:02 python /etc/keystone/keystone-all/keystone_monitor.py
udp 0 0 127.0.0.1:32924 0.0.0.0:* 27676/python
,50000 ##协调操作和各服务的状态信息
rabbitmq 30506 1 0 Aug15 ? 00:01:18 /usr/lib64/erlang/erts-7.3.1/bin/epmd -daemon
rabbitmq 31206 1 9 Aug15 ? 1-01:14:52 /usr/lib64/erlang/erts-7.3.1/bin/beam.smp -W w -A 128 -P 1048576 -K true -- -root /usr/lib64/erlang -progname erl -- -home /usr/local/lib/rabbitmq -- -pa /usr/local/lib/rabbitmq/sbin/../ebin -noshell -noinput -s rabbit boot -sname rabbit@rabbitmqNode0 -boot start_sasl -config /usr/local/lib/rabbitmq/sbin/../etc/rabbitmq/rabbitmq -kernel inet_default_connect_options [{nodelay,true},{raw,6,18,<<15000:64/native>>}] -kernel inet_default_listen_options [{raw,6,18,<<15000:64/native>>}] -sasl errlog_type error -sasl sasl_error_logger false -rabbit error_logger {file,"/var/log/fusionsphere/component/rabbitmq/rabbit@rabbitmqNode0.log"} -rabbit sasl_error_logger {file,"/var/log/fusionsphere/component/rabbitmq/rabbit@rabbitmqNode0-sasl.log"} -rabbit enabled_plugins_file "/usr/local/lib/rabbitmq/sbin/../etc/rabbitmq/enabled_plugins" -rabbit plugins_dir "/usr/local/lib/rabbitmq/sbin/../plugins" -rabbit plugins_expand_dir "/opt/fusionplatform/data/rabbitmq/rabbit@rabbitmqNode0-plugins-expand" -os_mon start_cpu_sup false -os_mon start_disksup false -os_mon start_memsup false -setcookie rabbitmq_server_cookie -mnesia dir "/opt/fusionplatform/data/rabbitmq/rabbit@rabbitmqNode0" -noshell -noinput
rabbitmq 34863 31206 0 Aug15 ? 00:00:00 inet_gethost 4
rabbitmq 34878 34863 0 Aug15 ? 00:00:00 inet_gethost 4
tcp 0 0 172.28.8.111:4369 0.0.0.0:* LISTEN 30506/epmd
tcp 0 0 127.0.0.1:4369 0.0.0.0:* LISTEN 30506/epmd
tcp 0 0 0.0.0.0:5672 0.0.0.0:* LISTEN 31206/beam.smp
tcp 0 0 127.0.0.1:15672 0.0.0.0:* LISTEN 31206/beam.smp
tcp 0 0 172.28.8.111:50000 0.0.0.0:* LISTEN 31206/beam.smp
mongodb 端口27017 ##ceilo服务使用nosql数据库来存储信息
mongodb 23409 1 1 Aug15 ? 03:29:58 /usr/bin/mongod -f /etc/mongodb/mongodb.conf
tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN 23409/mongod
tcp 0 0 172.28.9.140:27017 0.0.0.0:* LISTEN 23409/mongod
memcached 端口11211 ##认证服务认证缓存使用Memcached缓存令牌
opensta+ 39973 1 0 Aug15 ? 00:04:02 memcached -U 0 -d -m 1024 -l 172.28.8.6 -p 11211 -u openstack
tcp 0 0 172.28.8.6:11211 0.0.0.0:* LISTEN 39973/memcached
tcp 0 0 127.0.0.1:11211 0.0.0.0:* LISTEN 10104/memcached
udp 0 0 127.0.0.1:51635 0.0.0.0:* 39973/memcached
=============================================================================================
opensta+ 23206 2799 0 Aug15 ? 00:05:34 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23207 2799 2 Aug15 ? 05:33:56 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23208 2799 2 Aug15 ? 05:57:33 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23209 2799 2 Aug15 ? 05:54:25 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23210 2799 2 Aug15 ? 05:54:15 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23211 2799 2 Aug15 ? 05:33:59 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23212 2799 2 Aug15 ? 05:34:47 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23213 2799 2 Aug15 ? 05:30:45 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23215 2799 2 Aug15 ? 05:31:59 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23216 2799 2 Aug15 ? 05:31:48 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 23224 2799 2 Aug15 ? 05:21:42 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
opensta+ 2799 1 2 Aug15 ? 05:26:53 /usr/bin/python2.7 /usr/bin/neutron-server --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov_server.ini
tcp 0 0 172.28.8.31:9696 0.0.0.0:* LISTEN 2799/python2.7
neutron-dhcp-agent
opensta+ 29539 1 1 Aug15 ? 05:12:22 /usr/bin/python2.7 /usr/bin/neutron-dhcp-agent --config-file=/etc/neutron/neutron_dhcp.conf --config-file=/etc/neutron/dhcp_agent.ini
udp 0 0 127.0.0.1:48434 0.0.0.0:* 29539/python2.7
udp 0 0 127.0.0.1:56440 0.0.0.0:* 29539/python2.7
neutron-sriov-nic-agent
opensta+ 10903 1 2 Aug15 ? 05:21:28 /usr/bin/python2.7 /usr/bin/neutron-sriov-nic-agent --config-file=/etc/neutron/neutron_sriov_nic.conf --config-file=/etc/neutron/plugins/ml2/ml2_conf_sriov.ini
udp 0 0 127.0.0.1:46486 0.0.0.0:* 10903/python2.7
udp 0 0 127.0.0.1:54993 0.0.0.0:* 10903/python2.7
neutron-metadata-agent
opensta+ 29512 1 2 Aug15 ? 06:28:16 /usr/bin/python2.7 /usr/bin/neutron-metadata-agent --config-file=/etc/neutron/neutron_metadata.conf --config-file=/etc/neutron/metadata_agent.ini
udp 0 0 127.0.0.1:33047 0.0.0.0:* 29512/python2.7
udp 0 0 127.0.0.1:60237 0.0.0.0:* 29512/python2.7
neutron-ns-metadata-proxy
opensta+ 1141 1 0 Aug20 ? 00:00:00 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/cedcb67c-92c2-4614-a9b9-ef07eeb96234.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=cedcb67c-92c2-4614-a9b9-ef07eeb96234 --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
opensta+ 14041 1 0 10:46 ? 00:00:00 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/3ead5716-1ca6-4604-ab28-57237f34ccc2.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=3ead5716-1ca6-4604-ab28-57237f34ccc2 --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
opensta+ 1894 1 0 Aug23 ? 00:00:00 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/c2aae49d-99b3-4175-ab6d-3e9521f88321.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=c2aae49d-99b3-4175-ab6d-3e9521f88321 --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
opensta+ 26534 1 0 Aug15 ? 00:09:35 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/035aa478-2743-45e7-b775-41a9932f537e.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=035aa478-2743-45e7-b775-41a9932f537e --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
opensta+ 28536 1 0 Aug15 ? 00:00:00 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/b71d2df9-1b84-4b55-ba3e-70b17063139c.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=b71d2df9-1b84-4b55-ba3e-70b17063139c --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
opensta+ 33567 1 0 Aug19 ? 00:00:00 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/43240239-031c-4669-be0a-ab95fc207b5e.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=43240239-031c-4669-be0a-ab95fc207b5e --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
opensta+ 5930 1 0 14:52 ? 00:00:00 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/20375c4e-4b2a-42aa-98aa-f2f354265e89.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=20375c4e-4b2a-42aa-98aa-f2f354265e89 --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
opensta+ 8526 1 0 10:20 ? 00:00:00 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/b76960b3-0758-4a06-a67d-c3111d6cf6b3.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=b76960b3-0758-4a06-a67d-c3111d6cf6b3 --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
opensta+ 8765 1 0 Aug19 ? 00:00:00 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/b17c19bf-6f3d-4111-9a48-6836cff2f939.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=b17c19bf-6f3d-4111-9a48-6836cff2f939 --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
opensta+ 9013 1 0 15:37 ? 00:00:00 /usr/bin/python2.7 /bin/neutron-ns-metadata-proxy --pid_file=/var/lib/neutron/external/pids/cbb01289-1604-4b01-a079-319a63080f5a.pid --metadata_proxy_socket=/var/lib/neutron/metadata_proxy --network_id=cbb01289-1604-4b01-a079-319a63080f5a --state_path=/var/lib/neutron --metadata_port=80 --metadata_proxy_user=1001 --metadata_proxy_group=1001 --debug --verbose
neutron-openvswitch-agent
opensta+ 37394 1 2 Aug15 ? 06:35:37 /usr/bin/python2.7 /usr/bin/neutron-openvswitch-agent --config-file=/etc/neutron/neutron_ovs.conf --config-file=/etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini
udp 0 0 127.0.0.1:35323 0.0.0.0:* 37394/python2.7
udp 0 0 127.0.0.1:48503 0.0.0.0:* 37394/python2.7
neutron-evs-agent
opensta+ 38882 1 2 Aug15 ? 05:28:43 /usr/bin/python2.7 /usr/bin/neutron-evs-agent --config-file=/etc/neutron/neutron_evs.conf --config-file=/etc/neutron/plugins/evs/evs_neutron_plugin.ini
udp 0 0 127.0.0.1:51406 0.0.0.0:* 38882/python2.7
udp 0 0 127.0.0.1:53504 0.0.0.0:* 38882/python2.7
neutron-metering-agent
opensta+ 31749 1 2 Aug15 ? 06:07:12 /usr/bin/python2.7 /usr/bin/neutron-metering-agent --config-file=/etc/neutron/neutron_metering.conf --config-file=/etc/neutron/metering_agent.ini
udp 0 0 127.0.0.1:40836 0.0.0.0:* 31749/python2.7
udp 0 0 127.0.0.1:58234 0.0.0.0:* 31749/python2.7
neutron-servicechain-agent
opensta+ 27952 1 2 Aug15 ? 05:29:42 /usr/bin/python2.7 /usr/bin/neutron-servicechain-agent --config-file=/etc/neutron/neutron_servicechain.conf --config-file=/etc/neutron/servicechain_agent.ini
udp 0 0 127.0.0.1:34690 0.0.0.0:* 27952/python2.7
udp 0 0 127.0.0.1:54358 0.0.0.0:* 27952/python2.7
neutron-l3-agent
opensta+ 27180 1 2 Aug15 ? 05:19:41 /usr/bin/python2.7 /usr/bin/neutron-l3-agent --config-file=/etc/neutron/neutron_l3.conf --config-file=/etc/neutron/l3_agent.ini
udp 0 0 127.0.0.1:38610 0.0.0.0:* 27180/python2.7
udp 0 0 127.0.0.1:53183 0.0.0.0:* 27180/python2.7
neutron-reschedule
opensta+ 16658 1 0 Aug15 ? 00:16:59 /usr/bin/python2.7 /usr/bin/neutron-reschedule --config-file=/etc/neutron-reschedule/neutron_reschedule.conf
udp 0 0 127.0.0.1:47259 0.0.0.0:* 16658/python2.7
opensta+ 1027 1 0 Aug23 ? 00:00:00 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/c2aae49d-99b3-4175-ab6d-3e9521f88321/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/c2aae49d-99b3-4175-ab6d-3e9521f88321/host --addn-hosts=/var/lib/neutron/dhcp/c2aae49d-99b3-4175-ab6d-3e9521f88321/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/c2aae49d-99b3-4175-ab6d-3e9521f88321/opts --dhcp-leasefile=/var/lib/neutron/dhcp/c2aae49d-99b3-4175-ab6d-3e9521f88321/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tapeab5aac1-84 --dhcp-range=set:tag0,10.199.101.0,static,86400s --dhcp-option-force=option:mtu,1500 --dhcp-lease-max=256 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
opensta+ 13285 1 0 10:46 ? 00:00:00 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/3ead5716-1ca6-4604-ab28-57237f34ccc2/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/3ead5716-1ca6-4604-ab28-57237f34ccc2/host --addn-hosts=/var/lib/neutron/dhcp/3ead5716-1ca6-4604-ab28-57237f34ccc2/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/3ead5716-1ca6-4604-ab28-57237f34ccc2/opts --dhcp-leasefile=/var/lib/neutron/dhcp/3ead5716-1ca6-4604-ab28-57237f34ccc2/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tapf74abff1-03 --dhcp-range=set:tag0,10.199.101.0,static,86400s --dhcp-option-force=option:mtu,1500 --dhcp-lease-max=256 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
opensta+ 25543 1 0 Aug15 ? 00:00:01 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/035aa478-2743-45e7-b775-41a9932f537e/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/035aa478-2743-45e7-b775-41a9932f537e/host --addn-hosts=/var/lib/neutron/dhcp/035aa478-2743-45e7-b775-41a9932f537e/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/035aa478-2743-45e7-b775-41a9932f537e/opts --dhcp-leasefile=/var/lib/neutron/dhcp/035aa478-2743-45e7-b775-41a9932f537e/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tapa4cc256d-89 --dhcp-range=set:tag0,172.28.0.0,static,86400s --dhcp-option-force=option:mtu,1500 --dhcp-lease-max=4096 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
opensta+ 28153 1 0 Aug15 ? 00:00:00 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/b71d2df9-1b84-4b55-ba3e-70b17063139c/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/b71d2df9-1b84-4b55-ba3e-70b17063139c/host --addn-hosts=/var/lib/neutron/dhcp/b71d2df9-1b84-4b55-ba3e-70b17063139c/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/b71d2df9-1b84-4b55-ba3e-70b17063139c/opts --dhcp-leasefile=/var/lib/neutron/dhcp/b71d2df9-1b84-4b55-ba3e-70b17063139c/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tapdeb3ba69-a8 --dhcp-range=set:tag0,172.16.4.0,static,86400s --dhcp-option-force=option:mtu,1500 --dhcp-lease-max=256 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
opensta+ 32859 1 0 Aug19 ? 00:00:00 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/43240239-031c-4669-be0a-ab95fc207b5e/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/43240239-031c-4669-be0a-ab95fc207b5e/host --addn-hosts=/var/lib/neutron/dhcp/43240239-031c-4669-be0a-ab95fc207b5e/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/43240239-031c-4669-be0a-ab95fc207b5e/opts --dhcp-leasefile=/var/lib/neutron/dhcp/43240239-031c-4669-be0a-ab95fc207b5e/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tapb81f5daa-7f --dhcp-range=set:tag0,192.168.1.0,static,86400s --dhcp-option-force=option:mtu,1450 --dhcp-lease-max=256 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
opensta+ 40465 1 0 Aug20 ? 00:00:00 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/cedcb67c-92c2-4614-a9b9-ef07eeb96234/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/cedcb67c-92c2-4614-a9b9-ef07eeb96234/host --addn-hosts=/var/lib/neutron/dhcp/cedcb67c-92c2-4614-a9b9-ef07eeb96234/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/cedcb67c-92c2-4614-a9b9-ef07eeb96234/opts --dhcp-leasefile=/var/lib/neutron/dhcp/cedcb67c-92c2-4614-a9b9-ef07eeb96234/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tapcc199623-f0 --dhcp-range=set:tag0,192.168.1.0,static,86400s --dhcp-option-force=option:mtu,1450 --dhcp-lease-max=256 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
opensta+ 5409 1 0 14:52 ? 00:00:00 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/20375c4e-4b2a-42aa-98aa-f2f354265e89/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/20375c4e-4b2a-42aa-98aa-f2f354265e89/host --addn-hosts=/var/lib/neutron/dhcp/20375c4e-4b2a-42aa-98aa-f2f354265e89/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/20375c4e-4b2a-42aa-98aa-f2f354265e89/opts --dhcp-leasefile=/var/lib/neutron/dhcp/20375c4e-4b2a-42aa-98aa-f2f354265e89/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tapb27a7901-ed --dhcp-range=set:tag0,10.199.101.0,static,86400s --dhcp-option-force=option:mtu,1500 --dhcp-lease-max=256 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
opensta+ 7108 1 0 Aug19 ? 00:00:00 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/b17c19bf-6f3d-4111-9a48-6836cff2f939/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/b17c19bf-6f3d-4111-9a48-6836cff2f939/host --addn-hosts=/var/lib/neutron/dhcp/b17c19bf-6f3d-4111-9a48-6836cff2f939/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/b17c19bf-6f3d-4111-9a48-6836cff2f939/opts --dhcp-leasefile=/var/lib/neutron/dhcp/b17c19bf-6f3d-4111-9a48-6836cff2f939/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tap2148129a-85 --dhcp-range=set:tag0,192.168.1.0,static,86400s --dhcp-option-force=option:mtu,1450 --dhcp-lease-max=256 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
opensta+ 7620 1 0 10:20 ? 00:00:00 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/b76960b3-0758-4a06-a67d-c3111d6cf6b3/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/b76960b3-0758-4a06-a67d-c3111d6cf6b3/host --addn-hosts=/var/lib/neutron/dhcp/b76960b3-0758-4a06-a67d-c3111d6cf6b3/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/b76960b3-0758-4a06-a67d-c3111d6cf6b3/opts --dhcp-leasefile=/var/lib/neutron/dhcp/b76960b3-0758-4a06-a67d-c3111d6cf6b3/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tap5131085d-9a --dhcp-range=set:tag0,10.199.101.0,static,86400s --dhcp-option-force=option:mtu,1500 --dhcp-lease-max=256 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
opensta+ 8764 1 0 15:37 ? 00:00:00 dnsmasq --no-hosts --no-resolv --strict-order --except-interface=lo --pid-file=/var/lib/neutron/dhcp/cbb01289-1604-4b01-a079-319a63080f5a/pid --dhcp-hostsfile=/var/lib/neutron/dhcp/cbb01289-1604-4b01-a079-319a63080f5a/host --addn-hosts=/var/lib/neutron/dhcp/cbb01289-1604-4b01-a079-319a63080f5a/addn_hosts --dhcp-optsfile=/var/lib/neutron/dhcp/cbb01289-1604-4b01-a079-319a63080f5a/opts --dhcp-leasefile=/var/lib/neutron/dhcp/cbb01289-1604-4b01-a079-319a63080f5a/leases --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tap7614b61e-7d --dhcp-range=set:tag0,176.16.5.0,static,86400s --dhcp-option-force=option:mtu,1500 --dhcp-lease-max=256 --conf-file=/etc/neutron/dnsmasq.conf --domain=openstacklocal
=============================================================================================
opensta+ 39414 1 0 Aug15 ? 01:11:49 /usr/bin/python2.7 /usr/bin/glance-api --config-file /etc/glance/glance-api.conf
opensta+ 513 39414 0 Aug15 ? 00:02:53 /usr/bin/python2.7 /usr/bin/glance-api --config-file /etc/glance/glance-api.conf
opensta+ 520 39414 0 Aug15 ? 00:03:29 /usr/bin/python2.7 /usr/bin/glance-api --config-file /etc/glance/glance-api.conf
opensta+ 523 39414 2 Aug15 ? 05:22:35 /usr/bin/python2.7 /usr/bin/glance-api --config-file /etc/glance/glance-api.conf
tcp 0 0 172.28.9.205:9292 0.0.0.0:* LISTEN 513/python2.7
opensta+ 39981 1 0 Aug15 ? 00:00:00 /usr/bin/python2.7 /usr/bin/glance-registry --config-file /etc/glance/glance-registry.conf
opensta+ 40934 39981 0 Aug15 ? 00:02:27 /usr/bin/python2.7 /usr/bin/glance-registry --config-file /etc/glance/glance-registry.conf
tcp 0 0 172.28.9.205:9191 0.0.0.0:* LISTEN 39981/python2.7
=============================================================================================
,8775,8880
opensta+ 18873 1 0 Aug15 ? 01:13:29 /usr/bin/python2.7 /usr/bin/nova-api --config-file=/etc/nova/nova-api.conf
opensta+ 33151 18873 2 Aug15 ? 07:49:54 /usr/bin/python2.7 /usr/bin/nova-api --config-file=/etc/nova/nova-api.conf
opensta+ 34002 18873 0 Aug15 ? 00:32:20 /usr/bin/python2.7 /usr/bin/nova-api --config-file=/etc/nova/nova-api.conf
opensta+ 34765 18873 0 Aug15 ? 02:13:12 /usr/bin/python2.7 /usr/bin/nova-api --config-file=/etc/nova/nova-api.conf
tcp 0 0 172.28.8.161:8774 0.0.0.0:* LISTEN 18873/python2.7
tcp 0 0 172.28.8.161:8775 0.0.0.0:* LISTEN 18873/python2.7
tcp 0 0 172.28.8.161:8880 0.0.0.0:* LISTEN 18873/python2.7
nova-compute
opensta+ 7028 1 2 Aug15 ? 06:44:14 /usr/bin/python2.7 /usr/bin/nova-compute --config-file=/etc/nova/nova-compute.conf
udp 0 0 127.0.0.1:45928 0.0.0.0:* 7028/python2.7
udp 0 0 127.0.0.1:54049 0.0.0.0:* 7028/python2.7
nova-conductor
opensta+ 37923 1 0 Aug15 ? 01:16:19 /usr/bin/python2.7 /usr/bin/nova-conductor --config-file=/etc/nova/nova-conductor.conf
opensta+ 40728 37923 2 Aug15 ? 07:06:11 /usr/bin/python2.7 /usr/bin/nova-conductor --config-file=/etc/nova/nova-conductor.conf
opensta+ 40732 37923 2 Aug15 ? 07:30:48 /usr/bin/python2.7 /usr/bin/nova-conductor --config-file=/etc/nova/nova-conductor.conf
opensta+ 40734 37923 2 Aug15 ? 07:33:36 /usr/bin/python2.7 /usr/bin/nova-conductor --config-file=/etc/nova/nova-conductor.conf
udp 0 0 127.0.0.1:52864 0.0.0.0:* 37923/python2.7
udp 0 0 127.0.0.1:60137 0.0.0.0:* 37923/python2.7
nova-scheduler
opensta+ 12566 1 2 Aug15 ? 05:47:02 /usr/bin/python2.7 /usr/bin/nova-scheduler --config-file=/etc/nova/nova-scheduler.conf
udp 0 0 127.0.0.1:40343 0.0.0.0:* 12566/python2.7
udp 0 0 127.0.0.1:60767 0.0.0.0:* 12566/python2.7
nova-console
opensta+ 33560 1 0 Aug15 ? 00:26:37 /usr/bin/python2.7 /usr/bin/nova-console --config-file=/etc/nova/nova-console.conf
udp 0 0 127.0.0.1:43158 0.0.0.0:* 33560/python2.7
udp 0 0 127.0.0.1:59183 0.0.0.0:* 33560/python2.7
nova-consoleauth
opensta+ 34127 1 2 Aug15 ? 05:14:38 /usr/bin/python2.7 /usr/bin/nova-consoleauth --config-file=/etc/nova/nova-console.conf
udp 0 0 127.0.0.1:41825 0.0.0.0:* 34127/python2.7
udp 0 0 127.0.0.1:53570 0.0.0.0:* 34127/python2.7
opensta+ 34467 1 0 Aug15 ? 00:12:39 /usr/bin/python2.7 /usr/bin/nova-novncproxy --config-file=/etc/nova/nova-novncproxy.conf --web /usr/share/novnc
tcp 0 0 172.28.8.11:6080 0.0.0.0:* LISTEN 34467/python2.7
=============================================================================================
opensta+ 27524 1 0 Aug15 ? 01:14:12 /usr/bin/python2.7 /usr/bin/cinder-api --config-file /etc/cinder/cinder-api.conf
opensta+ 29647 27524 2 Aug15 ? 06:18:49 /usr/bin/python2.7 /usr/bin/cinder-api --config-file /etc/cinder/cinder-api.conf
tcp 0 0 172.28.9.185:8776 0.0.0.0:* LISTEN 27524/python2.7
cinder-scheduler
opensta+ 3125 1 2 Aug15 ? 05:47:36 /usr/bin/python2.7 /usr/bin/cinder-scheduler --config-file /etc/cinder/cinder-scheduler.conf
udp 0 0 127.0.0.1:41519 0.0.0.0:* 3125/python2.7
udp 0 0 127.0.0.1:56298 0.0.0.0:* 3125/python2.7
cinder-backup
opensta+ 25174 1 0 Aug15 ? 00:27:50 /usr/bin/python2.7 /usr/bin/cinder-backup --config-file /etc/cinder/cinder-backup.conf
udp 0 0 127.0.0.1:54457 0.0.0.0:* 25174/python2.7
udp 0 0 127.0.0.1:55560 0.0.0.0:* 25174/python2.7
=============================================================================================
swift 10104 1 0 Aug15 ? 00:01:56 memcached -U 0 -d -m 256 -l 127.0.0.1 -p 11211 -u swift
swift-account-server
swift 16611 1 0 Aug15 ? 01:16:10 /usr/bin/python2 /bin/swift-account-server /etc/swift/account-server.conf
swift 17310 16611 0 Aug15 ? 00:00:44 /usr/bin/python2 /bin/swift-account-server /etc/swift/account-server.conf
swift 17316 16611 0 Aug15 ? 00:00:43 /usr/bin/python2 /bin/swift-account-server /etc/swift/account-server.conf
swift-account-auditor
swift 17820 1 0 Aug15 ? 00:00:02 /usr/bin/python2 /bin/swift-account-auditor /etc/swift/account-server.conf
swift-account-replicator
swift 18607 1 0 Aug15 ? 00:00:09 /usr/bin/python2 /bin/swift-account-replicator /etc/swift/account-server.conf
swift-account-reaper
swift 19311 1 0 Aug15 ? 00:00:00 /usr/bin/python2 /bin/swift-account-reaper /etc/swift/account-server.conf
swift-container-auditor
swift 25986 1 0 Aug15 ? 00:00:02 /usr/bin/python2 /bin/swift-container-auditor /etc/swift/container-server.conf
swift-container-replicator
swift 24841 1 0 Aug15 ? 00:00:12 /usr/bin/python2 /bin/swift-container-replicator /etc/swift/container-server.conf
swift-container-sync
swift 27982 1 0 Aug15 ? 00:00:00 /usr/bin/python2 /bin/swift-container-sync /etc/swift/container-server.conf
swift-container-server
swift 21043 1 0 Aug15 ? 01:16:50 /usr/bin/python2 /bin/swift-container-server /etc/swift/container-server.conf
swift 22531 21043 0 Aug15 ? 00:00:07 /usr/bin/python2 /bin/swift-container-server /etc/swift/container-server.conf
swift 22545 21043 0 Aug15 ? 00:00:06 /usr/bin/python2 /bin/swift-container-server /etc/swift/container-server.conf
swift 22557 21043 0 Aug15 ? 00:00:07 /usr/bin/python2 /bin/swift-container-server /etc/swift/container-server.conf
swift 22564 21043 0 Aug15 ? 00:00:07 /usr/bin/python2 /bin/swift-container-server /etc/swift/container-server.conf
swift-container-updater
swift 23653 1 0 Aug15 ? 00:00:12 /usr/bin/python2 /bin/swift-container-updater /etc/swift/container-server.conf
swift-proxy-server
swift 26090 1 0 Aug15 ? 01:17:27 /usr/bin/python2 /bin/swift-proxy-server /etc/swift/proxy-server.conf
swift 28462 26090 0 Aug15 ? 00:01:38 /usr/bin/python2 /bin/swift-proxy-server /etc/swift/proxy-server.conf
swift 28470 26090 0 Aug15 ? 00:01:50 /usr/bin/python2 /bin/swift-proxy-server /etc/swift/proxy-server.conf
swift 28475 26090 0 Aug15 ? 00:02:15 /usr/bin/python2 /bin/swift-proxy-server /etc/swift/proxy-server.conf
swift 28483 26090 0 Aug15 ? 00:02:02 /usr/bin/python2 /bin/swift-proxy-server /etc/swift/proxy-server.conf
swift 28495 26090 0 Aug15 ? 00:01:58 /usr/bin/python2 /bin/swift-proxy-server /etc/swift/proxy-server.conf
swift 28519 26090 0 Aug15 ? 00:01:56 /usr/bin/python2 /bin/swift-proxy-server /etc/swift/proxy-server.conf
swift 28531 26090 0 Aug15 ? 00:01:50 /usr/bin/python2 /bin/swift-proxy-server /etc/swift/proxy-server.conf
swift 28542 26090 0 Aug15 ? 00:01:44 /usr/bin/python2 /bin/swift-proxy-server /etc/swift/proxy-server.conf
swift-object-auditor
swift 33744 1 0 Aug15 ? 00:00:21 /usr/bin/python2 /bin/swift-object-auditor /etc/swift/object-server.conf
swift 12203 33744 3 15:44 ? 00:00:19 /usr/bin/python2 /bin/swift-object-auditor /etc/swift/object-server.conf
swift-object-expirer
swift 34769 1 0 Aug15 ? 00:01:00 /usr/bin/python2 /bin/swift-object-expirer /etc/swift/object-expirer.conf
swift-object-replicator
swift 32415 1 0 Aug15 ? 00:26:54 /usr/bin/python2 /bin/swift-object-replicator /etc/swift/object-server.conf
swift-object-server
swift 30839 1 0 Aug15 ? 01:16:54 /usr/bin/python2 /bin/swift-object-server /etc/swift/object-server.conf
swift 31871 30839 0 Aug15 ? 00:06:29 /usr/bin/python2 /bin/swift-object-server /etc/swift/object-server.conf
swift 31876 30839 0 Aug15 ? 00:06:29 /usr/bin/python2 /bin/swift-object-server /etc/swift/object-server.conf
swift 31879 30839 0 Aug15 ? 00:06:35 /usr/bin/python2 /bin/swift-object-server /etc/swift/object-server.conf
swift 31890 30839 0 Aug15 ? 00:06:56 /usr/bin/python2 /bin/swift-object-server /etc/swift/object-server.conf
swift 31897 30839 0 Aug15 ? 00:07:18 /usr/bin/python2 /bin/swift-object-server /etc/swift/object-server.conf
swift 31903 30839 0 Aug15 ? 00:06:54 /usr/bin/python2 /bin/swift-object-server /etc/swift/object-server.conf
swift 31913 30839 0 Aug15 ? 00:07:06 /usr/bin/python2 /bin/swift-object-server /etc/swift/object-server.conf
swift 31919 30839 0 Aug15 ? 00:06:38 /usr/bin/python2 /bin/swift-object-server /etc/swift/object-server.conf
swift-object-updater
swift 35664 1 0 Aug15 ? 00:00:09 /usr/bin/python2 /bin/swift-object-updater /etc/swift/object-server.conf
=============================================================================================
ceilo-api
root 34777 1 0 Aug15 ? 00:00:25 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
opensta+ 3479 34777 1 10:13 ? 00:03:31 ceilo-api -f /etc/apache2cei/httpd.conf
opensta+ 40141 34777 1 10:13 ? 00:03:32 ceilo-api -f /etc/apache2cei/httpd.conf
wwwrun 1060 34777 0 15:44 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
wwwrun 11739 34777 0 15:38 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
wwwrun 25172 34777 0 15:34 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
wwwrun 27514 34777 0 14:28 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
wwwrun 28650 34777 0 15:49 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
wwwrun 29289 34777 0 15:49 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
wwwrun 29290 34777 0 15:49 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
wwwrun 35484 34777 0 14:59 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
wwwrun 38273 34777 0 15:29 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
wwwrun 9401 34777 0 15:09 ? 00:00:00 /usr/sbin/httpd -f /etc/apache2cei/httpd.conf
ceilometer-polling
opensta+ 20232 1 0 Aug15 ? 01:08:51 /usr/bin/python2 /usr/bin/ceilometer-polling --polling-namespaces central --config-file /etc/ceilometer/ceilometer-agent-central.conf
opensta+ 13909 1 0 Aug15 ? 00:33:17 /usr/bin/python2 /usr/bin/ceilometer-polling --polling-namespaces compute --config-file /etc/ceilometer/ceilometer-agent-compute.conf
ceilometer-collector
opensta+ 2842 1 0 Aug15 ? 01:12:46 /usr/bin/python2 /usr/bin/ceilometer-collector --config-file /etc/ceilometer/ceilometer-collector.conf
opensta+ 3132 2842 7 Aug15 ? 19:30:31 /usr/bin/python2 /usr/bin/ceilometer-collector --config-file /etc/ceilometer/ceilometer-collector.conf
opensta+ 3135 2842 7 Aug15 ? 19:08:29 /usr/bin/python2 /usr/bin/ceilometer-collector --config-file /etc/ceilometer/ceilometer-collector.conf
opensta+ 3139 2842 7 Aug15 ? 19:14:53 /usr/bin/python2 /usr/bin/ceilometer-collector --config-file /etc/ceilometer/ceilometer-collector.conf
opensta+ 3140 2842 7 Aug15 ? 20:33:21 /usr/bin/python2 /usr/bin/ceilometer-collector --config-file /etc/ceilometer/ceilometer-collector.conf
opensta+ 3143 2842 7 Aug15 ? 20:44:37 /usr/bin/python2 /usr/bin/ceilometer-collector --config-file /etc/ceilometer/ceilometer-collector.conf
opensta+ 3144 2842 7 Aug15 ? 19:42:33 /usr/bin/python2 /usr/bin/ceilometer-collector --config-file /etc/ceilometer/ceilometer-collector.conf
opensta+ 3149 2842 8 Aug15 ? 22:48:32 /usr/bin/python2 /usr/bin/ceilometer-collector --config-file /etc/ceilometer/ceilometer-collector.conf
opensta+ 3150 2842 7 Aug15 ? 20:00:09 /usr/bin/python2 /usr/bin/ceilometer-collector --config-file /etc/ceilometer/ceilometer-collector.conf
ceilometer-agent-notification
opensta+ 5933 1 2 Aug15 ? 07:01:22 /usr/bin/python2 /usr/bin/ceilometer-agent-notification --config-file /etc/ceilometer/ceilometer-agent-notification.conf
udp 0 0 127.0.0.1:33018 0.0.0.0:* 5933/python2
udp 0 0 127.0.0.1:54356 0.0.0.0:* 5933/python2
ceilometer-agent-hardware
opensta+ 14533 1 0 Aug15 ? 01:22:54 /usr/bin/python2 /usr/bin/ceilometer-agent-hardware --config-file /etc/ceilometer/ceilometer-agent-hardware.conf
udp 0 0 127.0.0.1:45274 0.0.0.0:* 14533/python2
udp 0 0 127.0.0.1:51807 0.0.0.0:* 14533/python2
aodh-api 端口8042 ##提供访问存储在数据中心的警告信息
opensta+ 24373 9064 0 11:34 ? 00:01:17 aodh-api -f /etc/apache2aodh/httpd.conf
tcp 0 0 172.28.10.71:8042 0.0.0.0:* LISTEN 9064/httpd
aodh-evaluator ##报警评估器,当警告发生是由于相关联的统计趋势超过阈值以上的滑动时间窗口,然后作出决定
opensta+ 18747 1 1 Aug15 ? 03:00:14 /usr/bin/python2 /usr/bin/aodh-evaluator --config-file /etc/aodh/aodh-evaluator.conf
udp 0 0 127.0.0.1:38165 0.0.0.0:* 18747/python2
udp 0 0 127.0.0.1:44254 0.0.0.0:* 18747/python2
aodh-notifier ##报警通知器,允许警告为一组收集的实例基于评估阀值来设置
opensta+ 40092 1 0 Aug15 ? 00:00:29 /usr/bin/python2 /usr/bin/aodh-notifier --config-file /etc/aodh/aodh-notifier.conf
udp 0 0 127.0.0.1:45515 0.0.0.0:* 40092/python2
udp 0 0 127.0.0.1:50437 0.0.0.0:* 40092/python2
aodh-listener ##通知监听器,来检测什么时候发出告警
opensta+ 36623 1 6 Aug15 ? 18:00:05 /usr/bin/python2 /usr/bin/aodh-listener --config-file /etc/aodh/aodh-listener.conf
udp 0 0 127.0.0.1:39710 0.0.0.0:* 36623/python2
udp 0 0 127.0.0.1:56705 0.0.0.0:* 36623/python2
=============================================================================================
heat-api 端口8004 ##提供原生的restful API对外使用,用户对API的调用,由heat-api处理之后,最终通过RPC传递给Heat-engine来进一步处理
opensta+ 34262 1 0 Aug15 ? 00:00:01 /usr/bin/python2.7 /usr/bin/heat-api
opensta+ 35185 34262 1 Aug15 ? 03:30:33 /usr/bin/python2.7 /usr/bin/heat-api
opensta+ 35189 34262 1 Aug15 ? 03:27:11 /usr/bin/python2.7 /usr/bin/heat-api
opensta+ 35190 34262 1 Aug15 ? 03:28:14 /usr/bin/python2.7 /usr/bin/heat-api
tcp 0 0 172.28.8.151:8004 0.0.0.0:* LISTEN 34262/python2.7
heat-api-cfn 端口8025 ##提供了Amazon style 的查询 API,因此可以完全兼容于Amazon的CloudFormation
opensta+ 35017 1 0 Aug15 ? 00:00:01 /usr/bin/python2.7 /usr/bin/heat-api-cfn
opensta+ 35618 35017 1 Aug15 ? 03:30:31 /usr/bin/python2.7 /usr/bin/heat-api-cfn
opensta+ 35619 35017 0 Aug15 ? 00:02:32 /usr/bin/python2.7 /usr/bin/heat-api-cfn
opensta+ 35620 35017 1 Aug15 ? 03:30:27 /usr/bin/python2.7 /usr/bin/heat-api-cfn
tcp 0 0 172.28.8.151:8025 0.0.0.0:* LISTEN 35017/python2.7
heat-engine ##是heat中的核心模块,主要的逻辑业务处理模块,此模块最终完成应用系统的创建和部署
opensta+ 34672 1 1 Aug15 ? 03:33:31 /usr/bin/python2.7 /usr/bin/heat-engine
udp 0 0 127.0.0.1:38697 0.0.0.0:* 34672/python2.7
udp 0 0 127.0.0.1:48804 0.0.0.0:* 34672/python2.7
=============================================================================================
,19998
gaussdba 10053 21128 0 15:44 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(52690) idle
gaussdba 10113 21128 0 15:24 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(33482) idle
gaussdba 10122 21128 0 15:44 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(52692) idle
gaussdba 1024 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.2(38095) idle
gaussdba 10931 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(36952) idle
gaussdba 11258 21128 0 14:40 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.5(33648) idle
gaussdba 11290 21128 0 15:38 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(42670) idle
gaussdba 11300 21128 0 15:50 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(35870) idle
gaussdba 11532 21128 0 15:24 ? 00:00:00 gaussdb: SELECT_USER NEUTRON 172.28.13.251(40112) idle
gaussdba 12360 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53386) idle
gaussdba 12618 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(50902) idle
gaussdba 12809 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(37054) idle
gaussdba 13097 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(50906) idle
gaussdba 14057 21128 0 15:23 ? 00:00:00 gaussdb: OPENSTACK OSTF 172.28.0.2(47496) idle
gaussdba 14136 21128 0 15:23 ? 00:00:00 gaussdb: OPENSTACK OSTF 172.28.0.2(47516) idle
gaussdba 1480 21128 0 14:00 ? 00:00:00 gaussdb: OPENSTACK OSTF 172.28.0.2(44226) idle
gaussdba 1491 21128 0 15:35 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.5(41270) idle
gaussdba 15099 21128 0 12:45 ? 00:00:00 gaussdb: SELECT_USER NEUTRON 172.28.13.251(48122) idle
gaussdba 15498 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53420) idle
gaussdba 16700 21128 0 15:10 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.5(52846) idle
gaussdba 17429 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53430) idle
gaussdba 17432 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53432) idle
gaussdba 17434 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(37262) idle
gaussdba 17443 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(50950) idle
gaussdba 17701 21128 0 15:50 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(36074) idle
gaussdba 17913 21128 0 15:50 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53046) idle
gaussdba 17953 21128 0 15:50 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53048) idle
gaussdba 1829 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38110) idle
gaussdba 18333 21128 0 15:28 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(55322) idle
gaussdba 18343 21128 0 15:28 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.2(55324) idle
gaussdba 18473 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(50964) idle
gaussdba 18476 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(50966) idle
gaussdba 18586 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(37284) idle
gaussdba 18649 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53440) idle
gaussdba 1905 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51260) idle
gaussdba 19147 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53444) idle
gaussdba 19333 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53460) idle
gaussdba 19407 21128 0 Aug16 ? 00:00:00 gaussdb: OPENSTACK OSTF 172.28.0.2(54639) idle
gaussdba 19775 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53466) idle
gaussdba 20217 21128 0 11:18 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51440) idle
gaussdba 2061 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53732) idle
gaussdba 20748 21128 0 Aug15 ? 00:00:00 gaussdb: OPENSTACK OMM 172.28.0.2(54410) idle
gaussdba 2084 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53734) idle
gaussdba 20895 21128 0 13:34 ? 00:00:00 gaussdb: SELECT_USER CINDER 172.28.13.251(53135) idle
gaussdba 20897 21128 0 13:34 ? 00:00:00 gaussdb: SELECT_USER CINDER 172.28.13.251(53136) idle
gaussdba 20900 21128 0 13:34 ? 00:00:00 gaussdb: SELECT_USER NEUTRON 172.28.13.251(53137) idle
gaussdba 20901 21128 0 13:34 ? 00:00:00 gaussdb: SELECT_USER NEUTRON 172.28.13.251(53138) idle
gaussdba 20916 21128 0 13:34 ? 00:00:00 gaussdb: SELECT_USER NEUTRON 172.28.13.251(53139) idle
gaussdba 20955 21128 0 13:34 ? 00:00:00 gaussdb: SELECT_USER NEUTRON 172.28.13.251(53141) idle
gaussdba 20983 21128 0 13:34 ? 00:00:00 gaussdb: SELECT_USER NEUTRON 172.28.13.251(53142) idle
gaussdba 2107 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53736) idle
gaussdba 21124 21128 0 15:49 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(52704) idle
gaussdba 21128 1 0 Aug15 ? 00:42:26 /opt/gaussdb/app/bin/gaussdb -D /opt/fusionplatform/data/gaussdb -M primary
gaussdba 21187 21128 0 15:49 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(52706) idle
gaussdba 21345 21128 0 Aug15 ? 00:00:10 gaussdb: logger process
gaussdba 21374 21128 0 Aug15 ? 00:00:39 gaussdb: checkpointer process
gaussdba 21375 21128 0 Aug15 ? 00:00:00 gaussdb: writer process
gaussdba 21376 21128 0 Aug15 ? 00:01:02 gaussdb: wal writer process
gaussdba 21377 21128 0 Aug15 ? 00:03:23 gaussdb: autovacuum launcher process
gaussdba 21378 21128 0 Aug15 ? 00:00:01 gaussdb: archiver process last was 0000000100000000000000CC
gaussdba 21379 21128 0 Aug15 ? 00:15:32 gaussdb: stats collector process
gaussdba 21380 21128 0 Aug15 ? 00:05:42 gaussdb: auditor process
gaussdba 21523 21128 0 15:49 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(50200) idle
gaussdba 21633 21128 0 Aug15 ? 00:13:44 gaussdb: wal sender process REPLICATION 172.28.8.92(52285) streaming 0/CD4B1418
gaussdba 21744 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(50990) idle
gaussdba 21759 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53496) idle
gaussdba 2188 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(51262) idle
gaussdba 21886 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51010) idle
gaussdba 22105 21128 0 Aug15 ? 00:04:26 gaussdb: OPENSTACK OMM 172.28.0.2(54480) idle
gaussdba 2223 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(38125) idle
gaussdba 2227 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53738) idle
gaussdba 22276 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK HEAT 172.28.0.2(37412) idle
gaussdba 22309 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK HEAT 172.28.0.2(37414) idle
gaussdba 22488 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37420) idle
gaussdba 22544 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37424) idle
gaussdba 22911 21128 0 15:00 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.2(39322) idle
gaussdba 22939 21128 0 11:31 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(33858) idle
gaussdba 23304 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51036) idle
gaussdba 23606 21128 0 15:48 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(33490) idle
gaussdba 23875 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(50622) idle
gaussdba 23989 21128 0 13:34 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.6(52036) idle
gaussdba 23992 21128 0 15:48 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(52294) idle
gaussdba 24322 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK HEAT 172.28.0.5(51050) idle
gaussdba 24324 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK HEAT 172.28.0.5(51052) idle
gaussdba 25000 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51058) idle
gaussdba 2617 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38139) idle
gaussdba 26305 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53546) idle
gaussdba 26442 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53548) idle
gaussdba 26462 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51064) idle
gaussdba 2674 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38143) idle
gaussdba 2675 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(38145) idle
gaussdba 2676 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.2(38147) idle
gaussdba 2677 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.2(38149) idle
gaussdba 2678 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51268) idle
gaussdba 26840 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53558) idle
gaussdba 26847 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53560) idle
gaussdba 2690 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51270) idle
gaussdba 26948 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK HEAT 172.28.0.6(53562) idle
gaussdba 26982 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK HEAT 172.28.0.6(53564) idle
gaussdba 2700 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38155) idle
gaussdba 27138 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK HEAT 172.28.0.6(53568) idle
gaussdba 27177 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(51088) idle
gaussdba 27603 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53576) idle
gaussdba 27614 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.5(51102) idle
gaussdba 27720 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51106) idle
gaussdba 27764 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37660) idle
gaussdba 27860 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37662) idle
gaussdba 28031 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.2(37674) idle
gaussdba 28129 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.6(53584) idle
gaussdba 2860 21128 0 Aug16 ? 00:00:00 gaussdb: OPENSTACK OSTF 172.28.0.2(51006) idle
gaussdba 28678 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.2(36394) idle
gaussdba 28788 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53158) idle
gaussdba 28855 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37688) idle
gaussdba 2950 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(38159) idle
gaussdba 29820 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37709) idle
gaussdba 2999 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51274) idle
gaussdba 3003 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51276) idle
gaussdba 30316 21128 0 11:12 ? 00:00:00 gaussdb: OPENSTACK OSTF 172.28.0.2(54172) idle
gaussdba 3046 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.5(51278) idle
gaussdba 3072 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.5(51280) idle
gaussdba 31072 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37730) idle
gaussdba 31975 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53598) idle
gaussdba 32004 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53600) idle
gaussdba 32016 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53602) idle
gaussdba 32046 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51134) idle
gaussdba 32269 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53610) idle
gaussdba 32447 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51142) idle
gaussdba 32453 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51144) idle
gaussdba 32455 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37768) idle
gaussdba 32484 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53614) idle
gaussdba 32549 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53618) idle
gaussdba 32569 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51148) idle
gaussdba 32606 21128 0 15:41 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(46118) idle
gaussdba 32626 21128 0 14:51 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(41612) idle
gaussdba 32681 21128 0 15:41 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.6(46122) idle
gaussdba 32996 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37783) idle
gaussdba 33495 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.5(51158) idle
gaussdba 33519 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51162) idle
gaussdba 33539 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37807) idle
gaussdba 33635 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(37815) idle
gaussdba 33652 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(37817) idle
gaussdba 33758 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(37827) idle
gaussdba 33844 21128 0 Aug19 ? 00:00:00 gaussdb: OPENSTACK OSTF 172.28.0.2(54670) idle
gaussdba 33854 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53624) idle
gaussdba 33990 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51170) idle
gaussdba 34011 21128 0 15:10 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.2(54992) idle
gaussdba 34066 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(37846) idle
gaussdba 34518 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(37850) idle
gaussdba 34519 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(37852) idle
gaussdba 34570 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53630) idle
gaussdba 34641 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(51174) idle
gaussdba 35016 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53634) idle
gaussdba 35218 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53636) idle
gaussdba 35301 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.6(53640) idle
gaussdba 35368 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37870) idle
gaussdba 35396 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(37872) idle
gaussdba 35548 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53646) idle
gaussdba 35632 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53648) idle
gaussdba 3565 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53742) idle
gaussdba 3574 21128 1 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38169) idle
gaussdba 35774 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37886) idle
gaussdba 35775 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51180) idle
gaussdba 35794 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51182) idle
gaussdba 36017 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(37902) idle
gaussdba 36155 21128 0 15:47 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(49052) idle
gaussdba 3622 21128 1 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53744) idle
gaussdba 3626 21128 0 15:08 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.6(54102) idle
gaussdba 36301 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.5(51186) idle
gaussdba 36311 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51188) idle
gaussdba 36371 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37916) idle
gaussdba 36373 21128 0 14:21 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(52128) idle
gaussdba 36377 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.2(37918) idle
gaussdba 36482 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.6(53662) idle
gaussdba 36862 21128 0 15:10 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.6(55064) idle
gaussdba 36903 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(37926) idle
gaussdba 36924 21128 0 Aug20 ? 00:00:00 gaussdb: OPENSTACK OSTF 172.28.0.2(35894) idle
gaussdba 36937 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(37932) idle
gaussdba 36974 21128 0 15:10 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.5(53084) idle
gaussdba 37023 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53664) idle
gaussdba 37086 21128 0 15:10 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.2(55172) idle
gaussdba 37255 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(37937) idle
gaussdba 37275 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53666) idle
gaussdba 37326 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51192) idle
gaussdba 37351 21128 0 15:44 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(45200) idle
gaussdba 37434 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.5(51196) idle
gaussdba 37455 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.2(37954) idle
gaussdba 37465 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51198) idle
gaussdba 37491 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.6(53674) idle
gaussdba 37582 21128 0 15:10 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(53122) idle
gaussdba 37598 21128 0 15:43 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.6(47204) idle
gaussdba 37769 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(51200) idle
gaussdba 37818 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51202) idle
gaussdba 37819 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(37988) idle
gaussdba 37825 21128 0 15:10 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(55232) idle
gaussdba 37865 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53678) idle
gaussdba 37876 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53682) idle
gaussdba 37877 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53684) idle
gaussdba 38114 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51208) idle
gaussdba 38115 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51210) idle
gaussdba 38116 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51212) idle
gaussdba 38131 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51214) idle
gaussdba 38197 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.6(53686) idle
gaussdba 38221 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.6(53688) idle
gaussdba 38231 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53690) idle
gaussdba 38233 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(51216) idle
gaussdba 38263 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51220) idle
gaussdba 38385 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(50756) idle
gaussdba 38461 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51224) idle
gaussdba 38508 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53696) idle
gaussdba 38525 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53698) idle
gaussdba 38566 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51232) idle
gaussdba 38577 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(38036) idle
gaussdba 3858 21128 0 13:33 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(53072) idle
gaussdba 38597 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(38042) idle
gaussdba 3860 21128 0 13:33 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(53073) idle
gaussdba 38605 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53700) idle
gaussdba 38617 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53702) idle
gaussdba 38631 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.6(53706) idle
gaussdba 3866 21128 0 13:33 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(53074) idle
gaussdba 3867 21128 0 13:33 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(53075) idle
gaussdba 38675 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53710) idle
gaussdba 3874 21128 0 13:33 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(53076) idle
gaussdba 3877 21128 0 13:33 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(53077) idle
gaussdba 38911 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(36630) idle
gaussdba 38913 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.6(53212) idle
gaussdba 38920 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53713) idle
gaussdba 39110 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38052) idle
gaussdba 39122 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51238) idle
gaussdba 39152 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51240) idle
gaussdba 39153 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51242) idle
gaussdba 39161 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38057) idle
gaussdba 39166 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38059) idle
gaussdba 39298 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53716) idle
gaussdba 39368 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53718) idle
gaussdba 39371 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53720) idle
gaussdba 39375 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(38061) idle
gaussdba 39382 21128 0 15:51 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.5(50766) idle
gaussdba 39397 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38063) idle
gaussdba 39405 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51244) idle
gaussdba 39411 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK KEYSTONE 172.28.0.2(38068) idle
gaussdba 39413 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51246) idle
gaussdba 39436 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51248) idle
gaussdba 39454 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53722) idle
gaussdba 39717 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.6(53728) idle
gaussdba 40322 21128 0 Aug16 ? 00:03:48 gaussdb: OPENSTACK OMM 172.28.0.2(39454) idle
gaussdba 4042 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.5(51282) idle
gaussdba 405 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38086) idle
gaussdba 4055 21128 0 15:46 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(48692) idle
gaussdba 40708 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK CINDER 172.28.0.5(51252) idle
gaussdba 4120 21128 0 15:46 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.5(48698) idle
gaussdba 4331 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51284) idle
gaussdba 4347 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(53746) idle
gaussdba 4389 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NEUTRON 172.28.0.2(38185) idle
gaussdba 4995 21128 0 Aug20 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.5(37514) idle
gaussdba 502 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38088) idle
gaussdba 5037 21128 0 Aug20 ? 00:00:00 gaussdb: OPENSTACK NOVA_API 172.28.0.5(37516) idle
gaussdba 5777 21128 0 15:08 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(52126) idle
gaussdba 5805 21128 0 13:28 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(52545) idle
gaussdba 5830 21128 0 13:28 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(52546) idle
gaussdba 5832 21128 0 13:28 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(52547) idle
gaussdba 5846 21128 0 13:28 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(52548) idle
gaussdba 5847 21128 0 13:28 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(52549) idle
gaussdba 5848 21128 0 13:28 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(52550) idle
gaussdba 5858 21128 0 13:28 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(52551) idle
gaussdba 5870 21128 0 15:08 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.6(54168) idle
gaussdba 5886 21128 0 13:28 ? 00:00:00 gaussdb: SELECT_USER NOVA 172.28.13.251(52552) idle
gaussdba 772 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.2(38092) idle
gaussdba 791 21128 0 15:52 ? 00:00:00 gaussdb: OPENSTACK NOVA 172.28.0.5(51254) idle
gaussdba 9777 21128 0 15:40 ? 00:00:00 gaussdb: OPENSTACK GLANCE 172.28.0.2(46388) idle
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN 21128/gaussdb
tcp 0 0 172.28.8.100:5432 0.0.0.0:* LISTEN 21128/gaussdb
tcp 0 0 172.28.8.91:19998 0.0.0.0:* LISTEN 21128/gaussdb
手机扫一扫
移动阅读更方便
你可能感兴趣的文章