servername, port
However once you get past this step the installer will fail with an error about an invalid loopback address and then it references your server name and the port. A quick way around this is to create an ODBC data source for your SQL server on the SharePoint server:
- Open the Data Sources (ODBC) Administrator console (Administrative Tools)
- Create a new SQL System DSN
- Specify a name, description and your SQL server (Do not specify a port)
- In Client Configuration uncheck Dynamically determine port
- Enter your SQL port in the space provided
- Test your connection (Note you need to be logged in with an account the has the appropriate permission on the SQL server)
Now when you run the SharePoint installer you don’t have to specify the port for SQL which will allow setup to complete successfully. The next problem that I ran into is once SharePoint is installed it creates an additional database called SharePoint_AdminContent_GUID. With this naming convention it made it difficult for our DBA team to manage and support it. Think about if you have multiple SharePoint farms that you have to manage the databases for and they all have databases called SharePoint_AdminContent_GUID it could get confusing pretty quick. We decided to change the name of this database to something a little more descriptive. Due to the fact that this is the database Central Administration web application there are few extra steps that you must complete.
- Have a DBA backup the database and restore it with a more appropriate name
- From your SharePoint server open the SharePoint Central Administration console and navigate to Application Management \ Content Databases and find the one you are looking for. In this case it’s the Central Administration web app.
- Select the database and then check “Remove content database” (Located at the bottom of the page once you have opened up the content database)
- Since this is the content database for the Central Administration site you can no longer use the GUI to manage the settings
- Open up a command prompt, change the directory to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN and then run the following command
At this point you should be able to go back into the GUI and manage your SharePoint farm.