Lincoln
Lincoln

Reputation: 759

Embedded RavenDB - how to run management studio on a different port

It currently runs on 8080, but I need that port for another service.

Upvotes: 3

Views: 493

Answers (1)

Jim Bolla
Jim Bolla

Reputation: 8295

Perhaps this?

var store = new EmbeddableDocumentStore
                        {
                            Configuration =
                                {
                                    Port = 12345,
                                }
                        };

Upvotes: 2

Related Questions