Nis localhost synchronize not correct

Hi, I’m using nis package to synchronize the nodes of NEM in personal computer. Now I’m still in block height 1671315(See from Nano Wallet Dashboard), but the block height in main network is 1828924 now.

Nis config: nem.network = mainnet

I saw the nix.runNis.sh run log:Timer SYNC raised exception: java.lang.IllegalStateException: Request cannot be executed; I/O reactor status: STOPPED

Does anybody know the reason about this, thanks a lot for help.

How your nix.runNis.sh script looks like? Maybe is not enough memory allocated there.

Thanks for reply.
I just use the default nix.runNis.sh script:#!/bin/bash

cd nis
java -Xms512M -Xmx1G -cp ".:./*:../libs/*" org.nem.deploy.CommonStarter
cd -

Should i change the Xms or Xmx to large memory?

Yes. Try change to Xms2300M Xmx2300

OK, I’ll try. thanks.