Setting up SharePoint for the Enterprise

I currently have the task of setting up SharePoint Portal for my company. But here is the kicker, they have users in almost every country in the world, so how to structure the deployment. I knew roughly how to do this, but a post by Jose Barreto entitled “The Legend of the Single, Multi-Terabyte, Replicating […]

Installing MOSS 2007 from scratch

Naked ALM Consulting Logo

I am having occasion to rebuild my Microsoft Office SharePoint Server (MOSS) development server. In fact, I killed it by adding a Business Data Catalog (BDC) that pointed to a table that had just over a million rows… Now, maybe this would not have caused a problem if I was not using a single server […]

Kerberos and SharePoint 2007

If you want to use Kerberos authentication and not NTLM with SharePoint then there are some extra tasks that you need to get someone with Domain Admin privileges to perform. For EVERY dns / port combination a SPN needs to be added to Active Directory to tell it that it  is allowed to use Kerberos […]

Connecting to SQL Server using DNS update

Naked ALM Consulting Logo

OK, I now have the additional SPN’s added to AD that I mentioned in my post and a listing returns: C:>setspn [servername]Registered ServicePrincipalNames for CN=[servername],OU=Member Servers,DC=[domain],DC=biz:    MSSQLSvc/spdata.ep-dev.[domain].biz:1422    MSSQLSvc/spdata.ep-dev.[domain].biz:1433    MSSQLSvc/[servername].[domain].biz:1422    MSSQLSvc/[servername].[domain].biz:1433    SMTPSVC/[servername]    SMTPSVC/[servername].[domain].biz    HOST/[servername].[domain]onet.biz    HOST/[servername] So when I now try to log into SQL server using spdata.ep-dev.[domain].biz/EPDev and Windows Authentication, all is well and I can […]

Connecting to SQL Server using DNS

Naked ALM Consulting Logo

If you want to connect to a SQL server using DNS you will need to have both the “SQL Server Browser” service and an SPN setup in your domain to allow authentication. This allows the DNS name that you have setup to authenticate against the SQL Server using integrated authentication. setspn MSSQLSvc/spdata.ep-dev.[domain].biz:1422 [servername]setspn MSSQLSvc/spdata.ep-dev.[domain].biz:1433 [servername] […]

The SharePoint Plan: Database move headache mitigation

SharePoint requires SQL Server. That’s a given, but what if you want to move the SQL Server databases to another server? TFS is easy enough to move between servers, but SharePoint is NOT. The only answer I can find is to do a full backup and restore from SharePoint, which takes time and effort. The […]

New Event Handlers

Naked ALM Consulting Logo

I have added an extra event handler to the TFS Event Handler (Prototype), and this makes two. Assigned To Handler The Assigned to handler send a users an email when a work item is assigned to them unless they did the assigning themselves. Reassigned Handler The reassigned handler send an email to a user to […]