Quantcast
Channel: Exchange Server 2013 - Setup, Deployment, Updates, and Migration forum

After upgrading to Ex2013 CU23 indexing of all databases are in failed state

$
0
0

Hi All

Need assistance regarding the above issue. Unable to bring the indexing state to healthy after upgrading to CU23.

Tried deleting the content index folder of each database and start the service.

Tried updating using catalog only option

even tried rebuilt the database using delete existing files. 

But still the issue persists.


Upgrade Exchange 2013 Edge servers from SP1 to CU23

$
0
0

Need to upgrade 2 Exchange 2013 Edge servers from SP1 to CU23. Unable to find proper steps to follow.

Thank you to provide the proper steps and what need to be taken care before and after upgrade.

Exchange Server 2013 CU update fail from CU13 to CU22

$
0
0

We want to update our exchange mailbox server from CU13 to CU20. We are facing below error:

Error:
The following error was generated when "$error.Clear(); 
    initialize-ExchangeUniversalGroups -DomainController $RoleDomainController -ActiveDirectorySplitPermissions $RoleActiveDirectorySplitPermissions
 

" was run: "System.NullReferenceException: Object reference not set to an instance of an object.
   at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.CreateOrMoveEWPGroup(ADGroup ewp, ADOrganizationalUnit usgContainer)
   at Microsoft.Exchange.Management.Tasks.InitializeExchangeUniversalGroups.InternalProcessRecord()
   at Microsoft.Exchange.Configuration.Tasks.Task.<ProcessRecord>b__b()
   at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)
   at Microsoft.Exchange.Configuration.Tasks.Task.ProcessTaskStage(TaskStage taskStage, Action initFunc, Action mainFunc, Action completeFunc)
   at Microsoft.Exchange.Configuration.Tasks.Task.ProcessRecord()
   at System.Management.Automation.CommandProcessor.ProcessRecord()".

We have 2 mailbox and a EDGE server in our environment. We have found that in mailbox 1, Exchange Server Service HostService is not starting. It is showing an error 1067: The Process terminated unexpectedly.

Unable to login to Exchange Admin Console after failed Ex2013 CU23 update

$
0
0

Hi All

Getting error while login to Exch2013 ECP:

Server Error in '/ecp' Application.
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS1702: Warning as Error: Assuming assembly reference 'Microsoft.Exchange.Data.Common, Version=15.0.1397.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' matches 'Microsoft.Exchange.Data.Common, Version=15.0.1374.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35', you may need to supply runtime policy

Source Error:
[No relevant source lines]

Source File:    Line: 0
Show Detailed Compiler Output:

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.7.3535.0

Exchange 2013 Cu6 fails to install

$
0
0

When I attempt to install CU6 on Exchange 2013 I get this error message and cannot continue, occurs after reboot as well and trying to re-run setup.  Any ideas how to fix?

Thanks,

Setup Error 2nd time 5 of 9 after restart

Error:
The following error was generated when "$error.Clear(); 
          $name = [Microsoft.Exchange.Management.RecipientTasks.EnableMailbox]::DiscoveryMailboxUniqueName;
          $dispname = [Microsoft.Exchange.Management.RecipientTasks.EnableMailbox]::DiscoveryMailboxDisplayName;
          $dismbx = get-mailbox -Filter {name -eq $name} -IgnoreDefaultScope -resultSize 1;
          if( $dismbx -ne $null)
          {
          $srvname = $dismbx.ServerName;
          if( $dismbx.Database -ne $null -and $RoleFqdnOrName -like "$srvname.*" )
          {
          Write-ExchangeSetupLog -info "Setup DiscoverySearchMailbox Permission.";
          $mountedMdb = get-mailboxdatabase $dismbx.Database -status | where { $_.Mounted -eq $true };
          if( $mountedMdb -eq $null )
          {
          Write-ExchangeSetupLog -info "Mounting database before stamp DiscoverySearchMailbox Permission...";
          mount-database $dismbx.Database;
          }

          $mountedMdb = get-mailboxdatabase $dismbx.Database -status | where { $_.Mounted -eq $true };
          if( $mountedMdb -ne $null )
          {
          $dmRoleGroupGuid = [Microsoft.Exchange.Data.Directory.Management.RoleGroup]::DiscoveryManagement_InitInfo.WellKnownGuid;
          $dmRoleGroup = Get-RoleGroup -Identity $dmRoleGroupGuid -DomainController $RoleDomainController -ErrorAction:SilentlyContinue;
          if( $dmRoleGroup -ne $null )
          {
            trap [Exception]
            {
              Add-MailboxPermission $dismbx -User $dmRoleGroup.Name -AccessRights FullAccess -DomainController $RoleDomainController -ErrorAction SilentlyContinue;
              continue;
            }
            
            Add-MailboxPermission $dismbx -User $dmRoleGroup.Identity -AccessRights FullAccess -DomainController $RoleDomainController -WarningAction SilentlyContinue;
          }
          }
          }
          }
        " was run: "Microsoft.Exchange.Data.Common.LocalizedException: Couldn't resolve the user or group "Domain.local/Microsoft Exchange Security Groups/Discovery Management." If the user or group is a foreign forest principal, you must have either a two-way trust or an outgoing trust. ---> System.SystemException: The trust relationship between the primary domain and the trusted domain failed.

   at System.Security.Principal.NTAccount.TranslateToSids(IdentityReferenceCollection sourceAccounts, Boolean& someFailed)
   at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
   at System.Security.Principal.NTAccount.Translate(Type targetType)
   at Microsoft.Exchange.Configuration.Tasks.SecurityPrincipalIdParameter.GetUserSidAsSAMAccount(SecurityPrincipalIdParameter user, TaskErrorLoggingDelegate logError, TaskVerboseLoggingDelegate logVerbose)
   --- End of inner exception stack trace ---
   at Microsoft.Exchange.Configuration.Tasks.Task.WriteError(Exception exception, ErrorCategory category, Object target, Boolean reThrow, String helpUrl)
   at Microsoft.Exchange.Configuration.Tasks.Task.WriteError(Exception exception, ErrorCategory category, Object target)
   at Microsoft.Exchange.Configuration.Tasks.SecurityPrincipalIdParameter.GetUserSidAsSAMAccount(SecurityPrincipalIdParameter user, TaskErrorLoggingDelegate logError, TaskVerboseLoggingDelegate logVerbose)
   at Microsoft.Exchange.Configuration.Tasks.SecurityPrincipalIdParameter.GetSecurityPrincipal(IRecipientSession session, SecurityPrincipalIdParameter user, TaskErrorLoggingDelegate logError, TaskVerboseLoggingDelegate logVerbose)
   at Microsoft.Exchange.Management.RecipientTasks.SetMailboxPermissionTaskBase.InternalValidate()
   at Microsoft.Exchange.Management.RecipientTasks.AddMailboxPermission.InternalValidate()
   at Microsoft.Exchange.Configuration.Tasks.Task.<ProcessRecord>b__b()
   at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)".

How can update Exchange 2013 from RTM to CU23 ?

$
0
0

Dear all,

Now, my exchange 2013 is version RTM (first), I want update to version CU 23.

Can I update directly from version RTM to version CU23 ? or have to update via the intermediate version. Currently, MS does not allow downloads of versions older than version 21. Please help me update the version.

Thanks you so much.

Exchange Powershell Commands Missing from EMS

$
0
0

I just performed a fresh install of Exchange 2013 w/ SP1 on Windows 2012 Standard R2 which is also a domain controller in an organization that already has an Exchange 2010 server (on a separate server). When I launch the Exchange Management Shell and attempt to run "Get-ExchangeServer" I get the error "The term 'Get-ExchangeServer' is not recognized as the name of a cmdlet, function, script file, or operable program..." I see that \\HKLM\SOFTWARE\Microsoft\PowerShell\1\PowerShellSnapIns\Microsoft.Exchange.Management.PowerShell.SnapIn is loading the module name "D:\Program Files\Microsoft\Exchange\bin\Microsoft.Exchange.PowerShell.Configuration.dll" (which is the correct path to that file).

I've restarted the server twice and have the same issue. Also tried doing an unattended install of just the Managment Tools since using the setup GUI didn't give me the option of uninstalling and reinstalling the Management Tools since the checkbox is greyed out. I searched the ExchangeSetup log for errors and didn't find any.

How do I get the Exchange Management Shell to register the Exchange Powershell commands? Do I need to uninstall Exchange and Re-Install?

Exchange 2013 CU 23 failed

$
0
0

HI, I am upgrading my exchange 2013 to CU 23 and its getting failed with below error, i have also followed below mentioned link...

Error:

The following error was generated when "$error.Clear(); 
          $BEVdirIdentity = $RoleNetBIOSName + "\OAB (Exchange Back End)";
          $be = get-OabVirtualDirectory -ShowMailboxVirtualDirectories -Identity $BEVdirIdentity -DomainController $RoleDomainController -ErrorAction SilentlyContinue;
          if ($be -eq $null)
          {
          new-OabVirtualDirectory -Role Mailbox -WebSiteName "Exchange Back End" -DomainController $RoleDomainController;
          }
          set-OabVirtualdirectory -Identity $BEVdirIdentity -InternalUrl $null -ExternalUrl $null;
          . "$RoleInstallPath\Scripts\Update-AppPoolManagedFrameworkVersion.ps1" -AppPoolName:"MSExchangeOABAppPool" -Version:"v4.0";
        " was run: "System.Runtime.InteropServices.COMException (0x80070003): The system cannot find the path specified.

   at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
   at System.DirectoryServices.DirectoryEntry.Bind()
   at System.DirectoryServices.DirectoryEntry.get_AdsObject()
   at System.DirectoryServices.PropertyValueCollection.PopulateList()
   at System.DirectoryServices.PropertyValueCollection..ctor(DirectoryEntry entry, String propertyName)
   at System.DirectoryServices.PropertyCollection.get_Item(String propertyName)
   at Microsoft.Exchange.Management.Metabase.IisUtility.CheckForAuthenticationMethod(DirectoryEntry virtualDirectory, AuthenticationMethodFlags method, Boolean ignoreAnonymousOnCert)
   at Microsoft.Exchange.Management.SystemConfigurationTasks.SetOabVirtualDirectory.StampChangesOn(IConfigurable dataObject)
   at Microsoft.Exchange.Configuration.Tasks.SetObjectTaskBase`2.PrepareDataObject()
   at Microsoft.Exchange.Management.SystemConfigurationTasks.SetVirtualDirectory`1.PrepareDataObject()
   at Microsoft.Exchange.Management.SystemConfigurationTasks.SetExchangeVirtualDirectory`1.PrepareDataObject()
   at Microsoft.Exchange.Management.SystemConfigurationTasks.SetOabVirtualDirectory.PrepareDataObject()
   at Microsoft.Exchange.Configuration.Tasks.SetTaskBase`1.InternalValidate()
   at Microsoft.Exchange.Configuration.Tasks.SetSystemConfigurationObjectTask`3.InternalValidate()
   at Microsoft.Exchange.Management.SystemConfigurationTasks.SetExchangeVirtualDirectory`1.InternalValidate()
   at Microsoft.Exchange.Management.SystemConfigurationTasks.SetOabVirtualDirectory.InternalValidate()
   at Microsoft.Exchange.Configuration.Tasks.Task.<ProcessRecord>b__b()
   at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)
   at Microsoft.Exchange.Configuration.Tasks.Task.ProcessTaskStage(TaskStage taskStage, Action initFunc, Action mainFunc, Action completeFunc)
   at Microsoft.Exchange.Configuration.Tasks.Task.ProcessRecord()
   at System.Management.Automation.CommandProcessor.ProcessRecord()".

Note: 

I have already followed to recreate the OWA ECP Virtual directory and setting the permission, but still same issues

https://www.reddit.com/r/exchangeserver/comments/bu8c60/exchange_2016_complete_uninstall/

https://support.microsoft.com/en-us/help/2778897/cannot-access-outlook-on-the-web-or-the-eac-after-you-re-create-the-ow

Any help would be highlight appreciated

Regards

Muz



Steps to shut down all exchange servers in DAG and then bring them back without losing the quorum

$
0
0

We are going to migrate Data Center. Hence need to shut down all exchange servers in DAG.

What are the steps to perform to shut down 2 exchange server DAG and then bring them back without losing the quorum

Cannot Migrate Orphaned Exchange Mailboxes to Exchange 2013

$
0
0

Hi. Half way through migrating exchange 2010 to exchange 2013.

Have migrated all users mailboxes to new servers and are left with 3 mailboxes in Exchange 2010 EMC that show as "legacy Mailbox" but do not have an associated mail database.

On further inspection of the affected objects (which include the Domain administrator account) I can see in AD Users and computers Attribute editor that the user objects have the attribute msExchHomeSever referencing a long gone Exchange 5.5 Server (i.e. they were not correctly migrated to exchange 2010 from 5.5).

Can I get some advice on either adding a new database on the exchange 2010 server for each object and then migrating object to 2013 or how to remove the old exchange attributes in order that I can then create a mailbox for each and then migrate these over to 2013

Thanks

[Announcement] ‘Exchange Server 2013 - Setup, Deployment, Updates, and Migration’ forum will be migrating to a new home on Microsoft Q&A !

$
0
0

This “Exchange Server 2013 - Setup, Deployment, Updates, and Migration” Forum will be migrating to a new home on Microsoft Q&A!

We’ve listened to your feedback on how we can enhance the forum experience. Microsoft Q&A allows us to add new functionality and enables easier access to all the technical resources most useful to you, like Microsoft Docs and Microsoft Learn.  

Now until July 26, 2020:

From July 27, 2019 until August 10, 2020:

  • New posts – We invite you to post new questions in the “Exchange Server 2013 - Setup, Deployment, Updates, and Migration” forum’s new home on Microsoft Q&A. The current forum will not allow any new questions.
  • Existing posts – Interact here with existing content, answer questions, provide comments, etc.
    August 10, 2020 onward:

This forum will be closed to all new and existing posts and all interactions will be in Microsoft Q&A.

We are excited about moving to Microsoft Q&A and seeing you there. Learn More.


Configuring Exchange 2010 and Exchange 2013 virtual directories for coexistence.

$
0
0

I'm testing Exchange 2010/Exchange 2013 coexistence in a lab environment.  Below is the set-up:

Exchange 2010 has 2 Exchange servers.  Each server houses the CAS, mailbox and hub transport roles.  There is a DAG configured and they are installed on 2008R2 servers.

Exchange 2013 also has 2 servers.  Each server has the CAS and mailbox roles installed and there is also a DAG configured.  These Exchange servers are installed on 2012R2.

Since installing 2013, I'm struggling getting the virtual directories configured correctly for EWS, OWA etc.  Basically, I'm just looking for straight forward documentation on how the particular virtual directories should be configured for a 2010/2013 coexistence scenario.  Any help in pointing me in the right direction is appreciated.  Thanks.

Merging & Migrating Users From Site B to Site A

$
0
0
Hi,

I am looking for solution or document to fulfill our exchange email IDs merging. We have to different independent sites Site A & Site B. 
Site A scenario - In Site A we are having active directory domain abc.com & Exchange server 2013 with multiple Internal Relay domain. Internal Relay domains are abc.com, def.com,ghi.com & more. All domain systems & exchange users login to abc.com for access as no any subdomains to active directory (like user1@abc.com login using abc\user1, user2@def.com login using abc\user2, user3@ghi.com login using abc\user3 for accessing exchange emails).  
Site B scenario - mno.com as active directory domain & multiple email domains mno.com, pqr.com, stu.com & more. At site B all emails are hosted to Exchange Online cloud (Office 365 E1 or Office 365 E3).
There is no any communication or trust relationship between Site A & Site B.
Now we are merging Site A & Site B. In merging we are planning to create new exchange domain xyz.com. To xyz.com we want to migrate users from abc.com of Site A & mno.com of Site B. This will create new mailbox newuser1@xyz.com, newuser2@xyz.com. Here as per our requirement we want to migrate/ create new user to Exchange server of Site A. From Site B dont want to migrate or merge other domain users except mno.com.
We are thinking to create new mailboxes on Exchange server for Site A (abc.com) & Site B (mno.com) users as xyz.com. For Site A users dont think much challenge, but for Site B users looking for smooth migration. When we create new email IDs for Site B users as xyz.com we are not discontinuing mno.com email IDs. These users requires emails for both domains (xyz.com on Exchange 2013 & mno.com to cloud). If we create new mailbox for Site B users how they will login to Exchange email ID using xyz\newuser. This is required for both sites users (Site A & Site B) for xyz.com users. Also how user1@mno.com emails we can forward or redirect to newuser1@xyz.com of Site B user.

Here we want to clear that we are going to use Exchange 2013 on premise setup only.

Looking for proper document for merger.

Thanks,
Sachin  

remote migration to o365

$
0
0

dears, 

i configured my 2013 exchange for hybrid. however i recieved this warning in the end

the migration endpoint is not created. however mrs proxy is enabled tried to disable/enable more than once same issue

webmail and autodiscover are externally published

my certificate is valid and public

test using remote analyzer is successful

however, testing the remote migration move is failing with the call to ews.

if i try https://webmail.domain.com/ews/proxy.svc this is not working. the issue is here somewhere and i tried all the fixes with no luck. changed the authentication from iis and tested, same issue

your help is appreciated

Issue while trying to install Security update on Exchange 2013 CU 23

$
0
0

Hello Everyone.


I am trying security update KB4536988 in order to mitigate cve-2020-0688. We have total 10 servers out of which 4 are Exchange 2010 sp3 on which I was able to install RU 30. We also have 6 Exchange 2013 servers all with CU 23 installed 3 of which are CAS servers and rest 3 are Mailbox Servers. I was able to install this security update on other 5 servers but when I wanted to install this patch on the sixth server, I started facing the problem.

The installation exits abruptly few seconds after initiation prompting me to select msi file and gives me a message "The installed product does not match the installation source." In use source I can see it is looking for "Exchange 2013 CU 18 msi file". As it has CU23 installed, I tried to point it to CU 23 msi file but it ended up with another error "The file "C:\cu23\exchangeserver.msi" is not a valid installation package for the product microsoft Exchange Server. Try to find the installation package "exchangeserver.msi" in a folder from which you can install Microsoft Exchange Server" even though I was not prompted for anything as such on any of the other servers.

I also tried by copying Exchange 2013 CU18 files on this server but that did not help either.

If anyone has come accross this error. Please help me understand the underlying problem and fix it for once.


Basheer Syed


Failed logon attempts for Alternate Service Account

$
0
0

Hello team. I've got an interesting problem where I see event 4625 in the Security Log for my ASA. The failure reason says "Unknown user name or bad password"

Environment: Exchange 2013 CU 23, Windows Server 2012 R2, Forest + Domain functional level - 2012 R2, Load Balancers, Kerberos Authentication, No forest-to-forest trusts. Many child domains.

Issue: ASA account shows failed logon attempts in Event Viewer on the Exchange server, but not on the domain controller. It shows successful attempts on the DC, but failed attempts on the Exchange Server. NOTE: This is only happening at one site as far as I know. There are multiple ASAs. I think this is because they are using site-based namespaces and so they delegate site-specific SPNs to the site specific ASA.

Troubleshooting done so far: Re-rolled out ASA credentials to the site Exchange Client Access Servers. Interestingly enough, once this was done, the error being reported changed from “…using a bad password” to “…using an old password.” Found and removed stored credentials by running “rundll32 keymgr.dll,KRShowKeyMgr” as the local system account (done by using PSExec).

Other info: Looking at the event log, it logs event ID 4625 for this ASA with a logon type of 8, which is supposedly “NetworkCleartext,” which implies that it is having issues with IIS logins using Basic Authentication. The Authentication Package in the event log info mentions using “Negotiate” and the Logon Process is “Advapi,” so I don’t see how it would be an issue with trying to use Basic Authentication. The caller process seems to be the Exchange svchost process ($env:ExchangeInstallPath\Bin\Microsoft.Exchange.ServiceHost.exe)

Unable to install exchange server 2013 using pypsrp client remotely.

$
0
0

Hi Techies,

I am trying to install exchange 2013 on windows 2012 R2 using pypsrp client remotely but getting some role permission errors. Though I am able to install exchange 2013 using powershell on windows 2012 directly.

Command = Setup.exe /PrepareAD /OrganizationName:"Automation" /IAcceptExchangeServerLicenseTerms

Error:

Microsoft Exchange Server 2013 Cumulative Update 23 Unattended Setup

Copying Files...
File copy complete. Setup will now collect additional information needed for installation.

Performing Microsoft Exchange Server Prerequisite Check

 Prerequisite AnalysisSetup will prepare the organization for Exchange 2013 by using 'Setup /PrepareAD'. No Exchange 2007 server roles have been detected in this topology. After this operation, you will not be able to install any Exchange 2007 servers.
Setup will prepare the organization for Exchange 2013 by using 'Setup /PrepareAD'. No Exchange 2010 server roles have been detected in this topology. After this operation, you will not be able to install any Exchange 2010 servers.
 ... FAILED

The Exchange Server setup operation didn't complete.  More details can be found in ExchangeSetup.log located in the <SystemDrive>:\ExchangeSetupLogs folder.

Global updates need to be made to Active Directory, and this user account isn't a member of the 'Enterprise Admins' group.
The local domain needs to be updated. You must be a member of the 'Domain Admins' group and 'Organization Management' role group, or 'Enterprise Admins' group to continue.
Setup encountered a problem while validating the state of Active Directory: Active Directory operation failed on . The supplied credential for 'AUTOMATION\Administrator' is invalid.  See the Exchange setup log for more information on this error.
The forest functional level of the current Active Directory forest is not Windows Server 2003 native or later. To install Exchange Server 2013, the forest functional level must be at least Windows Server 2003 native.
Either Active Directory doesn't exist, or it can't be contacted.

Any help would be appreciable.

Thanks in advance.

Delete System and Arbitration Mailboxes after Office 365 Migration

$
0
0

Hey all,

We successfully completed our migration of all user mailboxes from our on-premise Exchange 2010 server to Office 365, and would now like to decommission the on-premise Exchange 2010 server. We have a separate server that we are leaving on-premises for management, which only has the EMC and no mailbox role. But the old mailbox server should be decommissioned now. It has been turned off for weeks with no impact. We have removed the hybrid configuration. MX records and autodiscover are all moved. DirSync is in place and working.

When attempting to uninstall Exchange 2010 from the old mailbox server, we are getting the error "This mailbox database contains one or more mailboxes, mailbox plans, archive mailboxes, or arbitration mailboxes." and cannot continue. The error suggests either moving the arbitration mailbox or disabling the mailbox if this is the last server in the organization. Since we don't have any other mailbox servers, there is nowhere to move it. And disabling the mailbox makes me nervous because though this is the last on-premise server, I don't want this to affect our cloud services by assuming we are decommissioning the organization. What do we do with the system and arbitration mailboxes?

We have read the article here but it does not fulfill our specific need: http://blogs.technet.com/b/exchange/archive/2012/12/05/decommissioning-your-exchange-2010-servers-in-a-hybrid-deployment.aspx

Also, and I'm not sure if this is a separate topic, how can we make sure that removing this on-premise mailbox server will not remove mail attributes from our user objects?

Thanks!

Arbitration mailboxes in a hybrid deployment

$
0
0

Hi,

We've migrated all user mailboxes to Office 365.  I would like to retain our on-premise Exchange 2013 server to manage active directory objects (as recommended).  However, I would like to delete the mailbox database in order to free disk space, and if possible remove the mailbox server role.  What should I do with the arbitration and Discover Search mailboxes?  Can they be migrated to Office 365?  I haven't been able to find instructions on how to do that.  I could move them to a new database on-premise, but would prefer to keep our local environment as lean as possible.

Thanks!

Dave

Migration Stuck at syncing when migrating to O365

$
0
0

I have started migrating a batch of single user(35GB) of size, after the migration reached 8 GB, i was stuck in Syncing state for almost 4 hours now.

Provide a solution.







Latest Images