OEL 5 SAN connection w/ ports

We have an HP EVA SAN which we have allocated a disk group, then the LUN, then the Virtual Disk and the ports as we should, this being done w/ the HP installer on site. We present it to OEL and it shows each of the four ports as 'sda<1-4>'
For testing I created directories 'tmp-sda<1-4>'
then issue
mount /dev/sda<1-4> /tmp-sda<1-4>
for each one
all are mounted w/o an issue
I create a file
touch x
x is seen on all the mount points
the issue is when I alter the contents of x on say mount point 'tmp-sda1', save it, and open the x file from mount point 'tmp-sda3' the change is not there. We were told by the HP person that the driver we installed, that being for RHEL5, should make all the ports seen as one port and this should not happen.
Has anyone run into this? Or can someone shed some light on how SAN ports are presented and handled by OEL5, I can't find any docs on this
Some output of the above is below
Thanks,
Steve
[root@rac01 tmp-sda1]# uname -rm
2.6.18-128.el5 x86_64
[root@rac01 tmp-sda1]# cd /dev
[root@rac01 dev]# ls sd*
sda sda1 sdb sdb1 sdc sdc1 sdd sdd1
[root@rac01 dev]# cd ~
[root@rac01 ~]# ls tmp*
tmp-sda1:
lost+found x x~
tmp-sdb1:
lost+found x x~
tmp-sdc1:
lost+found x x~
tmp-sdd1:
lost+found x x~
[root@rac01 ~]# df -h tmp-sda1
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 9.9G 151M 9.2G 2% /root/tmp-sda1

Ah! the joy of playing with multiple paths to your storage :-)
The reason you are not seeing your updates, is because you are not writing directly to your disks with linux, but doing things against the buffercache of linux. And linux considers the multiple paths to the storage as independed disks, so it doesn't know that when you are updating something in the first path, it should be the same for the other path's.
You need to setup a meta-device which does multipathing, and leave the direct disks alone.
Here's a guide how to set it up (it says dell, but configuring the device mapper is the same): http://www.dell.com/downloads/global/power/ps3q06-20060189-Michael.pdf

Similar Messages

  • Database account locked as it tries to connect different ports for 16 times

    I need a help in answering one of the issue encountered last week.
    I have created a database link and tried to access the information from a table using the program written in another language. The password provided was incorrect for that user while creating database link. So we expected that,while retrieving the data, Database connection has to be errored out as password provided is incorrrect.
    But unfortunately, user account was locked out. When i checked with DBAs they mentioned that it tries to connect 16 ports with in a min of time.we were shocked as it STOPS another scheduled jobs with that user. and affects production badly.
    As per the program, it has to connect only one time and yesterday we tried to execute the program in DBAs observation and it errored out as expected. Didn't tried for multiple ports.
    Now the question is, WHY the database connection established 16 times last week and caused user account locked. DBAs are unable to answer it. Any EXPERTs opinion on this would greatly appreciated.
    I have verified managing ports in oracle documentation, it was mentioned that if one port is busy it will try to connect to another port in the range of ports mentioned during the installtion. DBAs verified ports related file and it was blank. and they are not agreeing with this reason. Please HELP me in finding the correct REASON for this.
    is it a NETWORK issue or issue with DATABASE SERVER only?
    Thanks
    SSP
    Edited by: 960738 on Sep 22, 2012 9:13 PM

    960738 wrote:
    I need a help in answering one of the issue encountered last week.
    I have created a database link and tried to access the information from a table using the program written in another language. The password provided was incorrect for that user while creating database link. So we expected that,while retrieving the data, Database connection has to be errored out as password provided is incorrrect.
    But unfortunately, user account was locked out. When i checked with DBAs they mentioned that it tries to connect 16 ports with in a min of time.we were shocked as it STOPS another scheduled jobs with that user. and affects production badly.
    As per the program, it has to connect only one time and yesterday we tried to execute the program in DBAs observation and it errored out as expected. Didn't tried for multiple ports.
    Now the question is, WHY the database connection established 16 times last week and caused user account locked. DBAs are unable to answer it. Any EXPERTs opinion on this would greatly appreciated.
    I have verified managing ports in oracle documentation, it was mentioned that if one port is busy it will try to connect to another port in the range of ports mentioned during the installtion. DBAs verified ports related file and it was blank. and they are not agreeing with this reason. Please HELP me in finding the correct REASON for this.
    is it a NETWORK issue or issue with DATABASE SERVER only?
    Thanks
    SSP
    Edited by: 960738 on Sep 22, 2012 9:13 PMDBLINK is 100% oblivious to the fact any port exists.
    DBLINK only contains username, password & TNS Alias.
    can you post actual SQL & results?

  • Problem with socket programming-connecting to port 13

    Hi, I am learning JAVA, and we are on the subject of sockets. I am trying to make this program to connect to port 13, get the time, and print it to the console. This is my code:
    import java.io.*;
    import java.net.*;
    public class temp {
         public static final int PORT = 13;
         public static void main(String[] args) {
              Socket s = null;
              String line = null;
              try {
                   s = new Socket("localhost", PORT);
                   DataInputStream sin = new DataInputStream(s.getInputStream());
                   line = sin.readLine();
                   if (line != null) System.out.println(line);
              catch (IOException e) {System.err.println("!" + e);}
              finally {
                   try { if (s != null) s.close(); }
                   catch (IOException e2) {}
    And this is the output:
    !java.net.ConnectException: Connection refused: connect
    What should I do. I found that the problem is with the server I am connecting to and I tried connecting to dif. computers, or to stuff online, and nothing works.
    Any suggestions for me?
    Forgot: I tried this on both a windows XP and Vista
    Edited by: xpatrickerx on Mar 23, 2008 8:12 PM
    Tampering with it, I find that the error occurs on the following line:
    s = new Socket("localhost", PORT);
    Edited by: xpatrickerx on Mar 23, 2008 8:13 PM

    So I finally found how to use printStackTrace and here is what it gives when:
    1) I use my own computer:
    java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at temp.main(temp.java:11)
    2) I use something else:
    java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at temp.main(temp.java:11)
    Again, thanks

  • Error Message "The Remote device or resourse wont accept connection, not set up to accept connection from port https"

    I get this error message when trying to open and log into an online casino "The Remote device or resource wont accept connection, not set up to accept connection from port https".
    I am on a desktop computer my connection to the net is with a USB Virgin Mobile hotspot device.
    I also have issues with some downloads not installing right for instance SKYPE wont work. If the problems are related I don't know
    Thanks

    Starting in Firefox 14, Firefox will guess an address and place it in the address bar (AutoFill feature). If you have ever connected to the site using a secure (HTTPS) connection, then Firefox will try to connect security to the address suggested by the AutoFill feature. To work around this you can:
    * Edit the address to force Firefox to interpret your entry literally. For example, if there is a trailing / you can remove it.
    * Turn off the URL bar AutoFill feature and just use the AutoSuggest drop-down.
    * Clear Firefox's memory of the site so it doesn't default to a secure connection (however, this also removes any bookmarks you have to pages on the site).
    To disable the in-address-bar autofill without losing the suggestions that appear below the bar:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''autofill''' and pause while the list is filtered
    (3) Double-click '''browser.urlbar.autoFill''' to toggle it from true to false. You're done with about:config and you can close this tab.
    "Forget about this site" will clear cache, history, bookmarks, and permissions for the site, and probably any saved certificate. There are two ways to get to this:
    * History > Show All History, right-click an entry for the site > "Forget about this site"
    * Type or paste about:permissions in the address bar and press Enter, then select the site from the list on the left side, and click the "Forget about this site" button on the right side
    Depending on the size of your history and cache, this may lock Firefox up for a minute or two while everything is cleansed.

  • Can I use straight cable to connect trunk ports between 2 switches?

    Hi,
    Am I able to use straight instead of cross cable to connect trunk ports between 2 switches??
    thanks!

    Hi Devang,
    When a 10/100 Fast Ethernet interface is enabled, one end of the link must perform media dependent interface (MDI) crossover (MDIX), so that the transmitter on one end of the data link is connected to the receiver on the other end of the data link (a crossover cable is typically used).
    The Auto-MDIX feature eliminates the need for crossover cabling by performing an internal crossover when a straight cable is detected during the auto-negotiation phase.
    HTH, if yes please rate the post.
    Ankur

  • How do I set up Mozilla to accept connections on port "The World Wide Web service (HTTP)"?

    When attempting to embed a video in PowerPoint 2013, the message "Sorry we are having some temporary service issues" appears.
    In researching the problem at Microsoft. com, the following message was received: Mozilla is not set up to accept connections on port "The World Wide Web service (HTTP)."

    Hmm... PowerPoint should use Windows to connect to the internet and not Firefox.
    Which method are you using?
    (1) Insert > Video > Online Video
    Apparently there was an update this month that enables this, as described in this support post (see top Answer just after the question): [http://answers.microsoft.com/en-us/office/forum/office_2013_release-powerpoint/embedding-online-you-tube-video-in-powerpoint-2013/0bc00dde-420c-4c6a-bd47-3fb105ce40fc Embedding online you tube video in powerpoint 2013 - Microsoft Community]
    Here's how it should work after the update: [http://office.microsoft.com/en-us/powerpoint-help/insert-or-link-to-a-video-on-youtube-HA104192855.aspx Insert or link to a video on YouTube - PowerPoint]
    (2) Developer > More Controls > Shockwave Flash Object
    As documented on other sites, such as: https://www2.palomar.edu/pages/atrc/2013/09/17/how-to-embed-youtube-video-in-powerpoint-2013/

  • Server refused to allow connection on port 993..why?

    I've never used Mail before but tonight I've been trying to get it to work to no avail. I used a site from my university telling how to set it up so I can get my university email through Mac OSX Mail..it's a bit dated but I figure the info is mostly the same: http://www.cs.unm.edu/computerfacilities_and_support/email/mac_os_xmail/
    Anyway it says to click the USE SSL box and port 993. Then when I try to get the mail it says the mail.unm.edu has refused connection to port 993.
    What do I do now? Thanks!!

    Oh i see. Okay please try signing out from the safari yahoo. Then go to safari and clear the history.  Double tap on your device to also clear the mail app. Then go back to General settings, then Mail, Contacts, Calendar settings, try to add the yahoo account again. Put in your email and password, hit done, and then tell me what happens after that. Do not proceed please until you tell me what you see. Thanks

  • Vision - is it essential to connect to port 1 of t...

    I have extended my home network by adding an apple extreme.
    Right now it is made complex by needing to keep the vision connection direct to the HH3 to connect to port 1, as the manual says use that port for vision connection, presumably because of the QoS requirements.  That means I need to use the HH3 as the router and DHCP server, and the Apple Extreme in bridge mode.
    It would be far easier if I could turn off the DHCP routing function on the HH3, and connect the Vision box to the Extreme and use the DHCP functionality there.  Is this possible?  Any downside?

    TimSmedley wrote:
    Hi
    When BTV first came out the guidance of the day said to use port one as it would be given priority over the other ports - thus reducing buffering and complaints where line sppeds were low/marginal.
    I think its one of those rules that they dropped some time ago as download speeds improved but lives on in the wider rumour world!
    Tim
    Yeap, what he said.
    Basically you can do what you want. I don't even use the Home Hub, I think it's a rubbish device overall - but I have somewhat higher standards with network equipment.
    I have the Vision box on a switch, and I use my own router. No problems whatsoever.
    But as mentioned previously, the HH3 *might* be adding some QoS to the whole set-up for connections with limited bandwidth - although I believe the Vision QoS (basically, prioritising Vision traffic over other traffic on the broadband line) is done on the BT side now.

  • RE:connection to port 6241 failed during java upgrade

    Hi all,
    We are performing Java Upgrade and we are stuck in the intial stage stage. The problem is connection to port 6241 failed .
    We have retained the default port.
    Thanks and Regards,
    sowmya

    Hi Regelio
    As Van mentioned above,the issue may caused by the TAO NT Naming service.
    Please check the status of TAO NT Naming service/License Manager
    when the issue happens.And in case the error is really caused by
    those services,please try to re-install the whole server tools.
    Also,if the issue still persists,as another workaround we suggest you to use a simple
    batch script to test the Status of the TAO NT naming service,
    and restart it when the services  was stopped.
    Such a script can be launched with windows scheduled every several
    minutes.
    @echo off
    net start    find "TAO NT Naming Service"
    IF %ERRORLEVEL% EQU 0 (
      echo Ok - "TAO NT Naming Service" is running
    ) ELSE (
    echo Error - "TAO NT Naming Service" is not running
    net stop "TAO NT Naming Service"
    net stop "SAP Business One License Manager 2005"
    net start "TAO NT Naming Service"
    net start "SAP Business One License Manager 2005"
    Regards,
    Syn Qin
    SAP Business One Forums Team

  • Cannot open socket connection on port 443

    Hi!
    Our server is running on Port 443.
    When I try to Connect from the BlackBerry 9300, an exception is thrown "cannot open socket connection on port 443"
    Can any one please help me in finding the solution to enable the port 443.
    Thank you in advance!
    Regards,
    Vinay

    I assume that you have verified that you can login to the ftp site using a regular ftp client (e.g. Fetch) on the Mac?

  • Connecting Guitar Port - HELP!

    Connecting Guitar Port - HELP!" Hello,
    I have just purchased Guitar Port and wish to find the simplest way to hook up.
    I have a <span class="mainlink">X-Fi XtremeGamer Fatalty Pro Series sound card with Logitech 5. speakers.
    If you follow this link to the manual and go to page 22 you will see their instructions: http://line6.com/data/l/c0a8090bee7b...%20English.pdf
    I want to have the sound go through my speakers and not have to crawl behind the computer and mess with the cables everytime I want to play guitar.
    Thanks!!!

    also note:
    http://www.thehangtime.com/gb/gbfaq2.html#pluginguitar

  • Connection to port 80 denied

    On opening Firefox (Mac user, Snow Leopard), Google.com is set as my home page, a pop-up was displayed requesting permission to allow / deny an outgoing connection. As this pop-up is not normally displayed I selected "Deny".
    Now, for all regular web page connections a pop-up message is displayed "Firefox Connection to Port 80 Denied" - all web pages appear blocked, except for access to Mozilla.
    I have attempted to problem solve this issue but cannot locate relevant settings for Port 80 web access in Mac Preferences, Firefox, not in Intego VirusBarrier X6 which I use for firewall and anti-virus protection.
    Safari and IE are completely unaffected by this problem.
    Thanks in advance for your assistance.
    Update : this problem is not present when using Firefox in other User accounts.

    Hi 330D-
    Unfortunately it is much easier to block this port than it is to reverse it- as it's buried in the system preferences of your Mac. I've linked two articles below that detail how to un-do this. HTTP requires Port 80 to function, which is why you're experiencing issues now.
    You might consider removing your current version of Firefox and updating to the most recent version. This would be much easier than mucking around with ports, although I can't guarantee it will work [since I've never tried it] The newest version is found here: [http://www.mozilla.org/en-US/firefox/new/ http://www.mozilla.org/en-US/firefox/new/] http://www.mozilla.org/en-US/firefox/new/
    Good luck!
    http://homepage.mac.com/car1son/change_apache_port.html
    http://www.macobserver.com/tip/2007/02/21.1.shtml

  • SAN Device Manager port on Green X

    Hi Everyone,
    Can anyone explain me what is the meaning of green X on the SAN Device manager port 5? Please see details below image and cli command. I am not sure if the port is faulty or just wrong information by device manager.
    SANCORE-1B# sh int fc1/5
    fc1/5 is up
        Port description is SNCISQL01A HBA Slot 2
        Hardware is Fibre Channel, SFP is short wave laser w/o OFC (SN)
        Port WWN is 20:05:00:0d:ec:ba:9d:80
        Admin port mode is F, trunk mode is off
        snmp link state traps are enabled
        Port mode is F, FCID is 0x870200
        Port vsan is 2
        Speed is 4 Gbps
        Rate mode is dedicated
        Transmit B2B Credit is 3
        Receive B2B Credit is 16
        Receive data field Size is 2112
        Beacon is turned off
        5 minutes input rate 12683848 bits/sec, 1585481 bytes/sec, 1261 frames/sec
        5 minutes output rate 61312488 bits/sec, 7664061 bytes/sec, 4307 frames/sec
          30170465636 frames input, 50914835047204 bytes
            0 discards, 0 errors
            0 CRC,  0 unknown class
            0 too long, 0 too short
          85246711848 frames output, 159546341238872 bytes
            5 discards, 0 errors
          224 input OLS, 4 LRR, 42 NOS, 0 loop inits
          47 output OLS, 71 LRR, 186 NOS, 0 loop inits
          16 receive B2B credit remaining
          3 transmit B2B credit remaining
         3 low priority transmit B2B credit remaining
        Interface last changed at Mon Jul 22 15:14:06 2013

      SAN Device manager green X on port 5 disapeared, we did not do anything (shut/unshut the port). Must be a bug.

  • SAN connection to global zone

    All,
    I currently have the setup below to my solaris 10 zone:
    SAN connect to global zone where the mount point locate within non-global zone. SAN connection is place within global zone vfstab file. I run into this problem, the non-global zone will not automatically start when the SAN is connected to global zone at boot.
    Please let me know where should I start looking for the cause of this problem.
    Thanks for your time.
    pnt

    Hi MT,
    Currently the SAN is connected into the Non-Global zone and they're not automatically mounted when the server is start, otherwise we won't able to connect to our server via ssh. I have it set up as following:
    var/zone/non-globalzone/SAN
    I tried to connect the SAN into the Global zone alone and let it automount when the global zone is started and still have problem with ssh connection. The ssh connect is turned in maintenance mode if I let the SAN automount from the vfstab. I don't know where to start looking for the problem.
    Thanks for your time.
    pnt

  • Could not establish TLS connection on port 7001 - "unable to get local issuer certificate"

    tvcs: Event="Outbound TLS Negotiation Error" Service="SIP" Src-ip="10.0.7.168" Src-port="29127" Dst-ip="<Public IP>" Dst-port="7001" Detail="unable to get local issuer certificate" Protocol="TLS" Common-name="ewe.<domainname>.com" Level="1" UTCTime="2014-11-12 12:48:20,071" 2014-11-12T15:48:05+03:00
    Getting above error on Expressway-C server while establishing TLS connection with Expressway-E in DMZ. I have enabled static NAT on Expressway-E and give the Public IP on peer address of Expressway-C. At that time, i was getting DNS resolution error  on Expressway-C so we added a host record on local DNS for Public IP. Later, I created CSR from both Expressway C & E server and ask local microsoft team to issue Local CA certificates. After uploading, i was getting above error (Failed to establish TLS). Also i have uploaded company (wilcard) Public certificates (issued from Geotrust) and we are getting the samer error and Expressway server could not establish TLS connection on port 7001. Firewall connections are done and i double checked it. 
    Expressway ver 8.2

    Yes, Exp-C > Peer Address (FQDN of Exp-E)
    Certificate of Exp-E -> When generating CSR from Exp-E, automatically FQDN (Exp-E(hostname).domainname.com) will be shown. Then this CSR will be send to local CA or Public CA to generate a certificate. OR you meant to say in Exp-E CSR we need to add FQDN of Exp-C server also in alternative name and vice versa too.
    Yes, root certificates & intermediate certificates are uploaded to trusted CA.

Maybe you are looking for