Max LUN reached ? (Securepath)


 
Thread Tools Search this Thread
Operating Systems Solaris Max LUN reached ? (Securepath)
# 1  
Old 10-24-2006
Max LUN reached ? (Securepath)

Hi all,

I can not present a new Lun with my EVA 5000 storage and Securepath ...

I have already 16 Lun's presented to the same server (Solaris 8), but can not add the 17th :-(

Do you know if we have a limitation with Solaris or Securepath ? (Config file to update, software limits ...)

Thanks a lot,

Fabien
# 2  
Old 10-24-2006
i think it's the limit in the /kernel/drv/sd.conf file.... never tried that with secure-path, but i know that problem with MPxIO.. solaris just look for 16 (0-15) luns on a path per default, just add new entries in that file:

name="sd" class="scsi"
target=14 lun=0;

name="sd" class="scsi"
target=15 lun=0;
###
# new for a test
###
name="sd" class="scsi"
target=16 lun=0;

name="sd" class="scsi"
target=17 lun=0;

#
##EOF##

you will have to reboot to activate the new configuration for the sd kernel module.

regards pressy
# 3  
Old 10-24-2006
hmmm.... there was also another thing about the sd.conf file and the lun depth... are you talking about more lun depth like c0t0d0 c0t0d1 c0t0d2 or really new targets like c0t0 c0t1 c0t2? ... if you are talking about the lun depth i think you have to edit the file that way:

find your controller, on my example it's controller 4 (c4t0d*) and add the following:

name="sd" class="scsi"
target=4 lun=0;
name="sd" class="scsi"
target=4 lun=1;
name="sd" class="scsi"
target=4 lun=2;

and so on....

i also can remember now a way to do that without rebooting that should work:
Code:
root@mp-wst01 # update_drv -f sd
Cannot unload module: sd
Will be unloaded upon reboot.
Forcing update of sd.conf.
root@mp-wst01 #

regards pressy
# 4  
Old 10-24-2006
Thanks ...

Its related with Lun depth (C8t0d0 to C8t0d15).

I have to look in parallel if securepath is managing more than 16 Luns ...

I'll try your solution on a test server 1st :-)
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Merge lines until known character reached

Hello all, Hopefully this should be an easy one for you. I have a file that contains a list of parameters and their values. Some of these values are 2D arrays split over several lines, I need to move these so the parameter name and it's full value is all on one line. The parameters are... (5 Replies)
Discussion started by: RobynP
5 Replies

2. UNIX for Dummies Questions & Answers

How to confirm that I've reached the nproc limit?

Hi, I am getting the error su: cannot set user id: Resource temporarily unavailable. In limits.conf, it shows soft nproc 2047 for this user. ps H -u | wc -l shows 508 processes only. Linux flavour is Red Hat Enterprise Linux Server release 5.10 (Tikanga) Any advice will be much... (1 Reply)
Discussion started by: newbie_01
1 Replies

3. Shell Programming and Scripting

Put the appropriate value if reached the condition

i have a file as below: ? ? ? ? 20060101 DHR ? ? ? ? 20060101 1316 30.90 KOM ? ? ? ? 20060101 1317 7.20 DHR ? ? ? Pg ? 20060101 1316 27.32 DHR ? ? ? Sg ? 20060101 1316 30.52 ? ? ? ? 20060101 MRD ? ? ? ? 20060101 1355 46.12 SHB ? ? ? ? 20060101 1355 40.90 HSH ? ? ? Pn ?... (2 Replies)
Discussion started by: oreka18
2 Replies

4. UNIX for Advanced & Expert Users

NTP server can not be reached

hello Guys, I have an NTP problem on my SUN N240 server. External NTP server is being used for this box and when i run 'ntpq -p' i get connection refused message; Code: ntpq -p ntpq: read: Connection refused Here this is the ntp.conf file: Code: cat /etc/ntp.conf # BEGIN NTP... (1 Reply)
Discussion started by: dyavuzy1
1 Replies

5. UNIX for Dummies Questions & Answers

stunnell log file has reached its limit

Please help! I am really new to Linux, and my colleague who usually deals with these things isnt here to help me out. We are running Scalix mail services on CentOS 6.0. Email users with IMAP folders are getting an error message stating the server cannot be reached, however POP3 mail users are... (13 Replies)
Discussion started by: beckyboo
13 Replies

6. Red Hat

Apache - max clients reached issue

Hi, I have a web application (using apache) and for the past 2 months I am getting the below error in my production environment. I want to re-produce the same issue in my non-production environment, could you please let me what all are the parameters I have to modify in order to do that. Also I... (10 Replies)
Discussion started by: senor.ram
10 Replies

7. UNIX for Advanced & Expert Users

AT can't be created for you. Max size of the queue is reached..

I have a listener (a batch job written in shell script) that calls a perl file (say apple.pl). The listener runs at scheduled timing (say 11 pm to 6 am)&. Owner of the listener is a common id. My question is.. Once the listener starts running (here, Im NOT attempting to generate any reports... (1 Reply)
Discussion started by: vavjeeva
1 Replies

8. Solaris

I have LUN ID, how to find disk relate to that LUN ID?

I have a list of LUN ID, my task is to find if disk has been added or not. How do I do that? I have been searching the forum and not able to find answer. thanks (4 Replies)
Discussion started by: uuontario
4 Replies

9. Shell Programming and Scripting

How to grab the value of field before the line reached

Hi. I have a qury whihc I hope someone could clarify. I have a file:- Num Measure 108 0.05 12 0.45 13 0.2 19 0.5 I wanted to grep the value of 19 from Column Num which will then take the minimum value of measure (not including 19's measure value).... (3 Replies)
Discussion started by: ahjiefreak
3 Replies
Login or Register to Ask a Question