Hello,
I am migrating a Sp10 to a SP13 environment. Right now I am just trying alot of stuffs and is working in the Test-environment.
My steps,
- Create a classic-web app.
- Restore all the necessary DBs to the SQL server.
- Created all the service applicaitons and pointed them to their respective databases.
- Tested my contentDB, fixed the errors, mounted it to the Web-app, and converted the Web-app to Claims.
When i try to enter my root-site-collection I am prompted with login, I tried alot of different accounts, users, but none of them will let me in, three atempts and then a blank site.
I used a setup-user to create all services, and install SP, and the users is in the DB and everything, but I cannot log-in. What could be wrong ? Tried google, tried to migrate users to claims, tried alot of things, but I cannot get access.
/emo
Once more, can you please run this PowerShell cmdLet
Get-SPSite | ?{$_.url -eq ‘<Site url>’} | % {$_.RootWeb.SiteAdministrators} | select @{name=’Site’;expr={$_.ParentWeb.Url}}, LoginName
Also,
Can you please open the IIS and in Application pool, Please see the name of the user that running the Application pool of this site (Web Application)
if it is set to network user, Please set it to any user.
Also please run the following PowerShell cmdLet to set Secondar owner name of the Site Collection
Set-SPSite -Identity "<Site URL>" -SecondaryOwnerAlias "domain/user"
And then use this user to open the site.