Skip to content

[Bug] hubble启动后没有8088端口? #735

Description

@jieguolove

Bug Type (问题类型)

server status (启动/运行异常)

Before submit

  • 我已经确认现有的 IssuesFAQ 中没有相同 / 重复问题 (I have confirmed and searched that there are no similar problems in the historical issue and documents)

Environment (环境信息)

(base) [root@lnpg hugegraph]# netstat -tunlp|grep 8088
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]# docker logs -f hubble
Starting Hubble in foreground mode...
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]# netstat -tunlp|grep 8088
(base) [root@lnpg hugegraph]# cat docker-compose.yml
services:
server:
image: hugegraph/hugegraph:1.7.0
container_name: hugegraph
security_opt:
- seccomp=unconfined
mem_limit: 8g
environment:
- PRELOAD=true
- JAVA_OPTS=-Xms2048m -Xmx2048m -XX:+UseG1GC
ports:
- "8080:8080"

studio:
image: hugegraph/hubble
container_name: hubble
depends_on:
- server
ports:
- "8088:8088"
environment:
- HUGE_GRAPH_HOST=server
- HUGE_GRAPH_PORT=8080
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]# docker compose -f docker-compose.yml down
[+] Running 3/3
✔ Container hubble Removed 0.0s
✔ Container hugegraph Removed 0.2s
✔ Network hugegraph_default Removed 0.1s
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]# docker compose -f docker-compose.yml up -d
[+] Running 3/3
✔ Network hugegraph_default Created 0.0s
✔ Container hugegraph Started 0.8s
✔ Container hubble Started 0.6s
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]# netstat -tunlp|grep 8088
(base) [root@lnpg hugegraph]# netstat -tunlp|grep 8080
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 1680450/docker-prox
tcp6 0 0 :::8080 :::* LISTEN 1680456/docker-prox
(base) [root@lnpg hugegraph]# docker logs -f hugegraph
[hugegraph-server-entrypoint] init hugegraph with non-auth mode
Initializing HugeGraph Store...
2026-06-29 02:13:32 [main] [WARN] o.a.h.c.HugeConfig - The config option 'arthas.telnet_port' is redundant, please ensure it has been registered
2026-06-29 02:13:32 [main] [WARN] o.a.h.c.HugeConfig - The config option 'arthas.http_port' is redundant, please ensure it has been registered
2026-06-29 02:13:32 [main] [WARN] o.a.h.c.HugeConfig - The config option 'arthas.disabled_commands' is redundant, please ensure it has been registered
2026-06-29 02:13:32 [main] [INFO] o.a.h.u.ConfigUtil - Scanning option 'graphs' directory './conf/graphs'
2026-06-29 02:13:32 [main] [INFO] o.a.h.c.InitStore - Init graph with config file: /hugegraph-server/conf/graphs/hugegraph.properties
2026-06-29 02:13:32 [db-open-1] [INFO] o.a.h.b.s.r.RocksDBStore - Opening RocksDB with data path: rocksdb-data/data/m
2026-06-29 02:13:32 [db-open-1] [INFO] o.a.h.b.s.r.RocksDBStore - Failed to open RocksDB 'rocksdb-data/data/m' with database 'default/hugegraph', try to init CF later
2026-06-29 02:13:32 [main] [INFO] o.a.h.b.c.CacheManager - Init RamCache for 'schema-id-DEFAULT-hugegraph' with capacity 10000
2026-06-29 02:13:32 [main] [INFO] o.a.h.b.c.CacheManager - Init RamCache for 'schema-name-DEFAULT-hugegraph' with capacity 10000
2026-06-29 02:13:32 [db-open-1] [INFO] o.a.h.b.s.r.RocksDBStore - Opening RocksDB with data path: rocksdb-data/data/s
main dict load finished, time elapsed 766 ms
model load finished, time elapsed 47 ms.
2026-06-29 02:13:33 [db-open-1] [INFO] o.a.h.b.s.r.RocksDBStore - Opening RocksDB with data path: rocksdb-data/data/g
2026-06-29 02:13:33 [main] [INFO] o.c.o.l.Uns - OHC using JNA OS native malloc/free
2026-06-29 02:13:33 [main] [INFO] o.a.h.b.c.CacheManager - Init LevelCache for 'vertex-DEFAULT-hugegraph' with capacity 10000:10000000
2026-06-29 02:13:33 [main] [INFO] o.a.h.b.c.CacheManager - Init LevelCache for 'edge-DEFAULT-hugegraph' with capacity 1000:1000000
2026-06-29 02:13:33 [main] [INFO] o.a.h.t.TaskManager - Use local as the scheduler of graph (hugegraph)
2026-06-29 02:13:33 [main] [INFO] o.a.h.b.c.CacheManager - Init RamCache for 'users-DEFAULT-hugegraph' with capacity 10240
2026-06-29 02:13:33 [main] [INFO] o.a.h.b.c.CacheManager - Init RamCache for 'users_pwd-DEFAULT-hugegraph' with capacity 10240
2026-06-29 02:13:33 [main] [INFO] o.a.h.b.c.CacheManager - Init RamCache for 'token-DEFAULT-hugegraph' with capacity 10240
2026-06-29 02:13:33 [main] [INFO] o.a.h.b.s.r.RocksDBStore - Write down the backend version: 1.11
2026-06-29 02:13:33 [main] [INFO] o.a.h.StandardHugeGraph - Graph 'DEFAULT-hugegraph' has been initialized
2026-06-29 02:13:34 [main] [WARN] o.a.h.c.HugeConfig - The config option 'arthas.telnet_port' is redundant, please ensure it has been registered
2026-06-29 02:13:34 [main] [WARN] o.a.h.c.HugeConfig - The config option 'arthas.http_port' is redundant, please ensure it has been registered
2026-06-29 02:13:34 [main] [WARN] o.a.h.c.HugeConfig - The config option 'arthas.disabled_commands' is redundant, please ensure it has been registered
2026-06-29 02:13:34 [main] [INFO] o.a.h.StandardHugeGraph - Close graph standardhugegraph[DEFAULT-hugegraph]
2026-06-29 02:13:34 [db-open-1] [INFO] o.a.h.b.s.r.RocksDBStore - Opening RocksDB with data path: rocksdb-data/data/m
2026-06-29 02:13:34 [db-open-1] [INFO] o.a.h.b.s.r.RocksDBStore - Opening RocksDB with data path: rocksdb-data/data/s
2026-06-29 02:13:34 [db-open-1] [INFO] o.a.h.b.s.r.RocksDBStore - Opening RocksDB with data path: rocksdb-data/data/g
2026-06-29 02:13:34 [main] [INFO] o.a.h.HugeFactory - HugeFactory shutdown
2026-06-29 02:13:34 [hugegraph-shutdown] [INFO] o.a.h.HugeFactory - HugeGraph is shutting down
Initialization finished.
Starting HugeGraphServer in daemon mode...
Connecting to HugeGraphServer (http://0.0.0.0:8080/graphs)....OK
Started [pid 1076]
Waiting for partition assignment...
Waiting for partition assignment...
Waiting for partition assignment...
Waiting for partition assignment...
^C
(base) [root@lnpg hugegraph]# docker logs -f hubble
Starting Hubble in foreground mode...
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]# netstat -tunlp|grep 8088
(base) [root@lnpg hugegraph]#
(base) [root@lnpg hugegraph]# netstat -tunlp|grep 8080
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 1680450/docker-prox
tcp6 0 0 :::8080 :::* LISTEN 1680456/docker-prox
(base) [root@lnpg hugegraph]#

Expected & Actual behavior (期望与实际表现)

Image

Vertex/Edge example (问题点 / 边数据举例)

Schema [VertexLabel, EdgeLabel, IndexLabel] (元数据结构)

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workinghubblehugegraph-hubble

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions