I ran into couple issues when upgrading my TSM server from 6.3.1 to 6.3.4. But I have successfully fixed them and upgraded my TSM. Error 1: Deployment Engine failed to initialize Cause: this was caused by that I forget to run the ‘de_chghostname’ command after I renamed the TSM server name. Fix: Run de_chghostname.cmd comand. … Continue reading TSM Upgrade Failure Troubleshooting
Upgrade TSM from 6.3.1 to 6.4.1
It is a little bit confusing about the TSM version convention, as different components may be at different versions. In my case, I am going to upgrade my TSM to 6.4.1. The server version is actually 6.3.4 instead of 6.4.1. Tivoli® Storage Manager Version 6.4.1 and Tivoli Storage Manager Extended Edition Version 6.4.1 are made … Continue reading Upgrade TSM from 6.3.1 to 6.4.1
TSM Operation Center
IBM has released the TSM operation center which is the new administration GUI for TSM. I think my next project will be upgrading my TSM 6.3 to 6.4, and install the operation center, as OC only supports TSM 6.3.4 and later version. Two nice tutorial videos that I found on Youtube, enjoy! Tivoli Storage Manager … Continue reading TSM Operation Center
Create_User.bat
@ECHO OFF REM Get username and password from user's input set var1=%1 set var2=%2 REM Don't allow user to change password NET USER %var1% %var2% /add /expires:never /passwordchg:no REM User's password never expire wmic useraccount where "Name='%var1%'" set Passwordexpires=false REM Add user to remote desktop group NET localgroup "Remote Desktop Users" %var1% /add REM Create … Continue reading Create_User.bat
How to backup SQL logs and truncate them in BE 2012
This article is quoted from http://www.symantec.com/connect/articles/how-backup-sql-logs-and-truncate-them-be-2012If your SQL database is set to Full Recovery Mode, it maintains transaction logs. If these logs are not truncated from time to time, they will grow and eventually fill up your disk. BE will warn you that you need to truncate your log.V-79-40960-37914 - Database database_name is configured to … Continue reading How to backup SQL logs and truncate them in BE 2012