2

This is a fresh install of Raven #2230, running on IIS8/Win8. When studio starts it offers to create new database, then browser pops up credentials window (401).

Web.config has add key="Raven/AnonymousAccess" value="All"/ set. Also tried add key="Raven/AnonymousUserAccessMode" value="All"/ as per documentation.

Anonymous Authentication on site is enabled, so is Windows Authentication.

Added Raven.Bundles.Authorization.dll to plugins folder (not sure if needed, but didn't make any difference).

Am I missing something ?

Evgeni
  • 3,341
  • 7
  • 37
  • 64

2 Answers2

0

RavenDB as of today, is on version 2750 (stable). Upgrade and this issue should be fixed.

Khalid Abuhakmeh
  • 10,709
  • 10
  • 52
  • 75
0

The way to do this is to set the AnonymousAccess setting in web.config to Admin:

<add key="Raven/AnonymousAccess" value="Admin"/>

You should change this back to All once you have created your database.