lsparent: 0514-520 Cannot find information ... after Installation of Emulex' LP8000 driver

Ask a Question related to AIX, Design and Development.

  1. #1

    Default lsparent: 0514-520 Cannot find information ... after Installation of Emulex' LP8000 driver

    Hi Experts,

    HW: 44p Model 170
    OSlevel: 4330-10

    We removed IBM's FC-Adapter and added an Emulex LP8000.
    According to the instructions from Emulex we removed the IBM-FC-driver (with
    option "remove dependend software", however) before installing Emulex'
    driver.

    After that action we receive the following message:
    root@host1# lsparent -P -k scsi
    lsparent: 0514-520 Cannot find information in the predefined device
    configuration database for the following:
    PdDv

    This problem remained also after reinstalling all the devices.* packages.

    Any hint is welcome!
    Heiko



    Heiko Swars Guest

  2. Similar Questions and Discussions

    1. trouble with fp 9 installation cant find plug in
      :confused; hi i have an imac osx 10.4.8 and can't get fp 9 to work. keeps saying i need to install plug in but then won't do it or i can't find...
    2. Teradata JDBC Driver Installation
      I'm need to connect to Teradata using Coldfusion. I have the latest JDBC drivers. What is the process to set up CF to use them. I am using CFMX...
    3. Can Emulex LP9802 HBA driver (5.01e) supports Clariions FC4700 & Hitachi 9980 ??
      Could driver "5.01e" for Emulex LP9802-PCI HBAs support the following direct-attached storage arrays in the same host (i.e., Solaris 8, Fujitsu...
    4. AIX 5.1 ML03 and Emulex LP9002 and FAStT500
      Hello all, I trying to configure a SAN between a p610 server and a Fastt500 through a 2109 S16 switch (brocade) With 6228 adapters works fine....
    5. Need help with driver installation please!
      Hi can I please get some assistance with installing an acx100 driver to enable my dwl-650+ pc card to work with Mandrake 9.1 I am having serious...
  3. #2

    Default Re: lsparent: 0514-520 Cannot find information ... after Installation of Emulex' LP8000 driver

    "Heiko Swars" <heiko.swars@ixos.de> wrote in message news:<3f5c9463$0$275$4d4ebb8e@businessnews.de.uu.n et>...
    > Hi Experts,
    >
    > HW: 44p Model 170
    > OSlevel: 4330-10
    >
    > We removed IBM's FC-Adapter and added an Emulex LP8000.
    > According to the instructions from Emulex we removed the IBM-FC-driver (with
    > option "remove dependend software", however) before installing Emulex'
    > driver.
    >
    > After that action we receive the following message:
    > root@host1# lsparent -P -k scsi
    > lsparent: 0514-520 Cannot find information in the predefined device
    > configuration database for the following:
    > PdDv
    >
    > This problem remained also after reinstalling all the devices.* packages.
    >
    > Any hint is welcome!
    > Heiko
    Hi we had a simlar problem....except we had to remove the Emulex cards
    and add the IBM b/c we needed the native IBM drivers....a call to IBM
    support gave us this script....run at your own risk....but it did fix
    our problem. Apparently it is a known issue.

    HTH,
    Kristie

    Could you run the following script, that will identify but not change
    any
    anomalies in your ODM? Read the header info carefully, as it has
    instructions on backing up your ODM before running the script.


    #!/bin/ksh
    #
    ################################################## ###########
    ################################################## ###########
    #
    # Use this script at your own risk! IBM does not support
    # this script. It is supplied to help resolve specific
    # problems and has not been heavily tested.
    #
    ################################################## ###########
    ################################################## ###########
    # This script helps repair ODM issues where a fileset is removed
    # from the system but does not clean up the ODM completely.
    # One sign of this problem is the following error message:
    #
    # lsparent: 0514-520 Cannot find information in the predefined
    # device configuration database for the following:
    # PdDv
    #
    # This script will *IDENTIFY* the bad entry in the PdCn database.
    # It does *NOT* remove it. That needs to be done manually.
    #
    # You *MUST* save the original ODM. This can be done with:
    #
    # tar -cvf /tmp/ODM.save.tar /etc/objrepos /usr/lib/objrepos
    #
    # Then to fix the problem, run:
    #
    # odmdelete -o PdCn -q uniquetype='bad_unique_type'
    #
    # for example, if this script lists:
    #
    # Bad link!!! if/IE3/ie3
    #
    # then run:
    #
    # odmdelete -o PdCn -q uniquetype='if/IE3/ie3'
    #
    # This needs to be run for each unique type called out!
    #
    #
    for x in `odmget PdCn | egrep uniquetype | tr -d '"' | awk '{print
    $3}' |
    sort -u`
    do
    zz=`odmget -q uniquetype="$x" PdDv `
    if [ "$zz" = "" ]
    then
    echo "Bad link!!! $x"
    fi
    done
    K. B. Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139