filesystems inside disk group
hi all, I am trying to find out if a particular filesystem which belongs to a disk group can be taken offline and mounted on another host, we have a disk group which has file systems for 5 databases, i am checking if a couple of filesystems belonging to a particular DB can be taken offline and mounted on another hosts, keeping the rest of the 4 db's filesystem intact . Thank you Jonu JoySolved982Views0likes3CommentsThe vxdclid daemon core dumps on AIX 7.1 hosts with Storage Foundation 4.0 MP4
Hi, please send me solutions on the following topics. The vxdclid daemon core dumps on AIX hosts with Storage Foundation 4.0 MP4 This is the output: LABEL: CORE_DUMP IDENTIFIER: A924A5FC Date/Time: Tue Feb 5 06:38:24 USAST 2013 Sequence Number: 14290551 Machine Id: 00C8468E4C00 Node Id: edmerpr2 Class: S Type: PERM WPAR: Global Resource Name: SYSPROC Description SOFTWARE PROGRAM ABNORMALLY TERMINATED Probable Causes SOFTWARE PROGRAM User Causes USER GENERATED SIGNAL Recommended Actions CORRECT THEN RETRY Failure Causes SOFTWARE PROGRAM Recommended Actions RERUN THE APPLICATION PROGRAM IF PROBLEM PERSISTS THEN DO THE FOLLOWING CONTACT APPROPRIATE SERVICE REPRESENTATIVE Detail Data SIGNAL NUMBER 11 USER'S PROCESS ID: 34080660 FILE SYSTEM SERIAL NUMBER 4 INODE NUMBER 501817 CORE FILE NAME /var/opt/VRTSsfmh/core PROGRAM NAME vxdclid LABEL: CORE_DUMP IDENTIFIER: A924A5FC Date/Time: Tue Feb 5 06:38:24 USAST 2013 Sequence Number: 14290551 Machine Id: 00C8468E4C00 Node Id: edmerpr2 Class: S Type: PERM WPAR: Global Resource Name: SYSPROC Description SOFTWARE PROGRAM ABNORMALLY TERMINATED Probable Causes SOFTWARE PROGRAM User Causes USER GENERATED SIGNAL Recommended Actions CORRECT THEN RETRY Failure Causes SOFTWARE PROGRAM Recommended Actions RERUN THE APPLICATION PROGRAM IF PROBLEM PERSISTS THEN DO THE FOLLOWING CONTACT APPROPRIATE SERVICE REPRESENTATIVE Detail Data SIGNAL NUMBER 11 USER'S PROCESS ID: 34080660 FILE SYSTEM SERIAL NUMBER 4 INODE NUMBER 501817 CORE FILE NAME /var/opt/VRTSsfmh/core PROGRAM NAME vxdclidSolved851Views0likes1Commentvxstat: time since last reset?
Hello, I wonder if there is a way to determine the time since the last reset ('vxstat -r') of vxstat counters for some or all VxVM objects. Or asked differently: When vxstat gives me data like [root:/]# vxstat OPERATIONS BLOCKS AVG TIME(ms) TYP NAME READ WRITE READ WRITE READ WRITE vol export 3423282 38233203 159756362 400100767 5.6 25.4 vol rootvol 8105850 30419736 73677793 65981077 2.8 36.8 vol swapvol 2636206 340972 42179296 55502576 7.4 5597.9 vol var 5190036 12921735 116372454 126819449 5.9 14.1 how can I be sure these counts accumulated since reboot of the server? Without the knowledge if/when the counters were reset the last time, the output of vxstat is of limited use. Instead, I have to reset the counters myself, thereby losing potentially valuable data that has accumulated over a long time. So is there a way to determine the time of the last reset? This example is from a very old VxVM 4.1 on Solaris 10, but the vxstat man page from 5.1 has no info about the time of the last reset either. KR JochenSolved700Views0likes1CommentVeritas operations manager for SF Unix
hi team, i created a virtual Solaris 10 machine on Vmware and i have installed Storage Foundation Standard in it. I need a GUI interface to manage and administer SF. I downloaded VEA and VOM (add ons) both. i installed the VEA package VRTSobgui and it has been successfully installed. i actvated and started the vxsvccrtl and the status shown ONLINE. however wen i run opt/VRTsob/bin/vea nothing happens. I then tried installing the VOM but the files i got for VOM were in the form of .sfa, Ineed to know where do i put these files so that i can run the VOM with an interface. thank you.Solved1.3KViews0likes6CommentsWatching Oracle Disk Manager work with Solaris dtrace
Hi, I had to get ODM to work in a Solaris 10 container (aka zone) and wanted to make sure that Oracle did indeed use ODM and direct I/O to the Oracle files. I could not find documentation for the Veritas dtrace probes but after some trying and guessing the following dtrace script turned out to be helpful. #!/usr/sbin/dtrace -s #pragma D option quiet fbt:odm:odm_vx_*io:entry /!self->trace/ { self->trace = 1; } fbt:vxfs:vx_dio_rdwri:entry, fbt:vxfs:vx_dio_check:entry /self->trace/ { printf("%s %s\n", probefunc, stringof(((struct vnode *) ((struct vx_inode*) arg0)->i_vnode)->v_path)); } fbt:odm:odm_vx_*io:return /self->trace/ { self->trace = 0; } The vx_dio_check probe seems to trigger whenever IO takes places via ODM. When the IO is not cached, i.e.via Cached Oracle Disk Manager, the vx_dio_rdwri probe also triggers. Example: vx_dio_check /zones/ora/root/orcldata/bodm1/control02.ctl vx_dio_rdwri /zones/ora/root/orcldata/bodm1/control02.ctl vx_dio_check /zones/ora/root/orcldata/bodm1/control01.ctl vx_dio_rdwri /zones/ora/root/orcldata/bodm1/control01.ctl vx_dio_check /zones/ora/root/orcldata/bodm1/system01.dbf vx_dio_rdwri /zones/ora/root/orcldata/bodm1/system01.dbf vx_dio_check /zones/ora/root/orcldata/bodm1/example01.dbf vx_dio_check /zones/ora/root/orcldata/bodm1/example01.dbf vx_dio_check /zones/ora/root/orcldata/bodm1/control01.ctl vx_dio_rdwri /zones/ora/root/orcldata/bodm1/control01.ctl I had caching enabled for example01.dbf via CODM so we don't see the vx_dio_rdwri probe for the exampl01.dbf, only the vx_dio_check probe. This is for Storage Foundation 5.1SP1 Solaris x64. Perhaps someone finds this useful. Generally my impression is that ODM is a very useful performance feature that most people have licensed but which nevertheless is seldom used.404Views0likes0CommentsApache monitor in Linux RHEL 6.2 with SF 5.1SP1
Upgrading Linux RHEL 6.1 - using sfha-rhel6_x86_64-5.1SP1PR2RP2 on a VCS cluster, has a problem with the Apache monitor script, I checked in the bundled agents guide for a debug mode. The Apache mount point is a shared resource and started by VCS after the CreateMntPt has verified the mount point does not exist. The default value for the CreateMntPt is 0 but it seems that under VCS , the file system should not exist, therfore it should be set to 2. The engine_A.log is reporting on both nodes about the filesystem does not exist, how do I change the monitor script to stop checking for the file system on both nodes at the same time?622Views0likes3CommentsDisks name not match within two node cluster
Hi, I have two node cluster and today I ran Virtual Fire Drill in order to see if everything is OK. I've noticed I'm getting errors such as: * udid.vfd: Failed to get disk information for disk san_vc0_13. * udid.vfd: UDIDS for device <san_vc_8 do not match on cluster nodes. [...] Anyway, I've connected to both servers, san_vc0_13 doesn't exist on the second node. About the other errors the disks name is not match. Reviewing this case, I've seen we have 2 more temporary disks that the first node has, that has nothing to do with the cluster (this situation is OK). the problem is, that these 2 disks, took the number 2 and 3 (san_vc0_2/3), so now the disks names are mismatch and it seems I'm missing a disk on the second node. the cluster diskgroups are viewed by both nodes and they are OK (even within the cluster), the only problem is the names are not match and VFP is warning about it. Anyway to change the disk's names and make it permanent (by UDID or so) ? Thanks,Solved2.9KViews1like10Commentsvxassist -b queuing behaviour
Hello, I'm going to migrate data using the well documented volume mirroring procedure, adding a target mirror plex then removing the source plex. Since there is 300 volumes i will use a script to create and sync the mirrors. I use the following command : vxassist -b -g [dg] mirror [vol] [TARGET DISK LIST] layout=nostripe I have a text file with 300 of these commands, which i launch using nohup sh mirror.txt & I noticed that not all the lines are processed instantly : a bunch of something like 20 vxassit mirror commands are processed, and can be seen in vxtask list, but then the shell waits, as if one of these commands was not returning. When one of the running vxassist completes, the next one from mirror.txt is processed and so on. My questions are : - How is this queuing controlled, ie how many vxassist mirror can run in parallel ? - Is this the correct way to do this ? Is there a risk that one of the "not returning" vxassist mirror will eventualy time out thus "skipping" to the next one and leaving me with a missing mirror ? Thanks if you can advice or point me to relevant documentation ! DaveSolved747Views1like5CommentsVeritas clean meanings of fsdb command ?
Hello everyone. My customer have solaris 9. The system installed products to SF4.1MP2RP4 , sun-cluster 3.1 and MPxI/O. I saw the dmpevent.log. ======================================================================================================= I/O analysis done on Path c1t6006016093E0100083D5448ADF5DDD11d0s2 belonging to Dmpnode EMC_CLARiiON0_14 I/O error occured on Path c1t6006016093E0100083D5448ADF5DDD11d0s2 belonging to Dmpnode EMC_CLARiiON0_14 I/O error occured on Path c1t6006016093E0100083D5448ADF5DDD11d0s2 belonging to Dmpnode EMC_CLARiiON0_14 I/O analysis done on Path c1t6006016093E0100083D5448ADF5DDD11d0s2 belonging to Dmpnode EMC_CLARiiON0_14 . . . ======================================================================================================= however, I not saw other error messages. such as, system-log and dmesg. EMC_CLARiiON0_14 is a /dev/vx/rdsk/apdata-dg/vol01. I had to check file-system. Here's the info: #echo '8192B.p S' | fsdb -F vxfs /dev/vx/rdsk/apdata-dg/vol01 | grep flags fsdb: bad super-block or metadata - setting block size to 1024 - setting ino per extent to 32 flags 0 mod 0 clean 0 ============================================================== What's "clean 0" ? Do I need the fsck command ? Other file-systems are "clean 3c".Solved1.1KViews0likes2CommentsVXVM needs license ... please help
Dear all, i have installed VXVM 5.0 basic on my Virtual machine (Solaris 5.10) when i tried to mount the volume, i have received this error "UX:vxfs mount: ERROR: V-3-25255: mount: You don't have a license to run this program" is there any way out? i was looking in a forum, which described to check pkginfo -l VRTSvxfs | grep STATUS complete install ls -lad /devices/pseudo/vxportal it does not find these directories.... then i performed devfsadm -v -i vxportal it failed with exit status 1Solved1.9KViews0likes7Comments