Site collections don't display in new server domain?

Tevon2.0 1,101 Reputation points
2023-10-25T15:44:17.2866667+00:00

Using SharePoint 2019 Server On-Premise

In my new domain no site administrators show or site collections. However my old server and SharePoint domain shows it. How do I get my SharePoint site collections to display on this domain as well?

User's image

User's image

SharePoint Server
SharePoint Server
A family of Microsoft on-premises document management and storage systems.
2,298 questions
SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,363 questions
Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,244 questions
SharePoint Server Development
SharePoint Server Development
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Development: The process of researching, productizing, and refining new or existing technologies.
1,597 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Haoyan Xue_MSFT 22,466 Reputation points Microsoft Vendor
    2023-10-26T06:32:18.2866667+00:00

    Hi @Tevon2.0 ,

    In order to help you better solve your problem, I have some questions I would like to confirm with you:

    1.You are talking about Farm Migration not one server migration, Right?

    2.What have you done to migrate your old domain to the new domain?

    Here are the steps which should be perform in order to complete the migration.

    • Backup your current farm(sharepoint farm backup).
    • Disjoin the existing servers from current domain.
    • Join the servers(Including the SQL Server) to the new domain.
    • Re-create a configuration database in the new SQL location.(means rebuild the farm)
    • Restore the farm from farm's backup.
    • Restore any customizations (Customized web.config for forms authentication may apply.)
    • Run the Migrate User to move all users from old domain to new.

    To backup a site in SharePoint Server, use the Backup-SPSite cmdlet:

    
    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
     
    #Configuration parameters
    $BackupLocation="C:\backups\"
    $WebAppURL="https://company.sharepoint.com"
     
    #Get All site collections under the given web app
    $SitesColl= Get-SPWebApplication $WebAppURL | Get-SPSite -limit ALL
     
    #Iterate through each site collection
    Foreach($Site in $SitesColl)
    {
       #Backup the site collection 
       $FilePath = $BackupLocation + $Site.Url.Replace("https://","").Replace("/","-") + ".bak"
       Backup-SPSite -Identity $Site.Url -Path $FilePath -Force 
       Write-Host "Backup completed Successfully for $($Site.Url)"
    }
    

    Restore site collection backup in SharePoint 2019 using PowerShell:
    Restore-SPSite https://portal.crescent.com/sites/IT -path c:\backup\filename.bak


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.