Can't connect to local DynamoDb instance via AWS CLI

后端 未结 2 466
余生分开走
余生分开走 2021-01-20 16:56

I\'ve created the local instance of DynamoDb by next steps: in Visual Studio I installed AWS explorer and create a new local instance on localhost:82. I can successfully wor

相关标签:
2条回答
  • 2021-01-20 17:41
    java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb
    

    has resolved a similar problem.

    0 讨论(0)
  • 2021-01-20 17:56

    I had the exact same problem. Basically you need to specify -sharedDb when starting up dynamo

    java -jar DynamoDBLocal.jar -sharedDb
    

    I hope that solves your problem.

    0 讨论(0)
提交回复
热议问题