ACE: Problem dual proccesor server predisctor least-load and 2 oids

Hello,
I have a problem, I have configured predictor least-loaded and probe snmp in ACE, My Servers are dual core proccesor. the oids are:
oid .1.3.6.1.2.1.25.3.3.1.2.1 and oid .1.3.6.1.2.1.25.3.3.1.2.2
In 1 context (integracion1) I configured oid .1.3.6.1.2.1.25.3.3.1.2.1 and the other context (integracion2) I configured oid .1.3.6.1.2.1.25.3.3.1.2.2 and the results was positive, but when I configure 2 oid in integracion2 the output says FAILED, I need sense 2 proccesors to balance. how can do it? when I configure .1.3.6.1.2.1.25.3.3.1.2 (2 proccesors) the output says FAILED
I attachment 3 configurations
Best Regards

when you use multiple oid's on a probe , you need to manually configure the weight and make sure weights add up to 16000 so your probe should be configured as follows:
probe snmp test-server
interval 4
faildetect 2
passdetect interval 10
receive 2
community public
oid .1.3.6.1.2.1.25.3.3.1.2.1
threshold 75
weight 8000
oid .1.3.6.1.2.1.25.3.3.1.2.2
threshold 75
weight 8000

Similar Messages

  • Problem import csv file with SQL*loader and control file

    I have a *csv file looking like this:
    E0100070;EKKJ 1X10/10 1 KV;1;2003-06-16;01C;75
    E0100075;EKKJ 1X10/10 1 KV;500;2003-06-16;01C;67
    E0100440;EKKJ 2X2,5/2,5 1 KV;1;2003-06-16;01C;37,2
    E0100445;EKKJ 2X2,5/2,5 1 KV;500;2003-06-16;01C;33,2
    E0100450;EKKJ 2X4/4 1 KV;1;2003-06-16;01C;53
    E0100455;EKKJ 2X4/4 1 KV;500;2003-06-16;01C;47,1
    I want to import this csv file to this table:
    create table artikel (artnr varchar2(10), namn varchar2(25), fp_storlek number, datum date, mtrlid varchar2(5), pris number);
    My controlfile looks like this:
    LOAD DATA
    INFILE 'e:\test.csv'
    INSERT
    INTO TABLE ARTIKEL
    FIELDS TERMINATED BY ';'
    TRAILING NULLCOLS
    (ARTNR, NAMN, FP_STORLEK char "to_number(:fp_storlek,'99999')", DATUM date 'yyyy-mm-dd', MTRLID, pris char "to_number(:pris,'999999D99')")
    I cant get sql*loader to import the last column(pris) as I want. It ignore my decimal point which in this case is "," and not "." maybe this is the problem. If the decimal point is the problem how can I get oracle to recognize "," as a decimal point??
    the result from the import now, is that a decimal number (37,2) becomes 372 in the table

    Set NLS_NUMERIC_CHARACTERS environment variable at OS level, before running SqlLoader :
    $ cat test.csv
    E0100070;EKKJ 1X10/10 1 KV;1;2003-06-16;01C;75
    E0100075;EKKJ 1X10/10 1 KV;500;2003-06-16;01C;67
    E0100440;EKKJ 2X2,5/2,5 1 KV;1;2003-06-16;01C;37,2
    E0100445;EKKJ 2X2,5/2,5 1 KV;500;2003-06-16;01C;33,2
    E0100450;EKKJ 2X4/4 1 KV;1;2003-06-16;01C;53
    E0100455;EKKJ 2X4/4 1 KV;500;2003-06-16;01C;47,1
    $ cat artikel.ctl
    LOAD DATA
    INFILE 'test.csv'
    replace
    INTO TABLE ARTIKEL
    FIELDS TERMINATED BY ';'
    TRAILING NULLCOLS
    (ARTNR, NAMN, FP_STORLEK char "to_number(:fp_storlek,'99999')", DATUM date 'yyyy-mm-dd', MTRLID, pris char "to_number(:pris,'999999D99')")
    $ sqlldr scott/tiger control=artikel
    SQL*Loader: Release 10.1.0.3.0 - Production on Sat Nov 12 15:10:01 2005
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Commit point reached - logical record count 6
    $ sqlplus scott/tiger
    SQL*Plus: Release 10.1.0.3.0 - Production on Sat Nov 12 15:10:11 2005
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select * from artikel;
    ARTNR      NAMN                      FP_STORLEK DATUM      MTRLI       PRIS
    E0100070   EKKJ 1X10/10 1 KV                  1 16/06/2003 01C           75
    E0100075   EKKJ 1X10/10 1 KV                500 16/06/2003 01C           67
    E0100440   EKKJ 2X2,5/2,5 1 KV                1 16/06/2003 01C          372
    E0100445   EKKJ 2X2,5/2,5 1 KV              500 16/06/2003 01C          332
    E0100450   EKKJ 2X4/4 1 KV                    1 16/06/2003 01C           53
    E0100455   EKKJ 2X4/4 1 KV                  500 16/06/2003 01C          471
    6 rows selected.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    $ export NLS_NUMERIC_CHARACTERS=',.'
    $ sqlldr scott/tiger control=artikel
    SQL*Loader: Release 10.1.0.3.0 - Production on Sat Nov 12 15:10:41 2005
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Commit point reached - logical record count 6
    $ sqlplus scott/tiger
    SQL*Plus: Release 10.1.0.3.0 - Production on Sat Nov 12 15:10:45 2005
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select * from artikel;
    ARTNR      NAMN                      FP_STORLEK DATUM      MTRLI       PRIS
    E0100070   EKKJ 1X10/10 1 KV                  1 16/06/2003 01C           75
    E0100075   EKKJ 1X10/10 1 KV                500 16/06/2003 01C           67
    E0100440   EKKJ 2X2,5/2,5 1 KV                1 16/06/2003 01C         37,2
    E0100445   EKKJ 2X2,5/2,5 1 KV              500 16/06/2003 01C         33,2
    E0100450   EKKJ 2X4/4 1 KV                    1 16/06/2003 01C           53
    E0100455   EKKJ 2X4/4 1 KV                  500 16/06/2003 01C         47,1
    6 rows selected.
    SQL>                                                                            Control file is exactly as yours, I just put replace instead of insert.

  • Problem with vmware server 1.0.10 and usb mounting into guest

    Hi, I really ve a serious problem here because  I ve some reason that I need to use vmware sv 1.0.10 with windows 7 64bit pro as the host and win xp pro sp3 as guest os  .... now i can installed vmware on my win 7 with pressing F8 then disble driver signature technique and I also sign vmware driver with win7 using some tool...
    However, my problem is that i cant mount USB flash drive into the guest... it just show me my flash drive's name at the toolbar>>removable device>>usb    but when i click on it.. nothing happen .. and after that when i check vmware log I've found that  my vmware saw my flashdrive normally as it should be...  i really ve no idea how to solve this....
    I also tried set .vmx config with many methods but nth can help me...
    Ps. I know that vmware server may b ve a big issue with win7 compatible things but i do really need to make this version of VM working  with my usb flashdrive... plz help me.. Thank you guys all:)))

    Hi creamac,
    Welcome to communites
    Please install vmware tool and then on vmware task bar select connect or unplug usb drive . You
    will find that on right hand corner above to task bar of host machine  .
    "Nature always wears the colors of the spirit."

  • Can't load all email accounts - HTTP server won't load and I can get a conn

    Unable to get a connection and to load the last of three accounts an HTTP its msn.com

    What model iPad do you have ? The iPad 2 onwards (inlcuding the Mini) have a built-in gyroscope, if you have a first gen iPad then it won't have gyroscope.

  • Mail Problems: Loading and Quitting

    This might turn out to be a long discription, but bear with me...
    I had problems with Mail today--I had just received an iTunes receipt and Mail crashed; it appeared as if the program got stuck loading the new message. When I reopened Mail, none of my messages were loading and it appeared as if I had nothing in my Inbox or any of my other folders. I found on an Apple Discussion post that I should try shutting off the Internet and holding the Shift key down while opening Mail. This worked, so I continued on with the instructions in the threat, which told me to put my Envelope Index and a copy of the Mail folder on the desktop. This prompted me to reopen Mail; Mail then reloaded all my messages and sort of "started over" if you will.
    At first, this process appeared to have fixed the problem, but I tried quitting Mail, and now Mail won't quit. The window disappears, but the arrow still points toward the icon in the dock, indicating that the program is still open. When I click on the Icon, the top Menu bar changes to Mail, and Mail is highlighted blue. I am forced to "Force Quit" and reopen. Sometimes, after I do this, I have the same problem where the messages won't load and it appears as if I have no mail in my Inbox or other folders.
    I've repaired permissions and cleaned my Mac using Onyx. What now? I can't lose all my messages in my Mail program--I have tons saved!
    Thanks!

    Hello Jessica.
    This might turn out to be a long discription, but
    bear with me...
    I love detailed descriptions...
    It could be that the crash caused some filesystem corruption, so you should start by verifying/repairing your disk, as described in this article (note that it's not repairing permissions what I'm talking about here):
    The Repair functions of Disk Utility: what's it all about?
    If the problem persists after having fixed all filesystem issues, it could be that the Mail preferences file itself became corrupted and Mail chokes on it when trying to save changes, so you may want to try this (skip step 2 if you already have a backup copy of the Mail folder on the Desktop):
    1. Make sure Mail is not running.
    2. Make a backup copy of the HOME/Library/Mail folder, just in case something goes wrong. You can do this in the Finder by dragging the folder to the Desktop while holding the Option (Alt) key down, for example. This is where all your mail is stored.
    3. In the Finder, go to HOME/Library/Preferences/. Locate the file com.apple.mail.plist and move it to the Desktop (to be deleted if this fixes the problem).
    You'll have to set up your accounts from scratch all over again. If given the option to import existing mailboxes or something like that, don't. Just enter the account information and Mail will automagically rediscover the data in HOME/Library/Mail/ when done.
    You'll also have to re-configure most of your settings in Mail > Preferences. The first thing you should do is go to Preferences > Viewing and disable "Display remote images in HTML messages" if it's enabled.

  • Reconciliation Action Rule action - Assign To Administrator With Least Load

    I have a recon action rule "No Matches Found - Assign To Administrator With Least Load" and I want to know what exactly is supposed to happen. I know when the condition is met the event in the recon manager gets assigned to the admin with the least load, but is there something else that should happen? I was hoping that a task item or something would be created for the admin or a notification but from what I see the only way an admin would know about the event is by searching the recon manager. I am using OIM 9.1.
    Thanks

    I'd like to know the answer to this too. I'd like to imagine that unlinked recon events (or events where there is more than one match) would get assigned to xelsysadm and appear in the xlwebapp, but do they? And if not how can it be done? I've tried searching OIM docco and this forum for an answer but I cant find squat. I'm running OIM 9.101 patchset 5.
    Sorry to dig up an old post for everyone, but it would be good to see this answered for others to reference if they have the same issue.

  • After Loading and Calc'ing the database error in data Preview

    I am doing my Developer on my laptop and the transfering the object to the server
    I have loading and calc'd about 4 years of data on Bith My laptop and the Server
    when i try to Preview the data
    I get this error
    Duplicate Member names with data preview are not supported On my Laptop
    is the becasue i have clicked allow Dup memeber ??
    because i do not have any dup's in my outline
    and on the server this is the error i am getting is
    Can not connect to the olap service
    can not connect to Essbase Server
    Essbase Error 1051293
    Login Failied
    but i am connected and logged to the server
    Please advise
    Edited by: Next Level on Dec 16, 2011 1:26 PM
    Edited by: Next Level on Dec 16, 2011 1:31 PM

    I try to build a new new Application
    and did not click on the dup member !!!!
    I guess the Dup member tag is connected to The Properties of the OTL.file
    even If i not click on Dup Member when creating a
    There is not a way to bring over the .OTL and change the Property
    Please advise
    Edited by: Next Level on Dec 16, 2011 4:45 PM

  • Loading and with error message :COLLECTION in SOURCE SYSTEM ENDED

    Hi,
    Facing problem with master data object while loading and with error message :COLLECTION in SOURCE SYSTEM ENDED
    This load is getting failed every day. It is a full load and records are getting transferered and added.
    when we check in details tab in RSMO all data packets in processing is green but in extraction some of the data selection scheduled are in yellow.We are changing QM status to green as records are added.
    Version i am using is BW 3.5
    Please let me know what will be the problem???
    Thanks,
    Edited by: lokesh thonsyd on Feb 18, 2009 8:55 AM

    First try to find out the reason for the load failure. Once you fix this, do a manual run of the infopackage and when successful you can continue with the rest of process chain.
    Sometimes, it doesn't help to just set a request to green status in order to run the process chain from that step on to the end.
    You need to set the failed request/step to green in the database as well as you need to raise the event that will force the process chain to run to the end from the next request/step on.
    Therefore you need to open the messages of a failed step by right clicking on it and selecting 'display messages'.
    In the opened popup click on the tab 'Chain'.
    In a parallel session goto transaction se16 for table rspcprocesslog and display the entries with the following selections:
    1. copy the variant from the popup to the variante of table rspcprocesslog
    2. copy the instance from the popup to the instance of table rspcprocesslog
    3. copy the start date from the popup to the batchdate of table rspcprocesslog
    Press F8 to display the entries of table rspcprocesslog.
    Now open another session and goto transaction se37. Enter RSPC_PROCESS_FINISH as the name of the function module and run the fm in test mode.
    Now copy the entries of table rspcprocesslog to the input parameters of the function module like described as follows:
    1. rspcprocesslog-log_id -> i_logid
    2. rspcprocesslog-type -> i_type
    3. rspcprocesslog-variante -> i_variant
    4. rspcprocesslog-instance -> i_instance
    5. enter 'G' for parameter i_state (sets the status to green).
    Now press F8 to run the fm.
    Now the actual process will be set to green and the following process in the chain will be started and the chain can run to the end.

  • Calendar Server 6.0 2004Q2 and Sun One Synchronization 1.1

    Hello,
    we have a problem with Calendar Server 6.0 2004Q2 and Sun One Synchronization running with a Palm. The connection from the sync tool to calendar server works, but we cannot select one calendar of the user. With Calendar Server 6 2003Q4 ist worked well. Is there something changed in wcap in the new version? Does anybody know how to solve that problem?
    Yours,
    Angela

    Hello,
    I confirm that I have the same problem with that version (CS 6.0 2004Q2). I cannot select any calendar and It looks like only the default calendar is synchronized. It used to work with the previous version, though.
    We have an application that uses WCAP commands. It works perfectly with both versions.
    Regards,
    Fabrice

  • Too much memory consumed while my 3D scene is load and it becomes too slow

    Sir
    i have made a room in java 3D by using Box class and lighting etc.
    i have converted the 3D Studio Max files (.3ds) into the .obj file and used the ObjectFile Loader to import it.
    All things are imported well.
    But the main problem arises when my scene is loaded and i revolve my camera in the room too much flickering comes in that.
    I have also laoded textures on walls and objects.
    Also it consumes about 80 to 90 Mb of memory space.
    when i increase the objects memory also increases.
    Tell me how i can handle this memory problem. and also to handle the flickering.
    I want to use that room in applet and want to use it on net. So if this problem stills there then how clients should see it.
    Please reply as soon as possible

    Hello,
    I don't know what geometric primitive is generated by the 3DSLoader.
    In fact triangles are always better, graphic cards love them.
    In particular TriangleStripArray primitive. (TriangleArray is slower !)
    So, for a quick answer, I would suggest you to :
    ( - verify your graphic card driver, but I suppose it's OK )
    - use OpenGL version of Java3d if it's not already the case
    - take a look in 3DSLoader and see what primitive it is using ; It is possible to triangulate and stripifiate (see GeometryInfo and Stripifier) if the geometry do not match.
    - verify if you can reuse memory in your scene (same Appearance for multiple objects for example)
    Some performance considerations:
    http://trapdoor.surak.com.au/~chris/home/java/j3d/PerformanceSutras.html
    Best Regards and Goold Luck

  • ACE: if one server is loaded and it want to use the server not loaded? how?

    Hello,
    I have 2 real Servers (10.24.8.200 and 10.24.8.201) in loadbalance (HTTP and HTTPS) with VIP 10.24.16.10, and the type of loadbalance is round robin, but when the server (10.24.8.200) has high proccessing for example memory or hard disk and users try to access to server (10.24.8.200) this is more slow. if this server is too loaded? how can the ACE switch to another real server? in 10 seconds for example?
    Best Regards
    My configuration is:
    ACE-MOD6/integracion1# sh runn
    Generating configuration....
    access-list anyone line 8 extended permit ip any any
    probe http get-index
    interval 4
    open 2
    recieve 2
    faildetect 2
    passdetect interval 10
    expect status 200 200
    rserver host Srv1
    ip address 10.24.8.200
    probe get-index
    inservice
    rserver host Srv2
    ip address 10.24.8.201
    probe get-index
    inservice
    serverfarm host servers
    rserver Srv1
    inservice
    rserver Srv2
    inservice
    class-map type management match-any ADM-CONTEX-SERV1
    2 match protocol telnet any
    3 match protocol ssh any
    4 match protocol icmp any
    class-map type http loadbalance match-all Check-Headers
    2 match http url .*
    3 match http header Host header-value "10.24.16.*"
    4 match http header User-Agent header-value ".*MSIE.*"
    class-map match-all VIP-10-HTTP
    2 match virtual-address 10.24.16.10 tcp eq www
    class-map type http loadbalance match-all other-HTTP
    2 match http url .*
    policy-map type management first-match ADM-CTX-SERV1
    class ADM-CONTEX-SERV1
    permit
    policy-map type loadbalance first-match L7-logic
    class Check-Headers
    serverfarm servers
    class other-HTTP
    serverfarm servers
    policy-map type loadbalance first-match lb-logic
    class class-default
    serverfarm servers
    policy-map multi-match client-vips
    class VIP-10-HTTP
    loadbalance vip inservice
    loadbalance policy L7-logic
    loadbalance vip icmp-reply active
    interface vlan 60
    description inside
    ip address 10.24.8.5 255.255.255.0
    access-group input anyone
    access-group output anyone
    service-policy input ADM-CTX-SERV1
    no shutdown
    interface vlan 233
    description outside
    ip address 10.24.16.5 255.255.255.0
    access-group input anyone
    access-group output anyone
    service-policy input ADM-CTX-SERV1
    service-policy input client-vips
    no shutdown
    ip route 0.0.0.0 0.0.0.0 10.24.16.1

    If your server is running an SNMP agent, the ACE can use SNMP to pull stats from the server. You'll just need the correct OID. For instance, if you were using Linux, you might use something like the following as a probe:
    probe snmp linux-stats
    interval 10
    community public
    oid .1.3.6.1.4.1.2021.10.1.5.1
    threshold 75
    .1.3.6.1.4.1.2021.10.1.5.1 is the OID for CPU load average (for Linux, Windows would have a different OID). If it goes above 75, the server is marked as out. When used with the least-loaded predictor, it will also divert more traffic to the least loaded server, as defined by that OID. You can use multiple OIDs in conjunctions and give them different weights.
    However, judging from your timeout value of your get-http health check, I would check to see if the issue isn't that your servers are flapping because of a too-low receive threshold. Each server has 2 seconds to respond to the ACE, which may not enough time given that the servers may be getting a lot of traffic and you're doing these checks every 4 seconds.
    If one fails, the other gets all the traffic, until it is overloaded, and it fails. By this time, your other servers has calmed down, and gets all the traffic, and the cycle repeats itself. Check SNMP traps or SYSLOG to see if this is the case.
    Either way, you might want to change the timeout to 5 or 10, to give them more breathing room.

  • I upgraded to the new version "4" and it will not load any websites..."unable to locate server" is all i get and cannot figure out the problem ....had to delete and go back to an earlier version whichi understand is unsafe...what to do?

    # Question
    I upgraded to the new version "4" and it will not load any websites..."unable to locate server" is all i get and cannot figure out the problem ....had to delete and go back to an earlier version which i understand is unsafe...what to do?

    That was probably caused by your Firewall blocking the newly installed version of Firefox.
    No known security issues with Firefox 3.6.17, which was just released this past week.

  • ACE Problem after restarting Application

    Hi,
    we have an ACE20 and have set it up to balance 4 Containers on a Oracle Application Server. Every time we stop all Containers at the same time for longer than an hour it takes forever (hours) until the Load Balancer starts balancing the Containers again. I can see that the ACE Module is checking the Containers in the Apache Logfiles on the Application Server and gets a 200, but still we can't access the Application for a few hours. If I connect direct to the Container it also works fine... just the ACE does not work. Like it has a timeout and is waiting.
    Any idea how to give it a kick?
    While accessing the Application I can see that it connects, but nothing happens...
    sh conn detail
    total current connections : 2
    conn-id    np dir proto vlan source                destination           state
    ----------+--+---+-----+----+---------------------+---------------------+------+
    68155      2  in  TCP   191  10.200.101.73:35777   10.200.101.64:80      ESTAB
              [ idle time   : 00:00:18,   byte count  : 888        ]
              [ elapsed time: 00:00:18,   packet count: 3          ]
    68156      2  out TCP   195  10.200.105.33:80      10.200.101.73:35777   INIT
              [ conn in reuse pool : FALSE]
              [ idle time   : 00:00:18,   byte count  : 0          ]
              [ elapsed time: 00:00:18,   packet count: 0          ]
    Thanks for any help!
    Jason

    Hi,
    I'm still having problems with the ACE Laodbalancer. At the moment it doesn't seem to recover after having restarted the Application the last time.
    Can someone look at the Config and tell me if they see a mistake in it?
    I have three instances accesst, accesst2 and accesst3. Each instance has 4 Oracle Application Server Containers Deployed on 2 different Apllication Servers. The Site is split between 2 DMZ which are seperated by a Firewall. The Cisco Ace has one leg in each vlan (191 and 195). We always had a problem after taking the Applcation Servers down Updates that it takes forever untill the ACE Server starts blancing agian. For the last 4 Days it hasn't started reblancing yet. As far as I know nothing has changed in the Configuration of the Server or of the ACE. The Firewall Admin said he tried t find a problem, but didn't change anything.
    Do I maybe have a mistake in the ACE Config? Am I missing something here?
    MS4_ACE_PU/MY-APP# sh running-config
    Generating configuration....
    logging buffered 7
    access-list anyone line 8 extended permit ip any any
    probe http HEAD_1
      port 7791
      interval 10
      faildetect 15
      passdetect interval 15
      receive 2
      request method head url /APPLICATION/images/probe.gif
      expect status 200 200
      open 2
    probe http HEAD_2
      port 7792
      interval 5
      faildetect 15
      passdetect interval 15
      receive 2
      request method head url /APPLICATION/images/probe.gif
      expect status 200 200
      open 2
    probe http HEAD_3
      port 7793
      interval 5
      faildetect 15
      passdetect interval 15
      receive 2
      request method head url /APPLICATION/images/probe.gif
      expect status 200 200
      open 2
    probe http HEAD_4
      port 7794
      interval 5
      faildetect 15
      passdetect interval 15
      receive 2
      request method head url /APPLICATION/images/probe.gif
      expect status 200 200
      open 2
    probe http HEAD_5
      port 7795
      interval 5
      faildetect 15
      passdetect interval 15
      receive 2
      request method head url /APPLICATION/images/probe.gif
      expect status 200 200
      open 2
    probe http HEAD_6
      port 7796
      interval 5
      faildetect 15
      passdetect interval 15
      receive 2
      request method head url /APPLICATION/images/probe.gif
      expect status 200 200
      open 2
    probe http HEAD_7
      port 7797
      interval 5
      faildetect 15
      passdetect interval 15
      receive 2
      request method head url /APPLICATION/images/probe.gif
      expect status 200 200
      open 2
    probe http HEAD_8
      port 7798
      interval 5
      faildetect 15
      passdetect interval 15
      receive 2
      request method head url /APPLICATION/images/probe.gif
      expect status 200 200
      open 2
    parameter-map type http PERSIST-REBALANCE
      persistence-rebalance
    action-list type modify http LOCATION-RW-VIP-2
      header rewrite response location header-value "http://accesst3.my-site.de:.....(.*)" replace "https://accesst3.my-site.de/%1"
      header rewrite response content-lokation header-value "http://accesst3.my-site.de:.....(.*)" replace "https://accesst3.my-site.de/%1"
    action-list type modify http LOCATION-RW-VIP-1
      header rewrite response content-lokation header-value "http://accesst2.my-site.de:.....(.*)" replace "https://accesst2.my-site.de/%1"
      header rewrite response location header-value "http://accesst2.my-site.de:.....(.*)" replace "https://accesst2.my-site.de/%1"
    action-list type modify http LOCATION-RW-VIP
      header rewrite response location header-value "http://accesst.my-site.de:.....(.*)" replace "https://accesst.my-site.de/%1"
      header rewrite response content-lokation header-value "http://accesst.my-site.de:.....(.*)" replace "https://accesst.my-site.de/%1"
    rserver host server103
      description KS ApplicationServer
      ip address 10.200.105.33
      inservice
    rserver host server104
      description KS ApplicationServer
      ip address 10.200.105.34
      inservice
    serverfarm host HTTP-APPL
      rserver server103 7791
          probe HEAD_1
        inservice
      rserver server103 7792
        probe HEAD_2
        inservice
      rserver server104 7791
        probe HEAD_1
        inservice
      rserver server104 7792
        probe HEAD_2
        inservice
    serverfarm host HTTP-APPL-1
      rserver server103 7795
        probe HEAD_5
        inservice
      rserver server103 7796
        probe HEAD_6
        inservice
      rserver server104 7795
        probe HEAD_5
        inservice
      rserver server104 7796
        probe HEAD_6
        inservice
    serverfarm host HTTP-APPL-2
      rserver server103 7797
        probe HEAD_7
        inservice
      rserver server103 7798
        probe HEAD_8
        inservice
      rserver server104 7797
        probe HEAD_7
        inservice
      rserver server104 7798
        probe HEAD_8
        inservice
    sticky http-header TranSON_Cert_Subject group1
      replicate sticky
      serverfarm HTTP-APPL
    sticky http-header TranSON_Cert_Subject group2
      replicate sticky
      serverfarm HTTP-APPL-1
    sticky http-header TranSON_Cert_Subject group3
      replicate sticky
      serverfarm HTTP-APPL-2
    class-map type http inspect match-any HTTP-INS-VIP
      2 match header Host header-value "accesst.my-site.de"
    class-map type http inspect match-any HTTP-INS-VIP-1
      2 match header Host header-value "accesst2.my-site.de"
    class-map type http inspect match-any HTTP-INS-VIP-2
      2 match header Host header-value "accesst3.my-site.de"
    class-map match-all HTTP-VIP
      2 match virtual-address 10.200.101.64 tcp eq www
      class-map match-all HTTP-VIP-1
      2 match virtual-address 10.200.101.68 tcp eq www
    class-map match-all HTTP-VIP-2
      2 match virtual-address 10.200.101.69 tcp eq www
    policy-map type loadbalance first-match HTTP-SF
      class class-default
        sticky-serverfarm group1
        action LOCATION-RW-VIP
    policy-map type loadbalance first-match HTTP-SF-1
      class class-default
        sticky-serverfarm group2
        action LOCATION-RW-VIP-1
    policy-map type loadbalance first-match HTTP-SF-2
      class class-default
        sticky-serverfarm group3
        action LOCATION-RW-VIP-2
    policy-map type inspect http all-match INS-PM-VIP
      class HTTP-INS-VIP
        permit
    policy-map type inspect http all-match INS-PM-VIP-1
      class HTTP-INS-VIP-1
        permit
    policy-map type inspect http all-match INS-PM-VIP-2
      class HTTP-INS-VIP-2
        permit
    policy-map multi-match SLB-logic
      class HTTP-VIP
        loadbalance vip inservice
        loadbalance policy HTTP-SF
        loadbalance vip icmp-reply active
        loadbalance vip advertise active
        appl-parameter http advanced-options PERSIST-REBALANCE
      class HTTP-VIP-1
        loadbalance vip inservice
        loadbalance policy HTTP-SF-1
        loadbalance vip icmp-reply active
        loadbalance vip advertise active
        appl-parameter http advanced-options PERSIST-REBALANCE
      class HTTP-VIP-2
        loadbalance vip inservice
        loadbalance policy HTTP-SF-2
        loadbalance vip icmp-reply active
        loadbalance vip advertise active
        appl-parameter http advanced-options PERSIST-REBALANCE
    interface vlan 191
      ip address 10.200.101.65 255.255.255.0
      alias 10.200.101.67 255.255.255.0
      peer ip address 10.200.101.66 255.255.255.0
      access-group input anyone
      service-policy input SLB-logic
      no shutdown
    interface vlan 195
      ip address 10.200.105.65 255.255.255.0
      alias 10.200.105.63 255.255.255.0
      peer ip address 10.200.105.66 255.255.255.0
      access-group input anyone
      no shutdown
    Destination         Gateway          Interface         Flags
    10.200.101.0/24     0.0.0.0          vlan191           IA [0x30]
    10.200.105.0/24     0.0.0.0          vlan195           IA [0x30]

  • SP2 Installation Problem on Weblogic Server 6.1SP1

    hi,
    i encountered a problem installing sp2 to my second server.
    (Windows 2000 Advance Server with SP2, dual Xeon CPU, 3GB, 200GB.
    Weblogic Server 6.1 with SP1 installed at d:\bea) x 2
    installation file itself is valid. as installation at server 1 was successful. however,
    when installing at server 2:
    1) by double clicking on the exe - blank GUI popup appeared on screen without any
    usual text (first screen that reads: welcome - the installer will guide you....).
    all three buttons were there. click on the next buttons all the way would give a
    title 'installation complete' without any delay. sp2 was not installed.
    2) by running exe from console - GUI popup appeared normally. however, when prompted
    to select bea home, selecting the default folder at d:\bea and when clicking on next
    button, a popup would appear claiming that weblogic server home is not found at d:\bea.
    and process discontinued.
    the beahomelist is found at c:\bea, with content reading correctly as d:\bea;c:\bea;
    Previous SP1 installation on server 2 about 2 months back was successful.
    would appreciate for ur input. thanks a lot in advance.
    rgds, keigo

    I've exactly the same problem and will attempt to reinstall WebLogic 6.1
    with SP3 built-in ...
    "keigo" <[email protected]> wrote in message
    news:[email protected]..
    >
    update on the progress, spoke to a BEA staff from regional office and I aminformed
    that this problem was never encountered and am advised to perform freshre-installation
    with wlserver6.1 with sp2 built in.
    "keigo" <[email protected]> wrote:
    Hi Laurent,
    Thank you very much for ur reply.
    My Weblogic Server is installed in D:\bea. Just like the Server 1
    configuration.
    And I m choosing to install SP2 into this existing home.
    I am kind of worried by this as it is nearing production and I am running
    into this
    weird problem here.
    Thanks again.
    Rgds, keigo
    Laurent Goldsztejn <[email protected]> wrote:
    Hello Keigo,
    It seems that the problem comes when your server is installed in the
    directory where the beahomelist file is located. Am I correct when I
    assume that the installation fails when you install the service pack 2
    over the server installed in c:\bea?
    Thank you,
    Laurent Goldsztejn
    Developer Relations Engineer
    BEA Support

  • Server stops when loading WPSD.NLM

    i found a strange behaviour of my NW&%SP8-VM.
    after reinstalling nmas the server stops loading when WPSD.NLM is called.
    the server does not abend or freeze ! :-)
    i can connect via rconj but not via nrm or netware client.
    i changed to hte logger screen and saved it to c:\nweserver :
    <F1> for Help-----------Top Of Screen Lines Lost: 0
    Initialize Keyboard
    Initialize Debugger
    Initialize Polling Keyboard
    System Memory
    Loading module XLDR.NLM
    Loading module PVER500.NLM
    Loading module LIBC.NLM from startup device
    Portions copyright (c) 1980, 1982, 1983, 1986, 1990, 1993 by the
    Regents
    of the University of California (Free BSD) and (c) 1997, 1998 by the
    NetBSD
    Foundation, Inc.
    Loading module FATFS.NLM from startup device
    Checking local drives
    ALERT: NetWare needs to check one or more drives for consistency. This
    becomes
    necessary when NetWare is not downed correctly (ie: from an abend, hang
    or
    quitting from the context of the internal debugger.)
    NetWare is now checking the C: volume for file system errors...
    Volume NWLOCALVOL created Aug-16-2007 17:3
    Volume Serial Number is BDDD-3062
    517,890,048 bytes total disk space.
    65,536 bytes in 2 hidden files.
    409,600 bytes in 46 directories.
    143,491,072 bytes in 2013 user files.
    373,923,840 bytes available on disk.
    8,192 bytes in allocation unit.
    63,219 total allocation units on disk.
    45,645 available allocation units on disk.
    VERIFIED OK
    Loading module TBX.NLM from startup device
    Loading module CDBE.NLM from startup device
    Initializing NetWare Configuration Database
    Running CDBE consistency check on the NetWare Configuration File
    (C:\NWSERVER).
    Validating CDBE Local Registry File...
    ++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++
    ++++++++++++++++++++++++++++++++++++++
    CDBE consistency check completed successfully.
    NetWare Configuration file is located at C:\NWSERVER
    Building CDBE Local cache...
    Parsing the NetWare Configuration File [v6.1]
    Refreshing the NetWare Environment from the NetWare Configuration File.
    Initializing NetWare Environment
    The NetWare Environment has been updated successfully.
    Initialize Swap File
    Add Default Swap Info
    Processing LCONFIG.SYS file.
    LCONFIG.SYS file exists, overriding default locale values
    Process Startup File [Pass 1]
    System Cache
    Loading module NWKCFG.NLM from startup device
    NetWare Kernel Load Template v63.8 rev. 0.
    NetWare Kernel Load Template being verified.
    NetWare Kernel Load Template verification successful.
    Processing stage 0 loading of nlms.
    To Enable Splash Screen, reload server using command line option -L
    Processor 0 Speed
    NW Server v5.70+ detected
    Default options:
    Floppy drive is present.
    Floppy drive is present.
    Module ACPIDRV.PSM load status OK
    Auto-Loading Module ACPICA.NLM
    Auto-loading module ACPICA.NLM
    ACPI Component Architecture for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Copyright (C) 2000-2007 Novell, Inc. All Rights Reserved.
    Auto-Loading Module ACPIASL.NLM
    Auto-loading module ACPIASL.NLM
    ACPI Architecture Services Layer for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Copyright (C) 2003-2007 Novell, Inc. All Rights Reserved.
    Module ACPIASL.NLM load status OK
    Module ACPICA.NLM load status OK
    Module SCSIHD.CDM load status OK
    Module IDECD.CDM load status OK
    Module IDEATA.HAM load status OK
    Module LSIMPTNW.HAM load status OK
    Module KEYB.NLM load status OK
    Module CHARSET.NLM load status OK
    Loading module ACPIDRV.PSM
    ACPI Platform Support Module for ACPI compliant systems
    Version 1.05.19 16 January 2007
    Copyright (C) 1987-2007 Novell, Inc. All Rights Reserved.
    ACPI: RSDP @ 0xF6C70/0x0014 (v000 PTLTD )
    ACPI: RSDT @ 0x2FEFAB74/0x0030 (v001 PTLTD RSDT 0x06040000 LTP
    0x00000000)
    ACPI: FACP @ 0x2FEFEF14/0x0074 (v001 INTEL 440BX 0x06040000 PTL
    0x000F4240)
    ACPI: DSDT @ 0x2FEFABA4/0x4370 (v001 PTLTD Custom 0x06040000 MSFT
    0x0100000D)
    ACPI: FACS @ 0x2FEFFFC0/0x0040
    ACPI: APIC @ 0x2FEFEF88/0x0050 (v001 PTLTD APIC 0x06040000 LTP
    0x000000
    00)
    ACPI: BOOT @ 0x2FEFEFD8/0x0028 (v001 PTLTD $SBFTBL$ 0x06040000 LTP
    0x00000001)
    Parsing all Control Methods:
    Table [DSDT](id 0001) - 328 Objects with 31 Devices 84 Methods 9 Regions
    tbxface-0619 [13] TbLoadNamespace : ACPI Tables successfully
    acquired
    evxfevnt-0176 [13] Enable : Transition to ACPI mode
    successful
    evgpeblk-1108 [15] EvCreateGpeBlock : GPE 00 to 0F [_GPE] 2 regs on
    int 0x9
    evgpeblk-1208 [15] EvInitializeGpeBlock : Found 1 Wake, Enabled 1
    Runtime GPEs
    in this block
    Completing Region/Field/Buffer/Package
    initialization:..........................
    Initialized 9/9 Regions 0/0 Fields 26/26 Buffers 21/22 Packages (337
    nodes)
    Initializing Device/Processor/Thermal objects by executing _INI
    methods:.
    Executed 1 _INI methods requiring 0 _STA executions (examined 37
    objects)
    Module ACPIDRV.PSM load status OK
    Loading module SCSIHD.CDM
    Novell NetWare SCSI Fixed Disk Custom Device Module
    Version 3.03.10 30 May 2008
    Copyright (c) 1995-2008 Novell, Inc. All Rights Reserved.
    Module SCSIHD.CDM load status OK
    Loading module IDECD.CDM
    Novell ATA/IDE CD/DVD Custom Device Module
    Version 4.13 4 April 2007
    Copyright (C) 1994-2007, Novell, Inc. All rights reserved.
    Module IDECD.CDM load status OK
    Loading module IDEATA.HAM
    Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    Version 4.34 5 May 2007
    Copyright (C) 1989-2007, Novell, Inc. All rights reserved.
    Module IDEATA.HAM load status OK
    Loading module LSIMPTNW.HAM
    LSI Corporation Common Architecture NWPA-HAM SAS/Fibre/SCSI Driver.
    Version 5.02 5 December 2007
    Copyright (c) 2000-2007 LSI Corporation. All rights reserved.
    Module LSIMPTNW.HAM load status OK
    Loading module KEYB.NLM
    NetWare National Keyboard Support
    Version 2.10 26 July 2001
    Copyright 2001 Novell, Inc. All rights reserved.
    (LsiMptNw-SAS/Fibre/SCSI) Device List:
    HBA ID LUN VENDOR PRODUCT REV SYNC WIDE QTAG IR P
    SCAN
    2 0 0 VMware Virtual disk 1.0 F40 W16 Yes Y
    New
    2 1 0 VMware Virtual disk 1.0 F40 W16 Yes Y
    New
    2 2 0 VMware Virtual disk 1.0 F40 W16 Yes Y
    New
    2 7 LSI Corpo LSI_53C1030 1 F160 W16
    New
    Keyboard support for Germany, code page 850 loaded
    Module KEYB.NLM load status OK
    Loading module CHARSET.NLM
    Display Character Set Support For NetWare
    Version 1.01 4 June 2003
    Copyright 2003, Novell, Inc. All Rights Reserved.
    Module CHARSET.NLM load status OK
    <SCSIHD>READCAPACITY SUCCEEDED FOR DEVICE 3
    <SCSIHD>CAPACITY=0x9FFFFF sectors * 200
    <SCSIHD>READCAPACITY SUCCEEDED FOR DEVICE 5
    <SCSIHD>CAPACITY=0x9FFFFF sectors * 200
    <SCSIHD>READCAPACITY SUCCEEDED FOR DEVICE 7
    <SCSIHD>CAPACITY=0x7FFFFF sectors * 200
    Total server memory: 785.982 Kilobytes
    Novell Open Enterprise Server, NetWare 6.5
    Support Pack Revision 08
    (C) Copyright 1983-2008 Novell Inc. All Rights Reserved. Patent Pending.
    Server Version 5.70.08 October 3, 2008
    Friday, 3 July 2009 19.36.36 <<NO TIME ZONE>>
    Loading module ACPICMGR.NLM
    ACPI Component Manager for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Copyright (C) 2003-2007 Novell, Inc. All Rights Reserved.
    Module ACPICMGR.NLM load status OK
    Loading module ACPIPWR.NLM
    ACPI Power Management Driver for ACPI compliant systems
    Version 1.05.16 16 January 2007
    Copyright (C) 2003-2007 Novell, Inc. All Rights Reserved.
    Module ACPIPWR.NLM load status OK
    NOTE: The NLM "CONNMGR.NLM" has modified event 154 properties
    (1:0:0)<SCSIHD>REA
    DCAPACITY SUCCEEDED FOR DEVICE 3
    <SCSIHD>CAPACITY=0x9FFFFF sectors * 200
    <SCSIHD>READCAPACITY SUCCEEDED FOR DEVICE 5
    <SCSIHD>CAPACITY=0x9FFFFF sectors * 200
    <SCSIHD>READCAPACITY SUCCEEDED FOR DEVICE 7
    <SCSIHD>CAPACITY=0x7FFFFF sectors * 200
    Loading module MALHLP.NLM
    NSS Configure help messages (Build 163 MP)
    Version 3.27 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    Module MALHLP.NLM load status OK
    NSS background checking scheduled.
    (LsiMptNw-SAS/Fibre/SCSI) Device List:
    HBA ID LUN VENDOR PRODUCT REV SYNC WIDE QTAG IR P
    SCAN
    2 0 0 VMware Virtual disk 1.0 F40 W16 Yes Y
    Refr
    2 1 0 VMware Virtual disk 1.0 F40 W16 Yes Y
    Refr
    2 2 0 VMware Virtual disk 1.0 F40 W16 Yes Y
    Refr
    2 7 LSI Corpo LSI_53C1030 1 F160 W16
    Refr
    NetWare Virtual Disk
    Version 1.00 30 November 2004
    Copyright 2003-2004 Novell, Inc. All rights reserved.
    Module VDISK.NLM load status OK
    Adding swap file to 'SYS'
    Successfully imported symbols from NSS
    All Digitally Signed Objects successfully loaded.
    Loading module PMLODR.NLM
    Portions (C) Copyright 1986-1990 RSA Data Security, Inc.
    Loading module TIMESYNC.NLM
    NetWare Time Synchronization Services
    Version 6.61.01 14 October 2005
    Copyright 1991-2001,2002 Novell, Inc. All rights reserved.
    Auto-Loading Module CLIB.NLM
    Auto-loading module CLIB.NLM
    (Legacy) Standard C Runtime Library for NLMs
    Version 5.90.15 10 March 2008
    Copyright (c) 1996-2007 by Novell, Inc. All rights reserved.
    Auto-Loading Module NLMLIB.NLM
    Auto-loading module NLMLIB.NLM
    Novell NLM Runtime Library
    Version 5.90.15 10 March 2008
    Copyright (c) 1996-2007 by Novell, Inc. All rights reserved.
    Auto-Loading Module REQUESTR.NLM
    Auto-loading module REQUESTR.NLM
    Novell NCP Requestor for NLMs
    Version 5.90.15 10 March 2008
    Copyright (c) 1996-2007 by Novell, Inc. All rights reserved.
    Auto-Loading Module THREADS.NLM
    Auto-loading module THREADS.NLM
    Novell Threads Package for NLMs
    Version 5.90.15 10 March 2008
    Copyright (c) 1996-2007 by Novell, Inc. All rights reserved.
    Auto-Loading Module LIB0.NLM
    Auto-loading module LIB0.NLM
    Novell Ring 0 Library for NLMs
    Version 5.90.15 10 March 2008
    Copyright (c) 1996-2007 by Novell, Inc. All rights reserved.
    Loading module POLIMGR.NLM
    Module LIB0.NLM load status OK
    Module THREADS.NLM load status OK
    Module REQUESTR.NLM load status OK
    Auto-Loading Module STREAMS.NLM
    Auto-loading module STREAMS.NLM
    NetWare STREAMS PTF
    Version 6.00.06 4 May 2005
    Copyright 1989-1999 Mentat, Inc. All rights reserved.
    Portions Copyright 1989-2002 Novell, Inc. All rights reserved.
    Module STREAMS.NLM load status OK
    Module NLMLIB.NLM load status OK
    Auto-Loading Module NIT.NLM
    Auto-loading module NIT.NLM
    NetWare Interface Tools Library for NLMs
    Version 5.90.15 10 March 2008
    Copyright (c) 1996-2007 by Novell, Inc. All rights reserved.
    Module NIT.NLM load status OK
    Module CLIB.NLM load status OK
    Auto-Loading Module DSAPI.NLM
    Auto-loading module DSAPI.NLM
    NetWare NWNet Runtime Library
    Version 6.00.04 27 January 2006
    (C) Copyright 1995-2005, Novell, Inc. All rights reserved.
    Patent Pending--Novell, Inc.
    Auto-Loading Module NETNLM32.NLM
    Auto-loading module NETNLM32.NLM
    NetWare NWNet Runtime Library
    Version 6.01.03 26 August 2008
    (C) Copyright 1995-2008, Novell, Inc. All rights reserved.
    Patent Pending--Novell, Inc.
    Auto-Loading Module NCPNLM32.NLM
    Auto-loading module NCPNLM32.NLM
    NetWare NWNCP Runtime Library
    Version 6.01.03 26 August 2008
    (C) Copyright 1995-2008, Novell, Inc. All rights reserved.
    Patent Pending--Novell, Inc.
    Auto-Loading Module CLNNLM32.NLM
    Auto-loading module CLNNLM32.NLM
    NetWare NWClient Runtime Library
    Version 6.01.03 26 August 2008
    (C) Copyright 1995-2008, Novell, Inc. All rights reserved.
    Patent Pending--Novell, Inc.
    Module CLNNLM32.NLM load status OK
    Module NCPNLM32.NLM load status OK
    Module NETNLM32.NLM load status OK
    Auto-Loading Module DSEVENT.NLM
    Auto-loading module DSEVENT.NLM
    NetWare DSEvent Runtime Library
    Version 6.01.03 26 August 2008
    (C) Copyright 1995-2008, Novell, Inc. All rights reserved.
    Patent Pending--Novell, Inc.
    Module DSEVENT.NLM load status OK
    Module DSAPI.NLM load status OK
    Auto-Loading Module CLXNLM32.NLM
    Auto-loading module CLXNLM32.NLM
    NetWare NWCLX Runtime Library
    Version 6.01.03 26 August 2008
    (C) Copyright 1995-2008, Novell, Inc. All rights reserved.
    Patent Pending--Novell, Inc.
    Module CLXNLM32.NLM load status OK
    Module TIMESYNC.NLM load status OK
    NetWare License Policy Manager
    Version 6.27 3 November 2005
    Copyright 1984-2005 Novell, Inc. All rights reserved.
    Module POLIMGR.NLM load status OK
    SAS Data Flow Manager
    Version 27510.02a 25 August 2008
    Copyright 1999-2008, Novell, Inc. All rights reserved.
    All Digitally Signed Objects successfully loaded.
    Security Domain Infrastructure
    Version 27510.02a 25 August 2008
    Copyright 1998-2008, Novell, Inc. All rights reserved.
    All Digitally Signed Objects successfully loaded.
    Setting _admin volume's ID
    Loading module DHOST.NLM
    Novell DHost Portability Interface 1.0.0 SMP
    Version 10010.97 18 September 2006
    Copyright 1999-2006 Novell, Inc.
    DHost Portability Interface loaded successfully.
    Module DHOST.NLM load status OK
    Loading module SPMDCLNT.NLM
    Novell SPM Client for DClient 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Copyright 2003-2008 Novell, Inc. All rights reserved.
    Module SPMDCLNT.NLM load status OK
    Loading module EDIT.NLM
    NetWare Text Editor
    Version 8.00.01 1 May 2006
    Copyright 1989-2006 Novell, Inc. All rights reserved.
    Auto-Loading Module NWSNUT.NLM
    Auto-loading module NWSNUT.NLM
    NetWare NLM Utility User Interface
    Version 7.00.01 11 July 2008
    Copyright 1989-2008 Novell, Inc. All rights reserved.
    Module NWSNUT.NLM load status OK
    Module EDIT.NLM load status OK
    SERVER-5.70-151: Unable to find load file DXEVENT.NLM
    Admin volume startup: error logging the server in = -634
    Unable to verify _admin volume object in eDirectory.
    Loading module CONLOG.NLM
    System Console Logger
    Version 3.01.02 8 August 2006
    (c) Copyright 1992-2002-2006 Novell, Inc. All rights reserved.
    Module CONLOG.NLM load status OK
    CONLOG-3.01-10: System console logging started Fri Jul 3 18:44:30 2009.
    CONLOG-3.01-9: Logging system console to sys:etc\console.log.
    CONLOG-3.01-22: Log file size restricted to 100 kilobytes.
    Loading module SNMP.NLM
    Netware 4.x/5.x/6.x SNMP Service
    Version 4.18 25 July 2006
    Copyright 1995-1999, 2002 Novell, Inc. All rights reserved.
    Auto-Loading Module TLI.NLM
    Auto-loading module TLI.NLM
    NetWare Transport Level Interface Library
    Version 4.30.02 19 December 2000
    Copyright 1989-1992 Mentat, Inc. All rights reserved.
    Portions Copyright 1989-2000 Novell, Inc. All rights reserved.
    Module TLI.NLM load status OK
    Module SNMP.NLM load status OK
    Loading module IPXS.NLM
    NetWare STREAMS IPX Protocol
    Version 4.10.01 12 February 1998
    Copyright 1989-1998 Novell, Inc. All rights reserved.
    Loading module BCALLSRV.NLM
    IPXS-4.10-0022:
    Warning, unable to open default IPX configuration file
    "SYS:ETC\IPXSPX.CFG"; using internal defaults.
    Module IPXS.NLM load status OK
    Backup Call Server MOAB_NDK2
    Version 1.02.01 18 August 1998
    (c) Copyright 1991-1998 Novell, Inc. All Rights Reserved.
    Auto-Loading Module BTRIEVE.NLM
    Auto-loading module BTRIEVE.NLM
    BTRIEVE.NLM v7.90.000
    Version 7.90 21 March 2001
    (c) Copyright Pervasive Software Inc. 1989-2001. All rights reserved.
    Auto-Loading Module NWMKDE.NLM
    Auto-loading module NWMKDE.NLM
    NWMKDE.NLM v7.94.251.000
    Version 7.94 11 December 2001
    (c) Copyright Pervasive Software Inc. 1989-2001. All rights reserved.
    Auto-Loading Module NWUCMGR.NLM
    Auto-loading module NWUCMGR.NLM
    NWUCMGR.NLM v1.5 Build 230
    Version 1.05 14 March 2001
    Module NWUCMGR.NLM load status OK
    User Count Manager
    (c) Copyright 1996-2001, Pervasive Software Inc. All rights reserved
    worldwide.
    Auto-Loading Module PSVCS.NLM
    Auto-loading module PSVCS.NLM
    Portability Services
    Version 251.00 30 November 2001
    Module PSVCS.NLM load status OK
    Auto-Loading Module NWAIF103.NLM
    Auto-loading module NWAIF103.NLM
    nwaif103.nlm v7.94, Build 251 ()
    Version 7.94 30 November 2001
    Module NWAIF103.NLM load status OK
    Auto-Loading Module NWENC103.NLM
    Auto-loading module NWENC103.NLM
    NWENC103.NLM v7.90.000 (Text Encoding Conversion Library)
    Version 7.90 24 February 2001
    Copyright (c) 1999-2001 Pervasive Software Inc.
    Module NWENC103.NLM load status OK
    Pervasive Text Encoding Library successfully loaded.
    NWMKDE-29:
    MicroKernel Database Engine
    (c) Copyright Pervasive Software Inc. 1989-2001
    All Rights Reserved
    Module NWMKDE.NLM load status OK
    BTRIEVE-1:
    Btrieve for NetWare v7.90
    (c) Copyright Pervasive Software Inc. 1989-2001
    All Rights Reserved.
    Module BTRIEVE.NLM load status OK
    Auto-Loading Module CSL.NLM
    Auto-loading module CSL.NLM
    NetWare Call Support Layer For NetWare
    Version 2.06.02 13 January 2000
    (c) Copyright 1991-2000 Novell, Inc. All Rights Reserved.
    Module CSL.NLM load status OK
    Module BCALLSRV.NLM load status OK
    BCALLSRV-1.02-59: BCALLSRV initializing.
    Loading module CNEAMD.LAN
    Novell Ethernet NE1500/2100 and PCnet (ISA, ISA+, PCI, Fast)
    Version 1.39 23 January 1998
    (c) Copyright 1996, 1997, 1998 by Novell, Inc. All rights reserved.
    Auto-Loading Module ETHERTSM.NLM
    Auto-loading module ETHERTSM.NLM
    Novell Ethernet Topology Specific Module
    Version 3.90 20 March 2006
    (C) Copyright 1990 - 2006, by Novell, Inc. All rights reserved.
    Auto-Loading Module MSM.NLM
    Auto-loading module MSM.NLM
    Novell Multi-Processor Media Support Module
    Version 4.12 22 August 2007
    Copyright (c) 1990 - 2007, by Novell, Inc. All rights reserved.
    Module MSM.NLM load status OK
    Module ETHERTSM.NLM load status OK
    Module CNEAMD.LAN load status OK
    Loading module CNEAMD.LAN
    Previously loaded module was used re-entrantly
    Module CNEAMD.LAN load status OK
    Loading module TCPIP.NLM
    Novell TCP/IP Stack - Network module (NULL encryption)
    Version 6.82 20 November 2007
    Copyright 1994-2007 Novell, Inc. All rights reserved.
    Patent pending
    Auto-Loading Module CSLIND.NLM
    Auto-loading module CSLIND.NLM
    TCPIP CSL INDEPENDENCE MODULE 7Dec99 7Dec99
    Version 4.21 7 December 1999
    Copyright 1994-1999 Novell, Inc. All rights reserved.
    Module CSLIND.NLM load status OK
    Auto-Loading Module NETLIB.NLM
    Auto-loading module NETLIB.NLM
    Novell TCPIP NETLIB Module
    Version 6.50.22 12 February 2003
    Copyright 1994-2003 Novell, Inc. All rights reserved. Patent
    pending.
    Module NETLIB.NLM load status OK
    Auto-Loading Module TCP.NLM
    Auto-loading module TCP.NLM
    Novell TCP/IP Stack - Transport module (NULL encryption)
    Version 6.82.04 30 September 2008
    Copyright 1994-2008 Novell, Inc. All rights reserved. Patent
    pending.
    Module TCP.NLM load status OK
    TCPIP-6.82-26: Fri Jul 3 18:44:48 2009
    Will act as a router.
    TCPIP-6.82-27: Fri Jul 3 18:44:48 2009
    RIP is disabled.
    Novell BSDSOCK Module
    Version 6.82 20 November 2007
    Copyright 1994-2007 Novell, Inc. All rights reserved.
    Module BSDSOCK.NLM load status OK
    Module TCPIP.NLM load status OK
    TCPIP.NLM autoloaded TCP.NLMLoading module IPXRTR.NLM
    IPX NLSP Router
    Version 6.81.01 22 April 2008
    Copyright 1994-2008 Novell, Inc. All rights reserved.
    Portions Copyright 1991-2008 D.L.S. Associates.
    Auto-Loading Module A3112.NLM
    Auto-loading module A3112.NLM
    OS Support For NetWare 4.x NLMs
    Version 4.18 25 October 1999
    (c) Copyright 1993-1997, Novell, Inc. All rights reserved.
    Module A3112.NLM load status PUB EXISTS
    Module IPXRTR.NLM load status OK
    Loading module IPXRTRNM.NLM
    IPX Router Network Management
    Version 6.60 24 June 1998
    Copyright 1994-1998 Novell, Inc. All rights reserved.
    Module IPXRTRNM.NLM load status OK
    Timesync: Waiting for TCP/IP to be initialized
    Timesync: TCP/IP initialized. Timesync is loaded with TCP/IP support
    Timesync: IPX is initialized. Timesync is loaded with IPX support
    Time Synchronization has been established
    Loading module VMWTOOL.NLM
    VMware Tools
    Version 1.01 26 July 2007
    Copyright (c) 1998-2007 VMware, Inc. All rights reserved.
    Protected by one or more U.S. Patent Nos.
    6,397,242, 6,496,847, 6,704,925, 6,711,672, 6,725,289,
    6,735,601, 6,785,886, 6,789,156, 6,795,966, 6,880,022,
    6,944,699, 6,961,806 and ...
    Module VMWTOOL.NLM load status OK
    Loading module NW5-IDLE.NLM
    Netware CPU Idler
    Version 1.00.09 26 March 2009
    Module NW5-IDLE.NLM load status OK
    Loading module JAVA.NLM
    java.nlm (based on 1.4.2_18) Build 08101613
    Version 1.43 16 October 2008
    Copyright (c) 2006 Novell, Inc. Portions Copyright (c) 2006 Sun
    Microsystems
    Auto-Loading Module JSOCK.NLM
    Auto-loading module JSOCK.NLM
    Support For Java Sockets (loader)
    Version 1.43 16 October 2008
    (C) Copyright 2000-2006 Novell, Inc. All Rights Reserved
    Module JSOCK.NLM load status OK
    Loading module JSOCK6X.NLM
    Module JAVA.NLM load status OK
    NetWare 6.x Support For Java Sockets (JDK 1.4.2)
    Version 1.43 16 October 2008
    (C) Copyright 2000-2006 Novell, Inc. All Rights Reserved
    Module JSOCK6X.NLM load status OK
    Loading module IPMGMT.NLM
    TCPIP - NetWare IP Address Management
    Version 1.03.01 29 May 2007
    Copyright (C) 2007 Novell, Inc. All Rights Reserved
    Module IPMGMT.NLM load status OK
    Loading module PERL.NLM
    Perl 5.8.4 - Command Line Interface
    Version 5.00.05 13 September 2005
    Copyright (C) 2000-01, 2004-05 Novell, Inc. All Rights Reserved.
    Loading module PERL.NLM
    Auto-Loading Module LIBPERL.NLM
    Auto-loading module LIBPERL.NLM
    Perl 5.8.4 - Script Interpreter and Library
    Version 5.00.05 13 September 2005
    Copyright (C) 2000-01, 2004-05 Novell, Inc. All Rights Reserved.
    Loading module JVM.NLM
    Module LIBPERL.NLM load status OK
    Module PERL.NLM load status OK
    Perl 5.8.4 - Command Line Interface
    Version 5.00.05 13 September 2005
    Copyright (C) 2000-01, 2004-05 Novell, Inc. All Rights Reserved.
    Module PERL.NLM load status OK
    Java Hotspot 1.4.2_18 Interpreter
    Version 1.43 16 October 2008
    (C) Copyright 2003-2006 Novell, Inc. All Rights Reserved.
    Module JVM.NLM load status OK
    Loading module VERIFY.NLM
    Java verify (based on 1.4.2_18)
    Version 1.43 16 October 2008
    Copyright (c) 2006 Novell, Inc. Portions Copyright (c) 2006 Sun
    Microsystems
    Module VERIFY.NLM load status OK
    Loading module JVMLIB.NLM
    Java jvmlib (based on 1.4.2_18)
    Version 1.43 16 October 2008
    Copyright (c) 2006 Novell, Inc. Portions Copyright (c) 2006 Sun
    Microsystems
    Module JVMLIB.NLM load status OK
    Loading module ZIP.NLM
    Java zip (based on 1.4.2_18)
    Version 1.43 16 October 2008
    Copyright (c) 2006 Novell, Inc. Portions Copyright (c) 2006 Sun
    Microsystems
    Fri Jul 3 18:45:13 2009
    Time synchronization has been established.
    Module ZIP.NLM load status OK
    Loading module NILE.NLM
    Novell N/Ties NLM ("") Release Build with symbols
    Version 7.00.01 20 August 2007
    Copyright (C) 1996-2007 Novell, Inc. All Rights Reserved
    Auto-Loading Module NWUTIL.NLM
    Auto-loading module NWUTIL.NLM
    Novell Utility Library NLM (_NW65[SP7]{""})
    Version 3.00.02 20 August 2007
    Copyright (C) 1996-2006 Novell, Inc. All Rights Reserved
    Fri Jul 3 18:45:29 2009
    Time synchronization has been lost after 2 successful polling loops.
    DOSFAT.NSS and/or FATFS.NLM is loaded!
    Module NWUTIL.NLM load status OK
    Auto-Loading Module PKIAPI.NLM
    Auto-loading module PKIAPI.NLM
    Public Key Infrastructure Services
    Version 2.23.10 20 November 2004
    Copyright 1997-2004 Novell, Inc. All rights reserved.
    Module PKIAPI.NLM load status OK
    Auto-Loading Module PKI.NLM
    Auto-loading module PKI.NLM
    Novell Certificate Server
    Version 3.32 25 August 2008
    Copyright 1997-2008 Novell, Inc. All rights reserved.
    Module PKI.NLM load status OK
    Module NILE.NLM load status OK
    Loading module HTTPSTK.NLM
    Novell Small Http Interface
    Version 4.03 4 September 2008
    Copyright 1998-2008 Novell, Inc. All rights reserved.
    Error accessing WinSock Services, ccode = 0x273B
    SERVER-5.70-1553: Module initialization failed.
    Module HTTPSTK.NLM NOT loaded
    Module HTTPSTK.NLM load status INIT FAIL
    Loading module NICISDI.XLM
    Module NICISDI.XLM load status OK
    Loading module SASDFM.XLM
    Module SASDFM.XLM load status OK
    Loading module NFAP4NRM.NLM
    NFAP Simple Password Management NLM
    Version 1.04 8 December 2003
    Copyright 2001-2003 Novell, Inc. All rights reserved.
    Auto-Loading Module SETMD4.NLM
    Auto-loading module SETMD4.NLM
    Windows Native File Access CIFS Library (Build 163 SP)
    Version 2.01 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    Auto-Loading Module NMASGPXY.NLM
    Auto-loading module NMASGPXY.NLM
    NMAS Generic Proxy 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Copyright 2000-2008 Novell, Inc. All rights reserved.
    Module NMASGPXY.NLM load status OK
    Module SETMD4.NLM load status OK
    java: Class APAdminIPConf exited successfully
    java: Class ApacheIPConf exited successfully
    Auto-Loading Module PORTAL.NLM
    Auto-loading module PORTAL.NLM
    Novell Remote Manager NLM
    Version 4.03 22 September 2008
    Copyright 1998-2008 Novell, Inc. All rights reserved.
    java: Class com.novell.application.tomcat.ipconfig.IPConfigUti l exited
    successfu
    lly
    java: Class com.novell.application.tomcat.ipconfig.IPConfigUti l exited
    successfu
    lly
    Auto-Loading Module HTTPSTK.NLM
    Auto-loading module HTTPSTK.NLM
    Novell Small Http Interface
    Version 4.03 4 September 2008
    Copyright 1998-2008 Novell, Inc. All rights reserved.
    Error accessing WinSock Services, ccode = 0x273B
    Module HTTPSTK.NLM load status INIT FAIL
    Auto-Loading Module NWIDK.NLM
    Auto-loading module NWIDK.NLM
    CDWare Volume Module
    Version 3.01.01 19 September 2003
    Copyright 2003 Novell, Inc. All rights reserved.
    Module NWIDK.NLM load status OK
    Module PORTAL.NLM cannot be loaded until HTTPSTK is loaded
    Module PORTAL.NLM load status AUTO FAIL
    Auto-Loading Module HTTPSTK.NLM
    Auto-loading module HTTPSTK.NLM
    Novell Small Http Interface
    Version 4.03 4 September 2008
    Copyright 1998-2008 Novell, Inc. All rights reserved.
    Error accessing WinSock Services, ccode = 0x273B
    Module HTTPSTK.NLM load status INIT FAIL
    Module NFAP4NRM.NLM cannot be loaded until PORTAL is loaded
    Module NFAP4NRM.NLM cannot be loaded until HTTPSTK is loaded
    Error processing External Records.
    Module NFAP4NRM.NLM NOT loaded
    Module NFAP4NRM.NLM load status AUTO FAIL
    Loading module AFPTCP.NLM
    AFPTCP (Build 163 SP)
    Version 2.07 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    Auto-Loading Module WSPDSI.NLM
    Auto-loading module WSPDSI.NLM
    NetWare Winsock Service 1.0 NLM for Data Stream Interface
    Version 6.21.01 25 October 2005
    Copyright 1984-2004 Novell, Inc. All rights reserved.
    Auto-Loading Module WSPIP.NLM
    Auto-loading module WSPIP.NLM
    NetWare Winsock Service 1.0 NLM for TCP and UDP
    Version 6.24 4 December 2007
    Copyright 1984-2007 Novell, Inc. All rights reserved.
    Module WSPIP.NLM load status OK
    Module WSPDSI.NLM load status OK
    Module AFPTCP.NLM load status OK
    Loading module CIFS.NLM
    CIFS Semantic Agent (Build 163 MP)
    Version 3.27 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    Auto-Loading Module VLRPC.NLM
    Auto-loading module VLRPC.NLM
    DFS Volume Location Database (VLDB) RPC interface (Build 163 MP)
    Version 3.27 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    Auto-Loading Module DFSLIB.NLM
    Auto-loading module DFSLIB.NLM
    DFS Common Library (Build 163 MP)
    Version 3.27 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    Module DFSLIB.NLM load status OK
    Auto-Loading Module JSTCP.NLM
    Auto-loading module JSTCP.NLM
    Jetstream TCP Transport Layer (Build 163 MP)
    Version 3.27 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    Patents Pending.
    Auto-Loading Module JSMSG.NLM
    Auto-loading module JSMSG.NLM
    Jetstream Message Layer (Build 163 MP)
    Version 3.27 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    Patents pending.
    Module JSMSG.NLM load status OK
    Module JSTCP.NLM load status OK
    Module VLRPC.NLM load status OK
    The share point "_ADMIN" is now active on volume _ADMIN.
    The share point "SYS" is now active on volume SYS.
    The share point "NW65OS" is now active on volume NW65OS.
    Module CIFS.NLM load status OK
    Loading module CIFSPROX.NLM
    NMAS Proxy for CIFS (Build 163 MP)
    Version 3.27 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    Auto-Loading Module LDAPX.NLM
    Auto-loading module LDAPX.NLM
    NetWare Extension APIs for LDAP SDK (Clib version)
    Version 3.05.01 22 October 2008
    (C) Copyright 1999-2005, Novell, Inc. All rights reserved.
    Module LDAPX.NLM load status OK
    Module CIFSPROX.NLM load status OK
    Loading module NFAP4NRM.NLM
    NFAP Simple Password Management NLM
    Version 1.04 8 December 2003
    Copyright 2001-2003 Novell, Inc. All rights reserved.
    Auto-Loading Module PORTAL.NLM
    Auto-loading module PORTAL.NLM
    Novell Remote Manager NLM
    Version 4.03 22 September 2008
    Copyright 1998-2008 Novell, Inc. All rights reserved.
    Auto-Loading Module HTTPSTK.NLM
    Auto-loading module HTTPSTK.NLM
    Novell Small Http Interface
    Version 4.03 4 September 2008
    Copyright 1998-2008 Novell, Inc. All rights reserved.
    Module HTTPSTK.NLM load status OK
    Module PORTAL.NLM load status OK
    Module NFAP4NRM.NLM load status OK
    Loading module PKI.NLM
    This module is ALREADY loaded and cannot be loaded more than once.
    Module PKI.NLM load status NOT MULTIPLE
    Loading module NLDAP.NLM
    LDAP Agent for Novell eDirectory 8.8 SP4
    Version 20218.11 30 January 2009
    Copyright 1997-2007 Novell, Inc. All rights reserved.
    Module NLDAP.NLM load status OK
    Loading module PSA.NSS
    PSA Posix Semantic Agent (PSA) (Build 163 MP)
    Version 3.27 13 November 2008
    Copyright 1987-2008 Novell, Inc. All Rights Reserved.
    This product includes software developed by the University of
    California, Berk
    eley and its contributors.
    Module PSA.NSS load status OK
    Loading module JAVA.NLM
    This module is ALREADY loaded and cannot be loaded more than once.
    Module JAVA.NLM load status NOT MULTIPLE
    Loading module SCRCB.NLM
    Scripting - LibC-CLib Context Broker
    Version 1.00 3 October 2005
    Copyright (c) 2002-03 Novell, Inc. All Rights Reserved.
    Module SCRCB.NLM load status OK
    Loading module LSSS.NLM
    Novell SecretStore LDAP Extension Manager 3.4.1.2
    Version 3.40 8 August 2008
    Copyright 1998-2008 Novell, Inc.
    U.S. Patent No. 5,818,936
    U.S. Patent No. 7,231,517.
    Auto-Loading Module SSLDP.NLM
    Auto-loading module SSLDP.NLM
    Novell SecretStore LDAP Transport Plugin 3.4.1.2
    Version 3.40 8 August 2008
    Copyright 1998-2008 Novell, Inc.
    U.S. Patent No. 5,818,936
    U.S. Patent No. 7,231,517.
    Auto-Loading Module SSS.NLM
    Auto-loading module SSS.NLM
    Novell SecretStore 3.4.1.2
    Version 3.40 8 August 2008
    Copyright 1998-2008 Novell, Inc.
    U.S. Patent No. 5,818,936
    U.S. Patent No. 7,231,517.
    Module SSS.NLM load status OK
    SSS.NLM: Audit Not Available!
    Loading module APACHE2.NLM
    Cache Refresh Scheduled ...
    SecretStore Service Configuration
    =================================
    SecretStore Service Configuration Cache Enabled...
    Cache Refresh Frequency Set to 30 Minutes...
    Default Policy Object Hierarchy Was Used...
    DN of the SecretStore Policy Object =
    SecretStore.Security
    Master Password Feature Enabled...
    Last Accessed Timestamp Feature Disabled...
    Module SSLDP.NLM load status OK
    SSS.NLM: Audit Log Reporting Not Requested...
    Module LSSS.NLM load status OK
    SecretStore LDAP Service Extensions Loaded...
    Apache Web Server 2.0.63
    Version 2.00.63 25 April 2008
    Copyright 2006 The Apache Software Foundation. Licensed under the
    Apache Licen
    se Version 2.0.
    Loading module NMASLDAP.NLM
    Auto-Loading Module APRLIB.NLM
    Auto-loading module APRLIB.NLM
    Apache Portability Runtime Library 0.9.17
    Version 0.09.17 25 April 2008
    Licensed under the Apache License Version 2.0
    Module APRLIB.NLM load status OK
    Module APACHE2.NLM load status OK
    NMAS LDAP Extensions 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Copyright 2001-2008 Novell, Inc. All rights reserved.
    Module NMASLDAP.NLM load status OK
    Loading module SYSCALLS.NLM
    NetWare Operating System Call and Marshalling Library
    Version 5.61 2 August 2007
    (c) Copyright 1996-2007 Novell, Inc. All rights reserved.
    Loading module LDAPXS.NLM
    SSLDP.NLM: LDAP Service Plugin Available...
    Module SYSCALLS.NLM load status OK
    (Clib version)
    Version 3.05.01 22 October 2008
    (C) Copyright 1999-2005, Novell, Inc. All rights reserved.
    Module LDAPXS.NLM load status OK
    Loading module LBURP.NLM
    Loading module NLSTRAP.NLM
    LDAP Bulkload Update/Replication Protocol service extension for
    Novell eDirect
    ory 8.8
    Version 20215.04 28 August 2008
    Copyright 2001-2002 Novell, Inc. All rights reserved.
    Module LBURP.NLM load status OK
    NetWare License Server Trap
    Version 5.02 19 February 2004
    Copyright 1997-2004 Novell, Inc. All Rights Reserved.
    Loading module SASL.NLM
    Module NLSTRAP.NLM load status OK
    Simple Authentication and Security Layer 3.3.1.0 20081112
    Version 33100811.12 12 November 2008
    Copyright 2002-2008 Novell, Inc. All rights reserved.
    Module SASL.NLM load status OK
    NLSTRAP: Server Name is NW65
    NLSTRAP: Community String set to public
    NLSTRAP: Time Interval set to 10
    Loading module APACHE2.NLM
    Loading in address space ADMINSRV.
    Apache Web Server 2.0.63
    Version 2.00.63 25 April 2008
    Copyright 2006 The Apache Software Foundation. Licensed under the
    Apache Licen
    se Version 2.0.
    Auto-Loading Module APRLIB.NLM
    Auto-loading module APRLIB.NLM
    Loading in address space ADMINSRV.
    Apache Portability Runtime Library 0.9.17
    Version 0.09.17 25 April 2008
    Licensed under the Apache License Version 2.0
    Auto-Loading Module LIBC.NLM
    Auto-loading module LIBC.NLM
    Loading in address space ADMINSRV.
    Standard C Runtime Library for NLMs [optimized, 7]
    Version 9.00.05 3 October 2008
    Copyright (c) 1999-2007 by Novell, Inc. All rights reserved.
    Portions copyright (c) 1980, 1982, 1983, 1986, 1990, 1993 by the
    Regents
    of the University of California (Free BSD) and (c) 1997, 1998 by the
    NetBSD
    Foundation, Inc.
    Module LIBC.NLM load status OK
    Module APRLIB.NLM load status OK
    Module APACHE2.NLM load status OK
    Loading module SMSUT.NLM
    SMS - Utility Library for NetWare 6.X
    Version 1.01.03 26 June 2008
    Copyright (C) 1990-2003, 2005 Novell, Inc. All Rights Reserved.
    Fri Jul 3 18:46:23 2009
    Time synchronization has been established.
    Module SMSUT.NLM load status OK
    Loading module SMDR.NLM
    SMS - Storage Data Requestor
    Version 6.58.01 16 October 2008
    Copyright (C) 1989-95, 2007, 2008 Novell, Inc. All Rights Reserved.
    Module SMDR.NLM load status OK
    Loading module SPXS.NLM
    Loading module TSAFS.NLM
    SMS - File System Agent for NetWare 6.X
    Version 6.53.03 16 October 2008
    Copyright (C) 2002-03, 2008 Novell, Inc. All Rights Reserved.
    Module TSAFS.NLM load status OK
    NetWare SPX/SPXII Protocol (PTF)
    Version 5.14 18 January 2000
    Copyright 1992-1999 Novell, Inc. All Rights Reserved.
    Auto-Loading Module A3112.NLM
    Auto-loading module A3112.NLM
    OS Support For NetWare 4.x NLMs
    Version 4.18 25 October 1999
    (c) Copyright 1993-1997, Novell, Inc. All rights reserved.
    Module A3112.NLM load status PUB EXISTS
    Loading module NISSERV.NLM
    Module SPXS.NLM load status OK
    NetWare NFS - NIS Server
    Version 15.12.02 14 October 2008
    Copyright (C) 1995-2006, Novell, Inc. All Rights Reserved.
    Auto-Loading Module UNICRYPT.NLM
    Auto-loading module UNICRYPT.NLM
    TCP/IP Encryption NLM
    Version 9.11 15 December 1998
    (C) Copyright 1995, Novell, Inc. All rights reserved
    Module UNICRYPT.NLM load status OK
    Auto-Loading Module NDSILIB.NLM
    Auto-loading module NDSILIB.NLM
    NetWare NFS - eDirectory Interface Library
    Version 15.05.01 14 October 2008
    Copyright (C) 1999-2006, Novell, Inc. All Rights Reserved.
    Auto-Loading Module NETDB.NLM
    Auto-loading module NETDB.NLM
    Network Database Access Module
    Version 4.11.05 6 January 2005
    Copyright (C) 1993-2005, Novell, Inc. All Rights Reserved.
    Loading module DSBACKER.NLM
    Loading module JNET.NLM
    NDS Context: O=nwmig
    NetDB Library loaded successfully.
    Module NETDB.NLM load status OK
    Auto-Loading Module NISBIND.NLM
    Auto-loading module NISBIND.NLM
    NetWare NFS - NIS Client Module
    Version 15.02.02 14 October 2008
    Copyright (C) 1995-2006, Novell, Inc. All Rights Reserved.
    Auto-Loading Module PKERNEL.NLM
    Auto-loading module PKERNEL.NLM
    NetWare NFS - Portmapper and RPC Module
    Version 15.01 14 October 2008
    Copyright (C) 1995-2005, Novell, Inc. All Rights Reserved.
    Auto-Loading Module RPCBSTUB.NLM
    Auto-loading module RPCBSTUB.NLM
    NetWare NFS - Portmapper & Rpcbind co-existance Support Module
    Version 15.00.16 14 October 2008
    Copyright (C) 1995-2005, Novell, Inc. All Rights Reserved.
    Module RPCBSTUB.NLM load status OK
    Module PKERNEL.NLM load status OK
    Module NISBIND.NLM load status OK
    Default domain is not set, you need to set it through ypset
    Unable to Login. : error -219. Run schinst -n and try again. If the
    problem stil
    l persists, see the TroubleShooting section of the admin doc.
    Could not authenticate ContextHandle.Run schinst -n and try again. If
    the proble
    m still persists, see the TroubleShooting section of the admin doc.
    Exiting...-2
    19
    Module NDSILIB.NLM load status OK
    Auto-Loading Module NISSWDD.NLM
    Auto-loading module NISSWDD.NLM
    NetWare NFS - NIS Password Management Support Module
    Version 15.02.02 14 October 2008
    Copyright (C) 1995-2006, Novell, Inc. All Rights Reserved.
    Module NISSWDD.NLM load status OK
    NISSERV - Error initializing NDSILIB at startup
    Module NISSERV.NLM load status OK
    Java jnet (based on 1.4.2_18)
    Version 1.43 16 October 2008
    Copyright (c) 2006 Novell, Inc. Portions Copyright (c) 2006 Sun
    Microsystems
    Loading module XNFS.NLM
    Module JNET.NLM load status OK
    Module NDSILIB.NLM is being referenced
    You must unload NISSWDD.NLM before you can unload NDSILIB.NLM
    Loading module PERL.NLM
    Loading module PERL.NLM
    NetWare NFS - NFS Server for NetWare 6.5
    Version 1.04.02 14 October 2008
    Copyright (C) 2002-2008, Novell, Inc. All Rights Reserved.
    Error : NFS services initialization failed during eDirectory interface
    library
    (ndsilib.nlm) initialization - Error Code : 9600. Unloading XNFS.NLM.
    Error : Try running 'schinst -n'. For details refer to Native File
    Access doc
    umentation.
    SERVER-5.70-1553: Module initialization failed.
    Module XNFS.NLM NOT loaded
    Module XNFS.NLM load status INIT FAIL
    Install for Novell eDirectory
    Version 20218.05 1 October 2008
    Copyright (c) 1993-2007 Novell, Inc. All rights reserved.
    Loading module EMBOX.NLM
    Module DSBACKER.NLM load status OK
    Perl 5.8.4 - Command Line Interface
    Version 5.00.05 13 September 2005
    Copyright (C) 2000-01, 2004-05 Novell, Inc. All Rights Reserved.
    Auto-Loading Module LIBPERL.NLM
    Auto-loading module LIBPERL.NLM
    Perl 5.8.4 - Script Interpreter and Library
    Version 5.00.05 13 September 2005
    Copyright (C) 2000-01, 2004-05 Novell, Inc. All Rights Reserved.
    Module LIBPERL.NLM load status OK
    Module PERL.NLM load status OK
    Using CATALINA_BASE: sys:/tomcat/4
    Using CATALINA_HOME: sys:/tomcat/4
    Using CATALINA_TMPDIR: sys:/tomcat/4/temp
    Using JAVA_HOME: SYS:\java
    Doing a start
    java: Class com.novell.application.tomcat.util.tccheck.LDAPVer ifier
    exited succe
    ssfully
    Module DSBACKER.NLM unloaded
    eDirectory Management Tool Box Engine
    Version 20215.23 24 April 2008
    Copyright 2001-2007 Novell, Inc. All rights reserved. Patents
    Pending.
    Auto-Loading Module XIS11.NLM
    Auto-loading module XIS11.NLM
    XML Integration Service
    Version 1.00.03 30 September 2008
    Copyright (c) 1993-2002 Novell, Inc. All rights reserved.
    Module XIS11.NLM load status OK
    Module EMBOX.NLM load status OK
    Perl 5.8.4 - Command Line Interface
    Version 5.00.05 13 September 2005
    Copyright (C) 2000-01, 2004-05 Novell, Inc. All Rights Reserved.
    Module PERL.NLM load status OK
    Using CATALINA_BASE: sys:/tomcat/4
    Using CATALINA_HOME: sys:/tomcat/4
    Using CATALINA_TMPDIR: sys:/tomcat/4/temp
    Using JAVA_HOME: SYS:\java
    Doing a start
    Loading module LANGMAN.NLM
    java: Class com.novell.application.tomcat.util.tccheck.LDAPVer ifier
    exited succe
    ssfully
    Loading module OWCIMOMD.NLM
    Novell Cross-Platform Language Manager
    Version 10210.69 23 April 2008
    Copyright 2001-2003 Novell, Inc. All rights reserved. Patents
    Pending.
    Auto-Loading Module XI18N.NLM
    Auto-loading module XI18N.NLM
    Novell Cross-Platform Internationalization Package
    Version 10310.53 2 August 2005
    Copyright 2001-2003 Novell, Inc. All rights reserved. Patents
    Pending.
    Module XI18N.NLM load status OK
    Module LANGMAN.NLM load status OK
    OpenWBEM CIMOM Daemon with Novell providers
    Version 3.02 27 November 2007
    Copyright (C) 2004 Novell, Inc. Portions Copyright (C) 2000-2004
    Vintela, Inc
    Auto-Loading Module LLDAPSSL.NLM
    Auto-loading module LLDAPSSL.NLM
    NetWare SSL Library for LDAP SDK (LibC version)
    Version 3.05.01 22 October 2008
    (C) Copyright 1999-2005, Novell, Inc. All rights reserved.
    Module LLDAPSSL.NLM load status OK
    Auto-Loading Module LIBGCC_S.NLM
    Auto-loading module LIBGCC_S.NLM
    gcc runtime and intrinsics support
    Version 3.04.03 29 April 2005
    Copyright (C) 1989-2004 Free Software Foundation, Inc.
    Loading module HT2SOAP.NLM
    Module LIBGCC_S.NLM load status OK
    Starting service NetWare Administration Tomcat
    Apache Tomcat/4.1.37-LE-jdk1.4
    Starting service Tomcat-Standalone
    Apache Tomcat/4.1.37-LE-jdk1.4
    Using config file: /system/cimom/etc/openwbem/openwbem.conf
    [1] CIMOM beginning startup
    Module OWCIMOMD.NLM load status OK
    Loading module RCONAG6.NLM
    Fri Jul 3 18:50:17 2009
    Time synchronization has been lost after 8 successful polling loops.
    eDirectory Management Tool Box HTTP to SOAP shim
    Version 20215.23 24 April 2008
    Copyright 2001-2007 Novell, Inc. All rights reserved. Patents
    Pending.
    Module HT2SOAP.NLM load status OK
    RConsole Agent for Netware
    Version 6.11 20 November 2007
    (C) 1995-1998, 2004-2006 Novell, Inc. All rights reserved.
    Auto-Loading Module SAS.NLM
    Auto-loading module SAS.NLM
    Secure Authentication Services
    Version 1.75 13 March 2004
    Copyright 1997-2003 Novell, Inc. All rights reserved.
    Portions Copyright 1996 Terisa Systems, Inc. All rights reserved.
    Loading module EMBOXMGR.NLM
    Module SAS.NLM load status OK
    Module RCONAG6.NLM load status OK
    eDirectory Management Tool Box Manager
    Version 20215.23 24 April 2008
    Copyright 2001-2007 Novell, Inc. All rights reserved. Patents
    Pending.
    Auto-Loading Module EMBOXMSG.NLM
    Auto-loading module EMBOXMSG.NLM
    eDirectory Management Tool Box Message API
    Version 20215.23 24 April 2008
    Copyright 2001-2007 Novell, Inc. All rights reserved. Patents
    Pending.
    Loading module SLPDA.NLM
    Module EMBOXMSG.NLM load status OK
    Module EMBOXMGR.NLM load status OK
    SERVICE LOCATION NDS DIRECTORY AGENT (RFC2165/RFC2608)
    Version 2.13 15 November 2005
    Copyright 1996-2005 Novell, Inc. All rights reserved.
    Loading module RSS.NLM
    NetWare Secure IP Remote Console service registered
    Fri Jul 3 18:50:29 2009
    RCONAG6 LISTEN /dev/ssltcp 172.16.16.57:2036
    Fri Jul 3 18:50:29 2009
    RCONAG6 LISTEN /dev/tcp 172.16.16.57:2034
    Fri Jul 3 18:50:29 2009
    RCONAG6 LISTEN /dev/nspx D5F83F:000000000001:16800
    NetWare IP Remote Console service registered
    Fri Jul 3 18:50:49 2009
    Time synchronization has been established.
    Novell GroupWise WebAccess
    Version 7.0.3
    (C) Copyright 1993-2008 Novell, Inc. All rights reserved.
    <GroupWise WebAccess> WebAccess Servlet is ready for work
    Novell GroupWise WebAccess Spell Checker
    Version 7.0.3
    (C) Copyright 1996-2008 Novell, Inc. All rights reserved.
    Maximum suggestions: 10
    Dictionary path :
    SYS:\Tomcat\4\webapps\gw\web-inf\classes\com\novell
    \collexion\morphology\data
    <GroupWise WebAccess Spell Checker> Spell Servlet is ready for work
    Loading module WPSD.NLM
    Fri Jul 3 18:52:55 2009
    Fri Jul 3 18:53:25 2009
    Time synchronization has been established.
    Fri Jul 3 18:57:16 2009
    RCONAG6 192.168.10.123:2376 Remote console connection granted

    Hello,
    maybe your problem has to do something with loading SLPDA.NLM. If you
    cannot get to open Autoexec.ncf then go back to DOS-Mode, rename this
    file in C:\nwserver-directory and start again. i have seenthis behaviour
    on servers loading SLPDA with no network-communication and they stop
    loading at WPSD.NLM. Try to load SLPD.NLM manually when the server is
    up. After that shift the line in Autoexec.ncf where you want to load
    Slpda.NLM to the end of the file and boot the server again to see what
    happens.
    Good luck
    Burkhard Wiegand
    Netware Admin
    Debeka-Versicherungen
    D-56068 Koblenz

Maybe you are looking for