Two instance of Network server and applications are running

Hi,

We are using LoRa server in one of our Linux embedded projects. Executed below command start LoRa network server and application server.

loraserver --net-id 010203 --band AS_923 --db-automigrate --postgres-dsn postgres://loraserver_ns:dbpassword@/loraserver_ns?sslmode=disable --gw-server-jwt-secret $secret --gw-create-on-stats &

lora-app-server --db-automigrate --postgres-dsn postgres://loraserver_as:dbpassword@/loraserver_as?sslmode=disable --jwt-secret $secret --http-tls-cert cert.pem --http-tls-key key.pem --redis-url redis://${ip[0]}.${ip[1]}.${ip[2]}.${ip[3]}:6379 &

In one of our systems, by default two instances of network server and application server are running in the background. Please see as highlighted below

lora-gateway-bridge --mqtt-server tcp://192.168.004.150:1883
708 ? Sl 0:00 loraserver --net-id 010203 --band AS_923 --db-automigrate --postgres-dsn postgres://loraserver_ns:dbpassword@/lorase
709 ? Sl 0:03 lora-app-server --db-automigrate --postgres-dsn postgres://loraserver_as:dbpassword@/loraserver_as?sslmode=disable -
721 ? Ss 0:50 postgres: loraserver_ns loraserver_ns ::1(37488) idle
722 ? Ss 0:23 postgres: loraserver_ns loraserver_ns ::1(37859) idle
723 ? Ss 0:00 postgres: loraserver_as loraserver_as ::1(38151) idle
724 ? Ss 0:00 postgres: loraserver_as loraserver_as ::1(38164) idle

We would like to know why two instances of _ns and _as are running? is this will create any issue? because we are not able to receive data from one LoRa end node.

Awaiting for your reply.

Thanks