Saturday, June 21, 2014

WDMyCloud problem with mounting(WD didn't accept login and password) network drives on Windows 7

Recently found that my NAS storage doesn't want to accept my credentials.
I checked my NAS dashboard and it's working. I can log in and use it through WD application .

Wednesday, April 30, 2014

IBM WebSphere MQ v 6.0 corrupted queues

On one qmgr I found 10 corrupted queues/
I don't know why but standard way of deleting and recreating object didn't helped.
Unfortunately that's was not the only problem. 
I decided to create dump of qmgr objects using saveqmgr utility but I got this error since my SYSTEM.DEFAULT.MODEL.QUEUE were in the list of corrupted objects :
SAVEQMGR V6.1.4.0
(mqutils.c) MQOPEN failed for SYSTEM.DEFAULT.MODEL.QUEUE, CC=2 RC=2101 

To identify which queues are corrupted you need simply to use:
echo "dis q(*)" | runmqsc QMGRNAME

At the end what I done:
1. crtmqm test
2. cp /var/mqm/qmgrs/test/queues/YOUDAMAGED QUEUES /var/mqm/qmgrs/YOURQMGR/queues/
3. strmqm -c QMGRNAME with correpted queues
4. you will see that all corrupted objects were successfully recreated .

Thursday, April 24, 2014

IBM announce new version of WebSphere MQ v 8.0

Official url:
http://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/7/897/ENUS214-177/index.html&lang=en&request_locale=en

Here are enhancements list:

Friday, April 4, 2014

IBM WebSphere Application Server ND installation using Installation Manager

Download IIM(IBM installation manager):
command line:

./installc -c

GUI problem when you can't add second and third disk:
Check you repository.config file and add there 2 extra line with disk 2 and 3:

cat ~/Desktop/was/repository.config
LayoutPolicy=Composite
LayoutPolicyVersion=0.0.0.1

repository.url.disk1=./disk1
repository.url.disk2=./disk2
repository.url.disk3=./disk3

Thursday, March 27, 2014

WAS how to check list of available SDK's and change them

Get list of available SDK's for application server:

managesdk.bat -listAvailable -verbose
managesdk.sh -listAvailable -verbose

Enable commands to use SDK 7 as the command default SDK:

         managesdk.bat -setCommandDefault-sdkName 1.7_32
         managesdk.sh -setCommandDefault-sdkName 1.7_32

Enable new profiles to use SDK 7

        managesdk.bat -setNewProfileDefault-sdkName 1.7_32
        managesdk.sh -setNewProfileDefault-sdkName 1.7_32

Tuesday, February 4, 2014

WMB how to check that broker was properly started on linux

Check /var/adm/user.log if there present such records:


BIP2001
BIP2208
BIP2254

example:
cat /var/adm/user.log | grep BIP2001

Wednesday, January 8, 2014

ubuntu 13.10 virtualbox autostart

1. create folder for config:
mkdir /etc/vbox
2. create configuration file:
touch autostart.cfg

3. Copy inside autostart.cfg below data. Where XXX=your user name :