Saturday, May 17, 2014

Monitoring Tools from hardware manufacturer

HP
1. HP Systems Insight Manager (HP SIM)
http://www8.hp.com/us/en/products/server-software/product-detail.html?oid=489496#!tab=features

2. HP Insight Remote Support (Insight RS)
http://www8.hp.com/us/en/business-services/it-services.html?compURI=1078312

IBM
1. IBM System Director
http://www-03.ibm.com/systems/director/editions/index.html

DELL
1. DELL OpenManage Essentials
http://www.dell.com/learn/us/en/04/solutions/dcsm-dell-consoles

Reference: Dell OpenManage Systems Management Tools
http://en.community.dell.com/techcenter/systems-management/w/wiki/1757.dell-openmanage-systems-management-tools.aspx Print Friendly and PDF
Share/Bookmark

Management Tools from hardware manufacturer

HP

1. HP Service Pack for ProLiant (SPP)
http://www8.hp.com/us/en/products/server-software/product-detail.html?oid=5104018#!tab=features

2. HP ProLiant Support pack
http://h20566.www2.hp.com/portal/site/hpsc/public/psi/swdHome/?lang=en&cc=us&sp4ts.oid=3716247

IBM

1. IBM Director
http://www-03.ibm.com/systems/director/

2. IBM ToolsCenter
http://www-947.ibm.com/support/entry/portal/docdisplay?lndocid=tool-center


DELL

1. Dell OpenManage Systems Management Tools
http://en.community.dell.com/techcenter/systems-management/w/wiki/1757.dell-openmanage-systems-management-tools.aspx
http://www.dell.com/learn/us/en/555/enterprise-systems-management Print Friendly and PDF
Share/Bookmark

Monday, May 5, 2014

Windows Phone 7.8/8.0 using Two-Step Verification to login LinkedIn

LinkedIn WP mobile applications will send you a verification code after your first attempt to sign in the first time after enabling two-step verification.
   
    1. Check your SMS on your mobile device after your first attempt to sign in, to get the verification code.
    2. Then enter your password followed by the verification code (with no space in between) in the password field of the sign in page in order to sign into the application. (e.g. your password is 1234 and the SMS code is 8765, then you need to enter 12348765 to your password field of the apps)

Reference:
https://help.linkedin.com/app/answers/detail/a_id/559 Print Friendly and PDF
Share/Bookmark

Apply SCOM 2007 SP1 Rollup hotfix and CU 1 steps

SCOM 2007 SP1 Rollup Hotfix and CU1 upgrade:

Install KB971541 (Description of System Center Operations Manager 2007 Service Pack 1 Update)
1. Run Server Update
2. Check Application Log:
“1022 - Update KB971541 successfully”

“11728 - Configuration Completed”

“1022 - Update KB97154-ENU Successfully”

“11728 - Configuration completed successfully”

3. Run Reporting Server Update
4. Check Application Log:
“1022 - Update “KB971541 successfully”
“11728 - Reporting Server - configuration”
5. Go to “Add/Remove Program” check -> System Center Operating Manager 2007 version “6.0.6278.0”
6. check -> System Center Operating Manager 2007 Reporting Server version “6.0.6278.0”

Install KB2028594 (Cumulative Update 1 for System Center Operations Manager 2007 SP1)
1. Run Server Update
2. Check Application log:
“1022 - Update KB2028594 successfully”
“11728 - Configuration Completed”
3. Check ALL event log to see if there are any errors
4. Go to SCOM DB by using SQL Server Management Studio
5. Select DB “Operation Manager DB”(OpsDB)
6. Copy the “CU1_Database.sql” to a new query and run “Parse” to check the query is there are any syntax error
7. If no error occurs, execute the SQL script.
8. Select DB “Operation Manager DW” (Warehouse)
9. Copy the “CU1_DataWarehouse.sql” to a new query and run “Parse” to check the query is there are any syntax error
10. If no error occurs, execute the SQL script.
11. Import the MP update
12. Go to SCOM console -> Administration Tab -> Management Packs - Click “Import Management Packs” -> Select “Micros.SystemCent.DataWarehouse” (You will see a “6.0.6278.112” - “Microsoft Generic Report Library”
13. Click “Import”
14. Go to “Administration” -> Device Management -> Pending Management” -> Approve Agent Update

Remark: The SCOM admin console also need to apply the above update for remote administration (On client side)

Reference:
The SP1 Cumulative Update 1 (CU1) for OpsMgr 2007 SP1 has shipped

http://blogs.technet.com/b/kevinholman/archive/2010/07/31/opsmgr-2007-sp1-cu1-hotfix-ships-and-my-experience-installing-it.aspx


http://wenku.baidu.com/view/ef488dfbf705cc1755270998.html


http://blogs.technet.com/b/kevinholman/archive/2009/11/09/opsmgr-2007-sp1-cumulative-rollup-hotfix-has-shipped.aspx

Get it from the download Center:

http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=62b6c324-38b9-47df-bd89-a62908f0b642

The KB article describing the fixes, changes, and instructions:

http://support.microsoft.com/?kbid=2028594

Print Friendly and PDF
Share/Bookmark

Sunday, May 4, 2014

Skype made public a download location for the MSI

Print Friendly and PDF
Share/Bookmark

WSUS 3.0 Post SP2 update (Support Windows Server 2012 update)

An update for Windows Server Update Services 3.0 SP2 is available (KB2828185)
http://support.microsoft.com/kb/2828185 
An update for Windows Server Update Services 3.0 Service Pack 2 is available (KB2734608)
http://support.microsoft.com/kb/2734608 
An update for Windows Server Update Services 3.0 Service Pack 2 is available (KB2720211)
http://support.microsoft.com/kb/2720211 Print Friendly and PDF
Share/Bookmark

Wednesday, February 5, 2014

NTP client setup on RHEL 6

Run the following command and edit the ntp.conf for setup NTP client on RHEL 6
 
1. RUN ntpdate to check the connectivity between the client and NTP server
 
ntpdate –q “server IP”
 
2. Backup the ntp.conf file
 
cp /etc/ntp.conf /etc/ntp.conf.org
 
3. Edit the ntp.conf
 
vi /etc/ntp.conf
 
Make sure the following line exists:
server ntp.server.com
 
4. Restart the ntpd and
 
/etc/init.d/ntpd stop
/etc/init.d/ntpd start
chkconfig ntpd on
 
5.  Check the ntp client is it running well (wait for 15 mins before check)
 
tail /var/log/messages
netstat –tlunp | grep ntp
ntpstat
ntpstat –c peers
ntpq –p
 
Print Friendly and PDF
Share/Bookmark