New installation of the Tridion 2011 SP CMS server gives an error

We have a Trimion 2011 SP1 environment working with one CMS server and one CDS server. Today we installed a new CMS server and pointed it to an existing SQL Server database. We used the same MTSUser, the same database credentials. The installation went smoothly, but when we try to access the CMS server, we get 9 errors, as shown below.

1) The remote server responded with an error: (404) Not found.

at System.Net.HttpWebRequest.GetResponse() at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout) 

2) Failed to load the list of languages.

  at System.Net.HttpWebRequest.GetResponse() at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout) 

3) Error loading locale list.

  at System.Net.HttpWebRequest.GetResponse() at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout) 

How to troubleshoot
We can access the SQL Server database using ODBC.

+6
source share
3 answers

Use a tool like Fiddler to look at the HTTP traffic when loading the Tridion GUI and find requests that do not work.

Here you can use WCFTestClient to get more detailed information about errors and available bindings.

My guess is IIS setup.

+4
source

I would suggest you think a little. Because errors are more specific to the WCF service. so set up the trace and see what happens with the web service. This may be due to a non-HTTP service endpoint binding. This could also be due to the HTTP request server being interrupted, and possibly due to a service outage. In the end, I again recommend that you look at the server logs for more details. I or someone else can help you if you can share magazines here.

+3
source

Will the Tcm service node (Windows service) start?

0
source

All Articles