Sponsored Content
Full Discussion: hard disk and san
Operating Systems AIX hard disk and san Post 302202396 by lo-lp-kl on Wednesday 4th of June 2008 06:19:45 PM
Old 06-04-2008
hard disk and san

Hello everyone

I got several aix boxes with aix 5.3

I got a ibm san ds4500

My question is

How can I do a match between my disks on aix and the san?

I try to do a match with the LUN but for example. In my san I got several 1 LUN and on one of my aix box I got this

If I type lscfg -vl hdiskXXXXXX

hdisk5 U787B.001.DNW7688-P1-T14-L8-L0 16 Bit LVD SCSI Disk Drive (73400 MB)
hdisk6 U787B.001.DNW7688-P1-C1-T1-W200200A0B8213919-L2000000000000 1742-900 (900) Disk Array Device
hdisk7 U787B.001.DNW7688-P1-C1-T1-W200200A0B8213919-L3000000000000 1742-900 (900) Disk Array Device
hdisk8 U787B.001.DNW7688-P1-C1-T1-W200200A0B8213919-L4000000000000 1742-900 (900) Disk Array Device

the first disk is a internal disk right.
the red color is the LUN if Im right.
but the others from hdisk6 to n are on the san

How can I match my disk on the san an on my aix box?

All this is because I get to increase a space on a disk on some servers.


Thanks for your replys
 

10 More Discussions You Might Find Interesting

1. AIX

AIX disk less with SAN

Hi All, I have mirrored SAN volume on my B80 rootvg. Can I just remove the mirror and "Remove a P V from a V G" and it will be a diskless AIX? Is that going to boot on SAN rootvg volume? Thanks in advance, itik (3 Replies)
Discussion started by: itik
3 Replies

2. Solaris

SAN disk failure

hi all, have a solaris 9 OS and a SAN disk which used to work fine is not getting picked up by my machine. can anyone point out things to check in order to troubleshoot this ?? thanks in advance. (3 Replies)
Discussion started by: cesarNZ
3 Replies

3. Filesystems, Disks and Memory

SAN Disk w/o Cluster

Scenario: I've got 2 M5000's connected to a 9985 SAN storage array. I have configured the SAN disks with stmsboot, format and newfs. I can access the same SAN space from both systems. I have created files from both systems on the SAN space. Question: Why can't I see the file created... (3 Replies)
Discussion started by: bluescreen
3 Replies

4. Solaris

SAN - Hard loop / prefered paths - help

Hi all Right, Im a little bit thick when it comes to SAN :-) IVe got a dual port qlc in a solaris 10 server. Its all connected and I can see a number of disks. The SAN guy here has asked me about preferred paths, i.e. as the dual ports are connected to two fabrics, etc device will have 4... (2 Replies)
Discussion started by: sbk1972
2 Replies

5. Solaris

SAN connection - configuring fibre attached hard drive

Hi All, I recently got a connection to the SAN through a fibre channel on my solaris box: #luxadm -e port /devices/pci@1d,700000/SUNW,qlc@1/fp@0,0:devctl CONNECTED #ls -l /dev/cfg lrwxrwxrwx 1 root root 48 Feb 23 12:31 c4 -> ../../devices/pci@1d,700000/SUNW,qlc@1/fp@0,0:fc I then... (2 Replies)
Discussion started by: dede
2 Replies

6. SCO

declare disk driver for IDE hard disk

hi I've a fresh installation of SCO 5.0.7 on the IDE hard disk. For SCSI hard disk I can declare, for example blc disk driver using: # mkdev hd 0 SCSI-0 0 blc 0but it works for IDE hard disk? (3 Replies)
Discussion started by: ccc
3 Replies

7. UNIX for Dummies Questions & Answers

SAN and Disk I/O ... do we care?

Hi all, My main function is as a DBA. Another person manages the server and the SAN. I just want to know if I should be worried about high disk I/O or is it irrelevant as the I/O "load balancing" will be "taken care" of by the SAN? For example, I have hdisk1-5 and I can see that there are... (2 Replies)
Discussion started by: newbie_01
2 Replies

8. Solaris

I/O Error on SAN Disk

Hi, I have a production solaris 10 SPARC system (portal). Yesterday legato/Networker gave an I/O Error on one of the files on its SAN mounted disk. I went to that particular file on the system, did an ls and it showed the file. However, ls -l did not work and it said IO error. ... (6 Replies)
Discussion started by: Mack1982
6 Replies

9. Linux

C++ Code to Access Linux Hard Disk Sectors (with a LoopBack Virtual Hard Disk)

Hi all, I'm kind of new to programming in Linux & c/c++. I'm currently writing a FileManager using Ubuntu Linux(10.10) for Learning Purposes. I've got started on this project by creating a loopback device to be used as my virtual hard disk. After creating the loop back hard disk and mounting it... (23 Replies)
Discussion started by: shen747
23 Replies

10. UNIX for Beginners Questions & Answers

SAN vs. Local disk.

I am in the market looking to purchase a new E950 server and I am trying to decide between using local SSD drives or SSD based SAN. The application that will be running on this server is read-intensive so I am looking for the most optimal configuration to support this application. There are no... (2 Replies)
Discussion started by: ikx
2 Replies
getsockcreatecon(3)					     SELinux API documentation					       getsockcreatecon(3)

NAME
getsockcreatecon, setsockcreatecon - get or set the SELinux security context used for creating a new labeled sockets. SYNOPSIS
#include <selinux/selinux.h> int getsockcreatecon(security_context_t *con); int setsockcreatecon(security_context_t context); DESCRIPTION
getsockcreatecon retrieves the context used for creating a new labeled network socket. This returned context should be freed with freecon if non-NULL. getsockcreatecon sets *con to NULL if no sockcreate context has been explicitly set by the program (i.e. using the default policy behavior). setsockcreatecon sets the context used for creating a new labeled network sockets NULL can be passed to setsockcreatecon to reset to the default policy behavior. The sockcreate context is automatically reset after the next execve, so a program doesn't need to explicitly san- itize it upon startup. setsockcreatecon can be applied prior to library functions that internally perform an file creation, in order to set an file context on the objects. Note: Signal handlers that perform an setsockcreate must take care to save, reset, and restore the sockcreate context to avoid unexpected behavior. RETURN VALUE
On error -1 is returned. On success 0 is returned. SEE ALSO
selinux(8), freecon(3), getcon(3) dwalsh@redhat.com from russell@coker.com.au 24 September 2008 getsockcreatecon(3)
All times are GMT -4. The time now is 10:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy