TSM VMMAXP and MAXNUMMP

9/01/2015 09:01:34 ANS0266I The dsmEndTxn vote is ABORT, so check the reason field.
09/01/2015 09:01:34 ANS0326E This node has exceeded its maximum number of mount points.
09/01/2015 09:01:39 ANS1004W Node has exceeded max tape mounts allowed. Operation for ‘xxxx’ will be tried again later.

On opt file i find:

VMMAXP=4

on definition of NODE on TSM server i found

MAXNUMMP=1

this is incorrect.
I need change the value for MAXNUMMP:

  MAXNUMMP >= VMMAXP

TSM VMMAXP and MAXNUMMP

Command line restore DB Mysql

I need replace Database on my installation MYSQL.

– Connect to DB

mysql -u <username> -p

– Show DB

SHOW DATABASES;

+——————–+
| Database           |
+——————–+
| information_schema |
| mysql              |
| website            |
| wp-test            |
| wpdb               |
+——————–+
5 rows in set (0.00 sec)

– Drop Database

 DROP DATABASE wpdb;
Query OK, 18 rows affected (0.01 sec)

-Recreate DB

 create database wpdb;
Query OK, 1 row affected (0.00 sec)

– Import Database

mysql -u user -p wpdb < wp_xxxx2014.dmp

Command line restore DB Mysql

VMWARE VSPHERE 6

In questi giorni VMWARE  ha presentato la nuova piattaforma di virtualizzazione VSPHERE 6 e  alcune piattaforme per gestione e implementazione dell’hybrid cloud.

Come si può immaginare oltre che, come avviene sempre con le nuove versioni, VMWARE con VSPHERE 6 ha spostato l’asticella verso l’alto relativamente alle risorse HW gestite:

Mentre  altri  aspetti interessanti sono il Fault tolerance su cui ha ampliato il supporto fino a 4 virtual cpu, il vmotion che adesso puo’ essere fatto tra virtual center e anche “long distance” 

VMWARE VSPHERE 6

ANR3619W The user limit for open files is below the recommended minimum value of 4096

OS : Linux Redhat
Software : TSM 6.3.3.100

Error: ANR3619W The user limit for open files is below the recommended minimum value of 4096

 [root@omer ~]# ps -ef | grep dsmserv
tsminst1 12003     1 20 Oct25 ?        3-11:59:24 /opt/tivoli/tsm/server/bin/dsmserv -u tsminst1 -i /home/tsminst1/tsminst1 -q
root     29357 27628  0 18:03 pts/1    00:00:00 grep dsmserv

[root@omer ~]# cat /proc/12003/limits
Limit                     Soft Limit           Hard Limit           Units
Max cpu time              unlimited            unlimited            seconds
Max file size             unlimited            unlimited            bytes
Max data size             unlimited            unlimited            bytes
Max stack size            10485760             unlimited            bytes
Max core file size        unlimited            unlimited            bytes
Max resident set          unlimited            unlimited            bytes
Max processes             212992               212992               processes
Max open files            1024                 1024                 files
Max locked memory         32768                32768                bytes
Max address space         unlimited            unlimited            bytes
Max file locks            unlimited            unlimited            locks
Max pending signals       212992               212992               signals
Max msgqueue size         819200               819200               bytes
Max nice priority         0                    0
Max realtime priority     0                    0

Stop TSM SERVER
Set new limit for open file

[root@omer tsmdb]# ulimit -n 65535

Start TSM SERVER

[root@omer tsmdb]# ps -ef | grep dsmserv
tsminst1 29562     1  0 18:08 pts/1    00:00:00 /opt/tivoli/tsm/server/bin/dsmserv -u tsminst1 -i /home/tsminst1/tsminst1 -q
root     29810 27628  0 18:08 pts/1    00:00:00 grep dsmserv
[root@omer tsmdb]# cat /proc/29562/limits
Limit                     Soft Limit           Hard Limit           Units
Max cpu time              unlimited            unlimited            seconds
Max file size             unlimited            unlimited            bytes
Max data size             unlimited            unlimited            bytes
Max stack size            10485760             unlimited            bytes
Max core file size        unlimited            unlimited            bytes
Max resident set          unlimited            unlimited            bytes
Max processes             212992               212992               processes
Max open files            65535                65535                files
Max locked memory         32768                32768                bytes
Max address space         unlimited            unlimited            bytes
Max file locks            unlimited            unlimited            locks
Max pending signals       212992               212992               signals
Max msgqueue size         819200               819200               bytes
Max nice priority         0                    0
Max realtime priority     0                    0

ANR3619W The user limit for open files is below the recommended minimum value of 4096

rename volume group AIX

I need to rename appoggiovg volumegroup

root@paul:/#lsvg
hpsanvg
rootvg
oraexpvg
dati2vg
dati3vg
dati4vg
dati5vg
appoggiovg

Appoggiovg is create over hdisk7

I need:

varyoffvg appoggiovg
exportvg appoggiovg

root@paul:/#lspv
hdisk2          00c655c40fab3811                    rootvg          active
hdisk0          00c7662d78e1b21f                    hpsanvg         active
hdisk1          00c655c4d544cca6                    oraexpvg        active
hdisk3          00c655c444918136                    dati2vg         active
hdisk4          00c655c4db40e342                    dati3vg         active
hdisk5          00c655c428a07b90                    dati4vg         active
hdisk6          00c655c428a0de52                    dati5vg         active
hdisk7          00c655c4ae67c723                    None

root@paul:/#importvg -y dati6vg hdisk7

root@paul:/#lspv
hdisk2          00c655c40fab3811                    rootvg          active
hdisk0          00c7662d78e1b21f                    hpsanvg         active
hdisk1          00c655c4d544cca6                    oraexpvg        active
hdisk3          00c655c444918136                    dati2vg         active
hdisk4          00c655c4db40e342                    dati3vg         active
hdisk5          00c655c428a07b90                    dati4vg         active
hdisk6          00c655c428a0de52                    dati5vg         active
hdisk7          00c655c4ae67c723                    dati6vg         active

rename volume group AIX