<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SAM problems in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612184#M645705</link>
    <description>Have you tried creating it manually&lt;BR /&gt;Try&lt;BR /&gt;Creating Volume Group and Logical Volumes&lt;BR /&gt;&lt;BR /&gt;pvcreate /dev/rdsk/cXtXd0 - For each disk&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vgname&lt;BR /&gt;mknod /dev/vgname/group c 64 0x0#0000 &lt;BR /&gt;&lt;BR /&gt;vgcreate /dev/vgname /dev/dsk/cXtXd0 &lt;BR /&gt;&lt;BR /&gt;To create new logical volumes&lt;BR /&gt;&lt;BR /&gt;lvcreate -n lv## /dev/vgname - Create a zero sized logical volume, &lt;BR /&gt;&lt;BR /&gt;lvextend -l &amp;lt;# 4MB extents&amp;gt; /dev/vgname/lv## /dev/dsk/cXtXd0 - Make lv's size you want&lt;BR /&gt;&lt;BR /&gt;To create and mount a new filesystem (make sure to get blksize from DBA)&lt;BR /&gt;&lt;BR /&gt;mkdir /mntpoint&lt;BR /&gt;&lt;BR /&gt;newfs -F vxfs -b &lt;BLKSIZE&gt; /dev/vgname/lvol_&lt;BR /&gt;&lt;BR /&gt;mount /dev/vgname/lvol_ /mntpoint&lt;BR /&gt;&lt;BR /&gt;Add entry to /etc/fstab&lt;BR /&gt;&lt;BR /&gt;/dev/vgname/lvol_ /mntpoint vxfs rw,suid,delaylog,detainlog 0 2&lt;BR /&gt;&lt;BR /&gt;&lt;/BLKSIZE&gt;</description>
    <pubDate>Mon, 12 Nov 2001 18:04:58 GMT</pubDate>
    <dc:creator>nancy rippey</dc:creator>
    <dc:date>2001-11-12T18:04:58Z</dc:date>
    <item>
      <title>SAM problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612182#M645703</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;I'm trying to create a new volume group using SAM. I started SAM fine, and kicked off the create volume group. &lt;BR /&gt;&lt;BR /&gt;I looked in /var/sam/log/samlog and found nothing special. Except for one vgimport -P command which exited with code 1. &lt;BR /&gt;&lt;BR /&gt;The disc I'm trying to create volume on is on a NIKE20 disk array.&lt;BR /&gt;&lt;BR /&gt;I installed patch PHCO_23876 on my 11.00 O/S.&lt;BR /&gt;Any clues as to what is going on?&lt;BR /&gt;&lt;BR /&gt;Thank!&lt;BR /&gt;Josee...</description>
      <pubDate>Mon, 12 Nov 2001 17:58:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612182#M645703</guid>
      <dc:creator>Josee Bourget-Thuma</dc:creator>
      <dc:date>2001-11-12T17:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAM problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612183#M645704</link>
      <description>watch out for your lun 0.&lt;BR /&gt;&lt;BR /&gt;do a diskinfo /dev/dsk/cXtYd0&lt;BR /&gt;after you get the device file for the lun 0 of the nike 20.&lt;BR /&gt;&lt;BR /&gt;You will probably see the lun0 twice. once on tX and tY corresponding to the SPA and SPB.&lt;BR /&gt;&lt;BR /&gt;The nike has a curious note about autotrespass.&lt;BR /&gt;&lt;BR /&gt;You could try it from command line also.. to get a more verbose output.&lt;BR /&gt;See: here for more on the nike:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x417edfe5920fd5118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x417edfe5920fd5118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Mon, 12 Nov 2001 18:03:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612183#M645704</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2001-11-12T18:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAM problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612184#M645705</link>
      <description>Have you tried creating it manually&lt;BR /&gt;Try&lt;BR /&gt;Creating Volume Group and Logical Volumes&lt;BR /&gt;&lt;BR /&gt;pvcreate /dev/rdsk/cXtXd0 - For each disk&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vgname&lt;BR /&gt;mknod /dev/vgname/group c 64 0x0#0000 &lt;BR /&gt;&lt;BR /&gt;vgcreate /dev/vgname /dev/dsk/cXtXd0 &lt;BR /&gt;&lt;BR /&gt;To create new logical volumes&lt;BR /&gt;&lt;BR /&gt;lvcreate -n lv## /dev/vgname - Create a zero sized logical volume, &lt;BR /&gt;&lt;BR /&gt;lvextend -l &amp;lt;# 4MB extents&amp;gt; /dev/vgname/lv## /dev/dsk/cXtXd0 - Make lv's size you want&lt;BR /&gt;&lt;BR /&gt;To create and mount a new filesystem (make sure to get blksize from DBA)&lt;BR /&gt;&lt;BR /&gt;mkdir /mntpoint&lt;BR /&gt;&lt;BR /&gt;newfs -F vxfs -b &lt;BLKSIZE&gt; /dev/vgname/lvol_&lt;BR /&gt;&lt;BR /&gt;mount /dev/vgname/lvol_ /mntpoint&lt;BR /&gt;&lt;BR /&gt;Add entry to /etc/fstab&lt;BR /&gt;&lt;BR /&gt;/dev/vgname/lvol_ /mntpoint vxfs rw,suid,delaylog,detainlog 0 2&lt;BR /&gt;&lt;BR /&gt;&lt;/BLKSIZE&gt;</description>
      <pubDate>Mon, 12 Nov 2001 18:04:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612184#M645705</guid>
      <dc:creator>nancy rippey</dc:creator>
      <dc:date>2001-11-12T18:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAM problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612185#M645706</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt; To identify the problem, go in the manual route.&lt;BR /&gt;&lt;BR /&gt;ioscan -nkCdisk&lt;BR /&gt;  and note the disks which you want to be in the new VG&lt;BR /&gt;&lt;BR /&gt;If there are any pvlinks (two pv paths to the same disk), make a note of that too.&lt;BR /&gt;&lt;BR /&gt;pvcreate &lt;PVPATH&gt;&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vgname&lt;BR /&gt;mknod /dev/vgname/group c 64 0xx0000&lt;BR /&gt;&lt;BR /&gt;vgcreate &lt;OPTIONS&gt; /dev/vgname &lt;PVNAMES&gt;&lt;BR /&gt;&lt;BR /&gt;{options can be pv limit, extent size etc. or you can not specify anything).&lt;BR /&gt;&lt;BR /&gt;See how this works.  I suspect the problem is more to&lt;BR /&gt;with the recognition of disks.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-raj&lt;/PVNAMES&gt;&lt;/OPTIONS&gt;&lt;/PVPATH&gt;</description>
      <pubDate>Mon, 12 Nov 2001 18:14:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612185#M645706</guid>
      <dc:creator>Roger Baptiste</dc:creator>
      <dc:date>2001-11-12T18:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: SAM problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612186#M645707</link>
      <description>Hi Josee,&lt;BR /&gt;&lt;BR /&gt;Try to create the vg manually,&lt;BR /&gt;&lt;BR /&gt;Do a ioscan -fnC disk to check whether the disk is sensed properly with the device as claimed. &lt;BR /&gt;&lt;BR /&gt;ioscan -fnC disk&lt;BR /&gt;&lt;BR /&gt;Now proceed to creating a VG,&lt;BR /&gt;&lt;BR /&gt;pvcreate -f /dev/rdsk/cxtydz&lt;BR /&gt;mkdir /dev/vg_name&lt;BR /&gt;mknod /dev/vg_name/group c 64 0x0n0000&lt;BR /&gt;(n=1,2,3,.... and is unique&lt;BR /&gt;do a ll /dev/*/group to check the n is unique)&lt;BR /&gt;vgcreate /dev/vg_name /dev/dsk/cxtydz&lt;BR /&gt;Do a pvcreate and vgextend for any other disk you want to add to this vg. Now do a lvcreate to create a new lv on this disk,&lt;BR /&gt;&lt;BR /&gt;lvcreate -L lv_size_MB -n lv_name /dev/vg_name&lt;BR /&gt;&lt;BR /&gt;Now create a filesystem on this lv,&lt;BR /&gt;&lt;BR /&gt;newfs -F vxfs -o largefiles /dev/dsk/rlv_name&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Nov 2001 22:59:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612186#M645707</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-11-12T22:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAM problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612187#M645708</link>
      <description>Thank you all for your input, although all of your suggestions are very valid, turns out that one of my NIKE arrays is causing problems and not allowing for any administrative changes to any disks. I had to turn it off and work on the system that way.&lt;BR /&gt;&lt;BR /&gt;I haven't not yet isolated the issue due to lack of time but am lucky that the array in not critical for me at this time.&lt;BR /&gt;&lt;BR /&gt;Something for me to play with on rainy days.&lt;BR /&gt;&lt;BR /&gt;Thanks again!&lt;BR /&gt;Josee...</description>
      <pubDate>Mon, 19 Nov 2001 23:24:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sam-problems/m-p/2612187#M645708</guid>
      <dc:creator>Josee Bourget-Thuma</dc:creator>
      <dc:date>2001-11-19T23:24:08Z</dc:date>
    </item>
  </channel>
</rss>

