Skip to content
Snippets Groups Projects
Unverified Commit 267dbcdf authored by dutor's avatar dutor Committed by GitHub
Browse files

Choose default port numbers to reduce chances of conflicts (#474)


Co-authored-by: default avatarYee <2520865+yixinglu@users.noreply.github.com>
parent f5ac9a6f
No related branches found
No related tags found
No related merge requests found
......@@ -24,14 +24,16 @@
--stderrthreshold=2
########## networking ##########
# Meta Server Address
--meta_server_addrs=127.0.0.1:45500
# Local ip
# Comma separated Meta Server Addresses
--meta_server_addrs=127.0.0.1:9559
# Local IP used to identify the nebula-graphd process.
# Change it to an address other than loopback if the service is distributed or
# will be accessed remotely.
--local_ip=127.0.0.1
# Network device to listen on
--listen_netdev=any
# Port to listen on
--port=3699
--port=9669
# To turn on SO_REUSEPORT or not
--reuse_port=false
# Backlog of the listen socket, adjust this together with net.core.somaxconn
......@@ -47,11 +49,11 @@
# The number of threads to execute user queries, 0 for # of CPU cores
--num_worker_threads=0
# HTTP service ip
--ws_ip=127.0.0.1
--ws_ip=0.0.0.0
# HTTP service port
--ws_http_port=13000
--ws_http_port=19669
# HTTP2 service port
--ws_h2_port=13002
--ws_h2_port=19670
# The default charset when a space is created
--default_charset=utf8
......
......@@ -24,14 +24,16 @@
--stderrthreshold=2
########## networking ##########
# Meta Server Address
--meta_server_addrs=127.0.0.1:45500
# Local ip
# Comma separated Meta Server Addresses
--meta_server_addrs=127.0.0.1:9559
# Local IP used to identify the nebula-graphd process.
# Change it to an address other than loopback if the service is distributed or
# will be accessed remotely.
--local_ip=127.0.0.1
# Network device to listen on
--listen_netdev=any
# Port to listen on
--port=3699
--port=9669
# To turn on SO_REUSEPORT or not
--reuse_port=false
# Backlog of the listen socket, adjust this together with net.core.somaxconn
......@@ -47,11 +49,11 @@
# The number of threads to execute user queries, 0 for # of CPU cores
--num_worker_threads=0
# HTTP service ip
--ws_ip=127.0.0.1
--ws_ip=0.0.0.0
# HTTP service port
--ws_http_port=13000
--ws_http_port=19669
# HTTP2 service port
--ws_h2_port=13002
--ws_h2_port=19670
# Heartbeat interval of communication between meta client and graphd service
--heartbeat_interval_secs=10
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment