Named daemon shows as Unused

After patching my OES 2 DSFW server with the current maintenance update
and re-booting, I ran a "xadcntrl validate"
This showed that nameserver BIND was "unused"
I checked "rcnovell-xregd status" and found that it was not running
After manually starting rcnovell-xregd, I was able to start
rcnovell-named. xadcntrl validate showed all running.
I re-booted the system to re-test and still have the problem of
rcnovell-xregd not loading.
Can someone point me in the right direction to find out how to get this
to load automatically
Thanks,
Steve

a) Patched OES 2 SP3 with the december maintenance patch
b) completed this process - no change
c) ulimit -a output
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
file size (blocks, -f) unlimited
pending signals (-i) 16073
max locked memory (kbytes, -l) 32
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 16073
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
d) No change in rc level
Looks like a change was made such that xregd is trying to start before
a dependent service is done
XADCNTRL start also fails with the xregd error
again, once xregd is loaded novell-named loads fine
Steve
akarthikeyan wrote:
>
> Hi Steve,
> We would like to get the clarification for the following
> questions.
>
> a) Which OES to OES did you upgrade ?
> Have you upgraded from OES2 SP1/SP2 to OES2 SP3?
>
> b) If you are upgraded from OES2 SP2 to SP3, then there might be a
> chance that xregd registry corruption.
> Please refer to the following documentation steps to restore the xregd
> registry.
>
> 'Novell Doc: OES 11 SP1: NetStorage Administration Guide for Linux -
> Losing Registry Information After an Upgrade From OES 2 SP2 to OES 2
> SP3'
>
(http://www.novell.com/documentation/...a/by7swl5.html)
>
> c) If the problem continues even after rebuild registry, Please
> provide us output of "ulimit -a" command.
>
> d) Did you change any rc level of the daemon ?
>
>
> Thanks & Regards,
> Karthikeyan.A

Similar Messages

  • Airport Disk Showing only unused space after leopard install

    Now that I have gotten Leopard to recognize the Lacie 500 gig disk attached via USB to the AEBS, it will not show the existing files on the hard drive (400 gig worth), but does show the unused disk space and any new files I have added to the disk recently. Can anyone tell me how to get the entire drive to show up with the existing files? Also, when I "Get Info" on the disk it shows that the disk is 500 gig in size.
    If I hook up the lacie disk via firewire directly to my macbook it works normally.
    Thanks
    Eric

    Go to Finder = Preferences
    "General" icon and check [x] Connected Servers
    I had to reboot to make this work. Your mileage may vary per when the disk icon is visible.

  • Synced (named) TV Shows in the same folder on iPhone 6 Plus

    Strange issue here, not something I have experienced in the past.
    I have a number of training videos that have been placed in to TV Shows within iTunes.
    In the past if I wanted to copy this content to a device (iPhone or iPad Mini Retina) I would simply drag and drop and it would be synced to the device in it's own folder within the Videos app. Even files that were originally in different folders, when deleted and added back to the device would share the same folder making life somewhat difficult.
    Now I don't know if this is IOS 8.2 related or iTunes 12 related but now if I try to sync the same shows back to my devices the files all get placed in to the same gray folder, each show is named the same, each file is named \ numbers correctly as far as episodes is concerned (I even renamed the file directly and numbered it within iTunes instead just to see if that worked).
    This is starting to get a little bit frustrating as these videos could number in the 100's and the last thing I want to do is have to re-name each file so that I can identify the training as well as the subject, some of which are very similar.
    Any one any ideas? I don't want to have to go back to using a 3rd party app as using it this way worked well and prior to IOS 8 I also had thumbnails for each show (which of course now don't show up either).

    Hi TheSimpleDaniel,
    Welcome to the Apple Support Communities!
    If documents on iCloud are not showing on your iOS device, I would recommend reading over and working through the attached article. 
    iCloud: Troubleshooting Documents in the Cloud - Apple Support
    Best regards,
    Joe

  • MAILER-DAEMON shows as sender of spam

    Upon checking my mail queue in Server Admin, I see about 100 messages per day that seem to be sent from my Mailer daemon to spam addresses.
    Are these bounces from my mail server, or is my mail server spamming these addresses? And is there a need to stop them from going out other than manually deleting them every day?
    When I click on such a particular message this is what shows up in "Message Details" window:
    Message ID: 1451D4365D29
    Date: Wed Jan 17 10:33:03
    Size: 6086
    Sender: MAILER-DAEMON
    Recipient(s) & Status:
    [email protected]:
    connect to cashcrazymails.com[63.251.92.195]: read timeout
    Thanks!
      Mac OS X (10.4.7)  

    These are bounces to senders of messages that have been rejected by spamassassin as spam. Because the senders address has been spoofed, your server is not finding an MX record for the domain or some other reason for postfix to queue them up for later attempt.
    Your server will stop trying after 5 days and discard them. This is set by the default postfix option (in main.cf)...
    bouncequeuelifetime = 5d
    You can reduce this if you want but it otherwise doesn't put a lot of work on the server.
    -david

  • Daemon shows "not responding"

    Greetings,
    This problem relates to a previous post where I had GetProcessPID() crashing. Thats been fixed and the program is working flawlessly now. However, now in the activity monitor, my daemon is always showing as "not responding". I've done some research on this and GetProcessPID() is what has made the OS add me to the list of applications that need to be pinged. I have been playing around with CFRunLoop and such but I can't get the message to go away.
    my general program before was:
    void mainControllerLoop() {
    for (;;) {
    dostuff();
    sleep(fiveseconds);
    This is what I thought would fix it:
    void mainControllerLoop() {
    for(;;) {
    dostuff();
    CFRunLoopRunInMode(kCFRunLoopDefaultMode,5.0,false);
    It made no difference.
    Any suggestions?
    Thanks.

    I'm sure there is a good reason not to do this, but I found someone else hacking up the event loop for their own purposes, and managed to twist it to perform how I wanted. If anyone else needs a version of RunApplicationEventLoop() that returns after a definable amount of time, feel free to give this a try. Essentially, you are left with, void RunApplicationEventLoopTimed(void), which processes an application event loop for the number of seconds defined by MACPOLLDELAY, then returns. Its accuracy in this version is pretty low, but it can be improved by changing timeToWaitForEvent to a smaller value. It would never be worthy of setting your watch to though, as the actual time the function takes before returning depends on the messages it processes and if any of them block for awhile.
    This fits into my program that is just an infinite loop of dosomething() and wait5seconds(); and seems to process messages properly.
    #define MACPOLLDELAY 5.0
    static EventHandlerUPP gEventLoopEventHandlerUPP; // -> EventLoopEventHandler
    static pascal OSStatus EventLoopEventHandler(EventHandlerCallRef inHandlerCallRef,
    EventRef inEvent, void *inUserData)
    OSStatus err;
    OSStatus junk;
    EventHandlerRef installedHandler;
    EventTargetRef theTarget;
    EventRef theEvent;
    EventTimeout timeToWaitForEvent;
    static const EventTypeSpec eventSpec = {kEventClassApplication, kEventAppQuit};
    time_t start;
    time_t end;
    time(&start);
    // Run our event loop until quitNow is set.
    theTarget = GetEventDispatcherTarget();
    do {
    timeToWaitForEvent = 0.5;
    err = ReceiveNextEvent(0, NULL, timeToWaitForEvent,
    true, &theEvent);
    if (err == noErr) {
    (void) SendEventToEventTarget(theEvent, theTarget);
    ReleaseEvent(theEvent);
    time(&end);
    } while ( difftime(end,start)<MACPOLLDELAY );
    // Clean up.
    junk = RemoveEventHandler(installedHandler);
    QuitApplicationEventLoop();
    static void RunApplicationEventLoopTimed(void)
    static const EventTypeSpec eventSpec = {'KWIN', 'KWIN' };
    OSStatus err;
    OSStatus junk;
    EventTargetRef appTarget;
    EventHandlerRef installedHandler;
    EventRef dummyEvent;
    dummyEvent = nil;
    // Create a UPP for EventLoopEventHandler and QuitEventHandler
    // (if we haven't already done so).
    err = noErr;
    if (gEventLoopEventHandlerUPP == nil) {
    gEventLoopEventHandlerUPP = NewEventHandlerUPP(EventLoopEventHandler);
    if (gEventLoopEventHandlerUPP == nil) {
    err = memFullErr;
    if (err == noErr) {
    err = InstallEventHandler(GetApplicationEventTarget(), gEventLoopEventHandlerUPP,
    1, &eventSpec, nil, &installedHandler);
    if (err == noErr) {
    err = MacCreateEvent(nil, 'KWIN', 'KWIN', GetCurrentEventTime(),
    kEventAttributeNone, &dummyEvent);
    if (err == noErr) {
    err = PostEventToQueue(GetMainEventQueue(), dummyEvent,
    kEventPriorityHigh);
    if (err == noErr) {
    RunApplicationEventLoop();
    junk = RemoveEventHandler(installedHandler);
    // Clean up.
    if (dummyEvent != nil) {
    ReleaseEvent(dummyEvent);
    Message was edited by: Coffeehouse2008

  • Cleanup Wizard shows no unused content files deleted

    WINDOWS 2008 SERVER / wsus Server Version 3.2.7600.251 / I've run the Wizard several times over the past couple of weeks and it never deleted any unused content files / doesn't seem right  ....any ideas?

    WINDOWS 2008 SERVER / wsus Server Version 3.2.7600.251 / I've run the Wizard several times over the past couple of weeks and it never deleted any unused content files / doesn't seem right  ....any ideas?
    Yep. You need to do update approval maintenance first.
    See
    Removing unneeded update approvals for additional info.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • How do you battle multiple iTunes accounts on iPad? Mine is showing old/unused and my wife's account and not showing mine! Any ideas???

    Every time i try to update apps my iTunes account will not appear only my old one and my wife's. I can't figure out how to fix this can anyone hel???

    Apps are associated with the iTunes account used when purchasing/downloading the app from the iTunes Store. If you are both using the same iTunes Library for syncing there can only be one copy of the app in the library. When you update an app you need to provide the password for the account associated with the app.
    Your options are:
    1. Live with having the mix of accounts on your iPad.
    2. Separate iTunes libraries for each of you, with your own purchased/downloaded apps.
    3. Use only one iTunes account for both of you. This requires redownloading/repurchasing the apps under the one account.
    You can see which account is associated to an app by selecting the app in iTunes on a computer and choosing Get Info from the File menu. The details are in the Summary tab.

  • Named Set doesn't show aggregated values in excel while browsing

    Hi All,
    I have create a named to show Top 20 Clients Alphabetical. When I browse the named set, it is not showing aggregated values in the below.You can see in the image.
    Named Set Expression: 
    FILTER(
         Order
    ([Client].[Client].members,[Measures].[ACCOUNT RANK],BASC),
                  [Measures].[ACCOUNT RANK] > 0
                  AND [Measures].[ACCOUNT RANK] < 21)
    After reading blogs, I found I have to add ALLMEMBERS function inorder to show aggregated values in excel while browsing.
    http://prologika.com/CS/blogs/blog/archive/2009/01/27/named-set-subtotals-in-excel.aspx
    I implemented and some of them working fine but this is not working. Not sure what's happening.
    Modified Named Set Expression:
    FILTER(
         Order
    ([Client].[Client].allmembers,[Measures].[ACCOUNT RANK],BASC),
                  [Measures].[ACCOUNT RANK] > 0
                  AND [Measures].[ACCOUNT RANK] < 21)
    Please let me know, what else I can do to fix this issue. Thanks in advance and appreciate for reply.
    Maruthi...

    Hi Maruthi you just need a simple change in the Query .
    You need to include the All level and try using TopCount() function instead of the sequential FILTER/ORDER
    Try this,
    {TopCount
    [client].[client].allMembers
     ,20
    ,[Measures].[AccountRank]
    ),[client].ALL};
    Venkata Koppula

  • Adove Acrobat 9 Pro. - Named Destinations

    I have a word document created to make Named Destinations when it is printed to pdf (using tags like: {PRINT "[ /Dest /Formname/DEST pdfmark" \* MERGEFORMAT} ).
    When printing to pdf using Acrobat 7 and 8 the Named Destinations show up in the pdf perfectly.  When printing to pdf using Acrobat 9 the Named Destinations do now show up at all.
    I've tried playing around with the Acrobat 9 settings but have had no luck.  Any help would be appreciated.
    Thanks in advance!

    The Mac users need to use Adobe Reader to fill in the forms instead of the Mac Preview application that comes' with the Mac.

  • Copying TV shows from external hardrive to laptop?

    I use an external hard drive as my main iTUNES library. If I download TV shows, can I copy them to my laptop iTUNES library?
    If so, how?
    Thanks.

    Yes. You can simply connect your ext hd and drag the files over. You may have to find them again when playing them from iTunes because it will expect them in the old location. I would do this rather than changing the location of your iTunes folder within iTunes. Pain in the butt. However, simly dragging and dropping will work fine if you just want to be able to take the shows with you. You could even just create a new folder on the desktop, drag and drop the files then double-click the episode you want to watch.
    Just remember that EVERYTHING in your iTunes music folder is organized the same way. They are in a folder named TV Shows, within your iTunes Music folder (IF you have chosen to keep your iTunes folder organized. And if you haven't, shame on you. )
    Good luck!

  • Reporting of unused customer master data

    Hy experts.
    I have to fulfil one issue: There should be many unused/redundant customer master data on our system.
    Do anyone knows an report, which shows all unused/unbooked customers?
    I have tried RFDUML00 and set the flag "accounts w/o sales", this would work. But one big issue, it doesn't consider archived bookings.
    Thanks a lot
    best regards
    Roland

    Thanks for your answer, but there is still a question open...
    We have 25000 customers with about 1.000.000 postings in BSID and BSAD. If I would run FBL5N I would get a very long list of all postings. Beside this, how can I match this list with the list of all customers?
    The solution would be a generated list with one sum per customer. If I would have such a list, it won't be a problem to compare this with the list of all customers in Excel. But up to now, I do not find any list, which would offer this information for all years.
    Regards
    RoBr

  • MS Excel "Database Daemon" Running at Startup

    Looking for some help.
    I recently ran MS Excel for the first time on my Mac Mini Intel Core Duo. Since that time, each time I start up my mac the "Database Daemon" seems to be running in the background. I check the activity manager and it appears everytime.
    Does anybody have any idea (1) what that is to being with and (2) how I can spot that from automatically running up boot?

    I had the same problem on a Mac Mini, the mini would not go to sleep and after hours with Apple tech support we discovered this program was in my account login items. Deleted it from the login items and everything was find. I had no problem with Excel, the Database Daemon will start when you run Excel.
    I am not a expert at this however it worked on my Mac Mini and now on my iMac. Try apple support and see if they can give you some advice.
    One note, it is not in my login items now and I just ran Excel before replying and the Database Daemon show up in my activity monitor. When I shut down Excel the Daemon stopped running.
    Again look for other advice before using anyone source for information.

  • Faces show many unnamed and asking for ID with no pics?

    I show many unnamed faces and many are named without showing the picture. When I select it, it show many pics in the folder but no pic on the folder - just a question asking if this ???
    I went in to the pic folder and selected a pic asking that it use this but nothing happens. Are these faces folder corrupt and/or how do I get the pics showing on the folder?

    No idea what you are asking
    As starters in iPhoto pictures are never in folders - folders hold albums ro othr folders - you can view photos in events or albums and selecting a folder does display all of the photos in all of the albums in the folder
    So none of you post makes sense
    Re read it and think about how someone who does not see your or your computer could understand the question
    And BTW - we also need details like the version of iPhoto and of the OS
    LN

  • Index Unusable

    Guys,
    I am getting an Index Unusable error. When I check for the status of that respective index it shows as 'unusable'.
    Please suggest me if there is any other way by which I can make its status back to 'valid' again
    Thanks

    One way would be:
    ALTER INDEX index_name REBUILD

  • Iscsi lun (devise/disk)naming issue

    disk naming issue ,showing two different names in format and powermt output
    in format the emc lun pseudo name comes as emcpower0d
    in powermt o/p Pseudo nameas emcpower0a
    bash-3.2# echo|format
    Searching for disks...done
    c7t0d0: configured with capacity of 599.98GB
    c7t1d0: configured with capacity of 599.98GB
    c7t2d0: configured with capacity of 599.98GB
    c7t3d0: configured with capacity of 599.98GB
    emcpower0d: configured with capacity of 599.98GB
    AVAILABLE DISK SELECTIONS:
    0. c0t5000CCA0258D2994d0 <SUN600G cyl 64986 alt 2 hd 27 sec 668> solaris
    /scsi_vhci/disk@g5000cca0258d2994
    1. c0t5000CCA025923A9Cd0 <SUN600G cyl 64986 alt 2 hd 27 sec 668> solaris
    /scsi_vhci/disk@g5000cca025923a9c
    2. c7t0d0 <DGC-RAID5-0223 cyl 61438 alt 2 hd 256 sec 80>
    /iscsi/[email protected]%3Acx.fcnmm123301003.b10004,0
    3. c7t1d0 <DGC-RAID5-0223 cyl 61438 alt 2 hd 256 sec 80>
    /iscsi/[email protected]%3Acx.fcnmm123301003.b00002,0
    4. c7t2d0 <DGC-RAID5-0223 cyl 61438 alt 2 hd 256 sec 80>
    /iscsi/[email protected]%3Acx.fcnmm123301003.a10003,0
    5. c7t3d0 <DGC-RAID5-0223 cyl 61438 alt 2 hd 256 sec 80>
    /iscsi/[email protected]%3Acx.fcnmm123301003.a00001,0
    6. emcpower0d <DGC-RAID5-0223 cyl 61438 alt 2 hd 256 sec 80>
    /pseudo/emcp@0
    Specify disk (enter its number): Specify disk (enter its number):
    bash-3.2# powermt display dev=all
    Pseudo name=emcpower0a
    CLARiiON ID=FCNMM123301003 [tnpmsun4.persistent.co.in]
    Logical device ID=6006016002053200401C39F6320DE211 [tnpmsun04_vol]
    state=alive; policy=CLAROpt; queued-IOs=0
    Owner: default=SP A, current=SP A Array failover mode: 1
    ==============================================================================
    --------------- Host --------------- - Stor - -- I/O Path -- -- Stats ---
    ### HW Path I/O Paths Interf. Mode State Q-IOs Errors
    ==============================================================================
    4608 iscsi c7t2d0s0 SP A1 active alive 0 0
    4608 iscsi c7t3d0s0 SP A0 active alive 0 0
    4608 iscsi c7t1d0s0 SP B0 active alive 0 0
    4608 iscsi c7t0d0s0 SP B1 active alive 0 0
    is their any issues or can i ignore it???
    else is tehir any way to make both names common?
    Thanks

    Partition report and zpool create
    Partition table as report:
    partition> print
    Current partition table (default):
    Total disk cylinders available: 2558 + 2 (reserved cylinders)
    Part Tag Flag Cylinders Size Blocks
    0 root wm 0 0 (0/0/0) 0
    1 swap wu 0 0 (0/0/0) 0
    2 backup wu 0 - 2557 5.00GB (2558/0/0) 10477568
    3 unassigned wm 0 0 (0/0/0) 0
    4 unassigned wm 0 0 (0/0/0) 0
    5 unassigned wm 0 0 (0/0/0) 0
    6 usr wm 0 - 2557 5.00GB (2558/0/0) 10477568
    7 unassigned wm 0 0 (0/0/0) 0
    root@email-test-v440:/# zpool create luminis_pool c5t64d0s6
    cannot open '/dev/dsk/c5t64d0s6': I/O error

Maybe you are looking for

  • New to ASM, need pointers

    Just took a new job. Shop has some of the DB's on ASM. This is the first time I've had to deal with it, so am starting my reading with the 2-Day DBA and the Admin Guide. Does anyone have any recommendations for other reading to get me up to speed. Be

  • Form Personalization on PO Header

    Hi, Could you let me know how to implement below functionality using form personalization. User Logs in PO Responsibility => Query PO (If this PO has value in Attribute10) => In this case, I have to make sure the User can't update the PO. User Logs i

  • Interplant sub-contracting scenario

    hi, how to set-up inter-plant sub-contracting. from plant-1 materials will be sent to plant 2. In plant -2 processing will be done and send back the finished goods along with scrap if any to plant-1. pl explain the scenario in detail - step by step (

  • Macbook Pro 2011 clamshell mode broken by latest software update?

    After installing the latest MacBook Pro software update and EFI update through Software Update in the evening May 4, I am unable to enter clamshell mode any more. It used to work before. After waking up in the clamshell mode, the machine promptly goe

  • RoboHelp Server 8 -- can it run on LINX

    We're a Linx shop. Can we run RoboHelp Server 8 on it.  It says Windows. However, Tomcat and Apache can run on Linx so why can't RoboHelp Server 8?