Sunday, August 19, 2012

Fatal error during installation Error code 1603 on Exchange Server 2007

When I'm installing Exchange Server 2007 with service pack 3 on Windows Server 2008 R2 SP1, I got the following error:

Symptom
Error:
Installing product C:\Ex2007\exchangeserver.msi failed. Fatal error during installation. Error code is 1603. Last error reported by the MSI package is "The file 'ul_ATL80.dll.97F81AF1_0E47_DC99_FF1F_C8B3B9A1118E' cannot be installed because the file cannot be found in cabinet file 'ATLplcy.cab'.This could indicate a network error, an error reading from the CD-ROM, or a problem with this package.'.

Fatal error during installation


Cause
I copied the Exchange 2007 SP3 Update Rollup 8 into the Exchange installation update folder.

Resolution
Move out the Exchange 2007 SP3 Update Rollup 8 from the Exchange installation update folder. Run the Exchange 2007 setup again.


This posting is provided “AS IS” with no warranties, and confers no rights!

Friday, August 10, 2012

Add storage in SQL Server cluster

Assuming that I have to add new storage in my SQL Server 2008 cluster.

Prerequisites
  • Make sure the shared disks are ready for the SQL Server 2008 cluster

Lab environment
  • DB02 is member of the SQL Server 2008 cluster with 1 shared disk.

Goal
Add 2 shared disk in SQL Server 2008 cluster

1. On the DB02, log in as Domain Administrator.
2. Launch "Failover Cluster Management".
3. Expand "[Cluster name] > Storage".


4. Right-click "Storage", select "Add a disk".


5. Select the disks and then click "OK".


6. Expand "Services and Applications > SP10SQLGroup01".

Remark: "SP10SQLGroup01" is a group name for SQL Server 2008 cluster in my test environment.


7. Right-click "SP10SQLGroup01", select "Add storage".
8. Select the disks.


9. Click "OK".


10. Right-click "SQL Server", select "Properties".
11. Select "Dependencies" tab.


12. Click "Insert".
13. Under "Resouerce", select "Cluster Disk 4".


14. Click "Insert".
15. Under "Resouerce", select "Cluster Disk 5".


16. Click "OK".
17. Close "Failover Cluster Management".

As a result, the SQL server 2008 cluster can use the other shared disk.

This posting is provided “AS IS” with no warranties, and confers no rights!

Sunday, August 5, 2012

Event ID 11316, MsiInstaller

Symptom
When the SQL Server 2008 is installing on the server, it shows the following error.

The following error has occurred:
A network error occurred while attempting to read from the file path\SQLD6B0.tmp.msi


Then I checked the event log. I found a error event Event ID 11316, MsiInstaller.

Product: Microsoft SQL Server 2008 Native Client -- Error 1316. A network error occurred while attempting to read from the file path\SQLD6B0.tmp.msi


Remark: When you get the error, the file name ," SQLD6B0 .tmp.msi", may be different.

Cause
Because I had performed "Install software prerequisites" of "SharePoint Server 2010", the "Microsoft SQL Server 2008 Native Client" was installed on the server.

Solution
1. Uninstall "Microsoft SQL Server 2008 Native Client".


2. Perform Microsoft SQL Server 2008 again.

This posting is provided “AS IS” with no warranties, and confers no rights!