OCCI leaks under Solaris 8

Server: 9.2
OS: Solaris 8
Compiler: Sun WS 6 Update 2
environment = MUTEXED
Here is a dump from dbx/showmemuse -a
942912 61% 52 18132 my_malloc < kpummapg
286964 18% 7 40994 lxldlod < lxdlobj
148650 9% 1 148650 my_malloc < kpummealloc < kpuiniSG < kpummpin < kpuenvcr < OCIEnvCreate < oracle::occi::Environment::createEnvironment < main
20302 1% 1 20302 lxldlbb < lxlinit < kpummpin < kpuenvcr < OCIEnvCreate < oracle::occi::Environment::createEnvironment < main
18432 1% 9 2048 nlhtnsl < nlhthnew
17776 1% 1 17776 my_malloc < kpummealloc < kpuinit0 < kpuenvcr < OCIEnvCreate < oracle::occi::Environment::createEnvironment < main
11872 <1% 2 5936 calloc < nsgbliuc
10350 <1% 5 2070 calloc < nsbGetBFS
6848 <1% 2 3424 calloc < nsgbliuc
4264 <1% 1 4264 slwmmgetmem < lmmrist < lpminitm < nau_viat < nau_gettab < nau_ini < nainit < nsnainit
4200 <1% 1 4200 calloc < nngsini_init_streams < nncpcin_maybe_init < nnfgiinit < nnfgainit < nnfun2a < nnfsn2a < niqname
3468 <1% 1 3468 lpmrist < lpminitm < nau_viat < nau_gettab < nau_ini < nainit < nsnainit < nsopen
3192 <1% 7 456 calloc < nlemfins
3180 <1% 8 397 calloc < nsmal
2382 <1% 15 158 operator new < std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__getRep
2132 <1% 1 2132 lxlinit < kpummpin < kpuenvcr < OCIEnvCreate < oracle::occi::Environment::createEnvironment < main
1704 <1% 2 852 calloc < nsgbliuc
1704 <1% 2 852 calloc < nsgbliuc
1704 <1% 2 852 calloc < nsgbliuc
1704 <1% 2 852 calloc < nsgbliuc
Environment was created as:
env = Environment::createEnvironment (Environment::THREADED_MUTEXED,0, my_malloc, m
y_realloc, my_free);
my_* functions:
void * my_malloc(void * ctx, size_t len);
void * my_realloc( void * ctx, void * p, size_t len);
void my_free(void * ctx, void *p);
void * my_malloc(void * ctx, size_t len)
return malloc(len);
void * my_realloc( void * ctx, void * p, size_t len)
return realloc(p, len);
void my_free(void * ctx, void *p)
return free(p);
Can't stop this leak! Does anyone have the same problem?
Is there an entry point I can call to do the garbage collection?
It is an obvious leak, I'm surprised Oracle did release
such an obvious bug!
Any help would be appreciated,
Thanks,
Peter

You can find all sorts of useful freeware at: http://www.sunfreeware.com/
You'll find source and binary distributions of gcc at this site along with tons of other stuff.

Similar Messages

  • Compile occi under solaris using g++/gcc problem

    Hi Expert:
    I got some link error when i tried to compile a demo occi code under solaris using g++. Please share experience.
    Thanks.

    Namespaces are not supported in -compat=4 mode. The only effect of -features=namespace is to recognize "namespace" as a keyword, and disallow it as an identifier. You don't actually get namespace semantics.
    The pupose of -compat=4 is to allow code written for C++ 4.x to compile and run until the code can be updated to conform to the C++ Standard. If you want to use features from the C++ standard, like namespaces, you must use Sun C++ in the default standard mode.
    If you remove -compat=4, the code compiles and links. If you need to use -compat=4 mode, remove uses of namespace, and fix the code to remove name conflicts.
    BTW, we recommend against using -features=bool in -compat=4 mode. It can cause odd behavior when part of the code expects boolean expressions to have type int and part of the code expects bool to be a different type.
    It appears you are using C++ 5.0, a product that has been obsolete for several years and which is no longer supported. You should consider updating to Sun Studio 11 (C++ 5.8), at no cost.
    http://developers.sun.com/sunstudio/

  • Memory leak in solaris 9

    Hi ,
    I have Oracle9i database running on Solaris 9. After every 6 days my solaris box went out of space although its a test box and there is no activity on the system. Why the hell it takes all the ram and swap space when there is no activity on the system except Oracle Instance is running with no user connection. What process are running in the background that takes all the memory and i have to restart this box every week. IS THERE ANT PATCH OF MEMORY LEAK FOR SOLARIS9?. I am not a solaris administrator and i have to fix this problem before moving my system to production. I would really appreciate your help.
    Thanks.

    Hi ,
    I have Oracle9i database running on Solaris 9. AfterI have had for some months been running oracle 9i (and 8i) under solaris 9. There have been no problems and the server has been stable.
    It sounds like you may have misconfigured the solaris kernel. It also sounds like your SGA is too large to fit in memory.
    So I guess the first step would be to check the SGA and then the /etc/system file.
    Here is what mine looks like for example:
    SQL> show sga
    Total System Global Area 219644872 bytes
    Fixed Size 730056 bytes
    Variable Size 167772160 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 811008 bytes
    SQL>
    bash-2.05$ tail /etc/system
    set shmsys:shminfo_shmmax=4294967296
    set shmsys:shminfo_shmmin=1
    set shmsys:shminfo_shmmni=100
    set shmsys:shminfo_shmseg=10
    set semsys:seminfo_semmni=100
    set semsys:seminfo_semmsl=256
    set semsys:seminfo_semmns=1024
    set semsys:seminfo_semopm=100
    set semsys:seminfo_semvmx=32767
    bash-2.05$
    bash-2.05$ vmstat
    kthr memory page disk faults cpu
    r b w swap free re mf pi po fr de sr dd dd f0 s0 in sy cs us sy id
    0 0 0 2076240 1302024 0 1 1 0 0 0 0 0 4 0 0 411 92 135 0 1 99
    bash-2.05$
    You need to gather more system information to help you troubleshoot.

  • Again - compilation under solaris - help!

    Hi all
    I'm trying to compile the following test code:
    #include <occi.h>
    #include <iostream>
    using namespace std;
    using namespace oracle::occi;
    int main(int argc, char ** argv)
    Environment *env;
    Connection * conn;
    try{
    env = Environment::createEnvironment();
    conn = env->createConnection(user, pass, sid);
    env->terminateConnection(conn);
    Environment::terminateEnvironment(env);
    } catch (SQLException &e) {
    cout<<"Exception: %s\n", e.getNLSMessage(env).c_str();
    return 0;
    My system is Solaris 9 sparc 64-bit
    Oracle Database 10.1.0.2
    I run this command:
    CC -I/u00/oracle/product/10.1.0/db_1/rdbms/public -L/u00/oracle/product/10.1.0/db_1/lib -locci10 test.cpp
    and get the famous error
    Undefined first referenced
    symbol in file
    void oracle::occi::Environment::terminateEnvironment(oracle::occi::Environment*) test.o
    oracle::occi::Environment*oracle::occi::Environment::createEnvironment(oracle::occi::Environment::Mode,void*,void*(*)(void*,unsigned),void*(*)(void*,void*,unsigned),void(*)(void*,void*)) test.o
    oracle::occi::__RTTI__1nGoracleEocciMSQdDLException_ test.o
    [Hint: static member oracle::occi::__RTTI__1nGoracleEocciMSQdDLException_ must be defined in the program]
    ld: fatal: Symbol referencing errors. No output written to a.out
    I've tried to use:
    gcc 3.4.2
    Sun Forte 6.0
    Sun Forte 6.2
    Sun Forte 7
    Sun Studio 10
    all the same
    if I set LD_LIBRARY_PATH and try to link with *.so library - it gives me "wrong ELF class: ELFCLASS64"
    I've tried to install and use Client 10.2 - no effect
    Under Windows it works perfectly.
    What should I do to make this thing compile under Solaris?
    Message was edited by:
    [email protected]
    Message was edited by:
    [email protected]

    If you want your application to be 32 bit
    - use Sun Forte 6.2 and link with OCCI library under $ORACLE_HOME/lib32
    If you want your application to be 64 bit
    - use Sun Forte 8 and link with libraries under $ORACLE_HOME/lib
    ( You should be passing the 64 bit compile flag "-xarch=v9" )

  • Mozilla under Solaris 10

    hello all,
    I am trying to launch Mozilla 1.7 under Solaris 10 with multiple Java versions, like Java 1.5, 1.4 and 1.6.
    I am not 100% sure but from what I see its not fully supported by Mozilla?
    some behavior patters that I noticed is that Mozilla tend to lock the session against the JRE its running under. so if you started with 1.5
    it will remain under 1.5 until you kill/finish that session..
    could anyone please help with this or if you have any better suggestion?
    thanks a lot
    /ayman

    Not really sure what you are trying to do, but you can get a more recent version at the following
    link. README link has info on install, including java.
    http://www.mozilla.com/en-US/firefox/2.0.0.11/releasenotes/#contributedbuilds

  • Memory leak in solaris 2.5.1

    Hi,
    I have a multithreaded application running under Solaris 2.5.1 , all
    created threads are dettached , but even after i call pthread_exit() function, the allocated memory is not freed up, is it normal ? Solaris only freed up the allocated memory when other program call for this ?or there is another funtion i need to call after pthread_exit() ?
    Regards,

    It looks like i am also facing the same problem with my application . If by some chance you were able to solve this problem do send a mail to [email protected] I just posted the question. while searching the web i found your question which looks similar but not answered. Hope you could give me some input
    Thanks

  • Mount NTFS under Solaris 10

    Hi can anybody tell me if i can mount a NTFS partition under Solaris 10??
    Thanks for ur help.

    <table border="0" align="center" width="90%" cellpadding="3" cellspacing="1"><tr><td class="SmallText"><b>korsabad wrote on Wed, 11 January 2006 06:23</b></td></tr><tr><td class="quote">
    if you use solaris x86 and the ntfs-partition
    Not possible. NTFS has those windows-security-id's (you know, those about-40-character-long-id's) for each object which cannot be read from solaris.
    </td></tr></table>
    I think writing to NTFS is nearly impossible (due to changes of the NTFS version, security stuff, and so on).
    However reading from an <u>unencrypted</u> NTFS partition seems to be a possible thing. I do not know if a tool or a driver <u>already</u> exists but I think it is a possible task to write a tool that reads from NTFS partitions.
    I think writing a tool that reads from UFS partitions under Windows is an easy task, too. I wrote such a tool for reading the EXT2 file system under Windows long time ago.
    Martin

  • Porting of Sybase Application to Oracle 8i under Solaris

    Dear All
    I want to port an application from sybase 10.2 which is running under Solaris to Oracle 8I under Solaris. Apart from database objects and stored procedures which I have already converted I wan to conver some C Codes and Unix Scripts
    Which are either shell scripts or perl programs. I need all of your valuable suggestions in this regard.
    Q-1 . In the Perl Program the following lines are sybase specific
    Use Sybase:: Dblib
    Require /files0/apps/local/lib/perl15/Sybase/sybperl.pl;
    What will be the equivalent for ORACLE.
    Suggest what perl I should use in this context.
    In continuation to the above also I have some shell variables assigned as follows
    $SYB_SERVER=SYB_PROD_CERT;
    $SYB_DATABASE=APPLDB;
    $ENV{SYBASE}=/sybase/10.0.4;
    $ENV{DSQUERY}=$SYB_SERVER
    $SYB_USER=keshav;
    $SYB_PWFILE=/myappl/processcert/passwords/$SYB_SERVER;
    $SYB_PW=/usr/bin/cat $SYB_PWFILE;
    chop($SYB_PW);
    dbmsghandle(message_handler);
    dberrhandle(error_handler);
    ( ($dbproc = &dblogin($SYB_USER,$SYB_PW,$SYB_SERVER)) != -1 );
    ( &dbuse($dbproc, $SYB_DATABASE) != -1 );
    ( ($dbproc2 = &dblogin($SYB_USER,$SYB_PW,$SYB_SERVER)) != -1 );
    ( &dbuse($dbproc2, $SYB_DATABASE) != -1 );
    sub Statistics
    # get distinct sub-cat counts
    ( &dbcmd($dbproc, "select count(*),orgnumber,name=(select servicerorgname from servicer where servicer.orgnumber=transactionlog.orgnumber) from transactionlog group by orgnumber order by count(*) desc\n") != -1 );
    &dbsqlexec($dbproc);
    &dbresults($dbproc);
    $row = DBROWS( $dbproc );
    2. One of the Sample C Program is given here which I want to convert into pro*c.
    I would like to know what are the corresponding libraries of oracle under
    Solaris are to be used and also the respective header files mapping of Sybase
    To Oracle. Any comment of this will be appreciated.
    #include "sql.h"
    #include "unix.h"
    #include <stdlib.h>
    #ifndef SQL_INCLUDED
    #define SQL_INCLUDED
    #include <sybfront.h>
    #include <sybdb.h>
    /*#include "sybdbex.h"*/
    /* #include <syberror.h>*/
    #endif     
    /* LogonToServer(char server[]) */
    /*----------------------------------------------------------------------sra-*/
    DBPROCESS *LogonToServer(char server[], char datab[], char user[],
    char passwd[], char appname[] )
    PCHAR szTemp;
    char data[1000];
    int result;
    long l;
    DBPROCESS *dbp;
    LOGINREC *login;
    /* initiailize library */
    if ( dbinit() == FAIL)
    printf("DB Initialization failed!\n");
    exit(1);
    /* install user supplied error handling and message handling routines*/
    dberrhandle(err_handler);
    dbmsghandle(msg_handler);
    /* get LOGINREC structure and fill */
    login = dblogin();
    DBSETLUSER(login,user);
    DBSETLPWD(login,passwd);
    DBSETLAPP(login,appname);
    /* get a DBPROCESS structure for communicating with the server */
    if ((dbp = dbopen(login,server)) == NULL)
    printf("dbopen failed on server: %s\n",server);
    exit(1);
    dbcmd(dbp,strcat("use ",datab));
    dbsqlexec(dbp);
    result=dbresults(dbp);
    return dbp;
    /* LogoutOfServer() */
    /*----------------------------------------------------------------------sra-*/
    void LogoutOfServer(DBPROCESS *dbproc)
    DBPROCESS *dbp2;
    dbclose( dbproc );
    return;
    int err_handler(DBPROCESS *dbproc,int severity,int dberr,int oserr,
    char dberrstr,char oserrstr)
    if ((dbproc == NULL))
    return(INT_EXIT);
    else
    fprintf(ERR_CH, "DB-LIBRARY error:\n\t%s\n",dberrstr);
    if (oserr != DBNOERR)
    fprintf(ERR_CH,"Operating-system error:\n\t%s\n",oserrstr);
    return(INT_CANCEL);
    int msg_handler(DBPROCESS *dbproc, DBINT msgno, int msgstate, int severity,
    char msgtext,char srvname,char *procname,DBUSMALLINT line)
    return 0;

    Hello
    The "-D_BIG_ENDIAN" shows you that the code is endian-dependent. This means that the program cannot be ported 1:1 because x86 is little endian while Sparc is big-endian.
    I would first try to use "-D_LITTLE_ENDIAN" (or what flag ever I can find in the source codes) and to compile for x86.
    Because of the "-D_BIG_ENDIAN" different source code is used for both machines. Maybe the little-endian source code is wrong:
    #ifdef _BIG_ENDIAN
    // correct source code for Sparc
    #else
    // INCORRECT source code for x86
    #endifMartin

  • How to start ftp under solaris 10

    Hi,
    if I try to enable ftp under Solaris 10, I get the message "unsatisfied dependencies":
    root@u015ad2a:.../>svcadm -v enable -rst svc:/network/ftp:default
    svc:/network/ftp:default temporarily enabled.
    svc:/network/inetd:default temporarily enabled.
    svc:/network/loopback temporarily enabled.
    svc:/system/filesystem/local temporarily enabled.
    svc:/milestone/single-user temporarily enabled.
    svc:/system/identity:node temporarily enabled.
    svc:/system/filesystem/minimal temporarily enabled.
    svc:/system/filesystem/usr temporarily enabled.
    svc:/system/filesystem/root temporarily enabled.
    svc:/system/device/local temporarily enabled.
    svc:/milestone/devices temporarily enabled.
    svc:/system/manifest-import temporarily enabled.
    svc:/milestone/sysconfig temporarily enabled.
    svc:/milestone/name-services temporarily enabled.
    svcadm: Instance "svc:/network/ftp:default" has unsatisfied dependencies.
    root@u015ad2a:.../>svcs svc:/network/ftp:default
    STATE STIME FMRI
    uninitialized 9:40:09 svc:/network/ftp:default
    How can I enable ftp?

    This looks sort of like what happened to me just now. I tried svcs -x
    and got:
    # svcs -x
    svc:/network/rpc/gss:default (Generic Security Service)
    State: uninitialized since Mon Apr 18 13:01:12 2005
    Reason: Restarter svc:/network/inetd:default has not initialized service state.
    See: http://sun.com/msg/SMF-8000-4D
    See: gssd(1M)
    Impact: 10 dependent services are not running. (Use -v for list.)
    svc:/network/service:default (layered network services)
    State: offline since Mon Apr 18 13:01:29 2005
    Reason: Start method is running.
    See: http://sun.com/msg/SMF-8000-C4
    See: ifconfig(1M)
    See: /var/svc/log/network-service:default.log
    Impact: 4 dependent services are not running. (Use -v for list.)
    svc:/application/print/server:default (LP print server)
    State: disabled since Mon Apr 18 13:01:12 2005
    Reason: Disabled by an administrator.
    See: http://sun.com/msg/SMF-8000-05
    See: lpsched(1M)
    Impact: 1 dependent service is not running. (Use -v for list.)
    I tried all kinds of things to get gss to run, but I finally realized that
    it was really ifconfig that was the problem. The system has two
    network interfaces, and during installation I gave both of them
    a name. However, hme1 was not really connected to anything.
    All I did to get it to work was
    # cd /etc
    # mv hostname.hme1 no.hme1
    After that, I rebooted, and everything came up OK. I don't know
    if the original problem was the same, but this solved my problem.

  • Sparc Storag Array 102 needs to run under solaris 10

    I need to get a Sparc Storage Array to run under solaris 10. The soc driver that is needed is not supportted under solairs 10. I took the packages needed off of solari 9 cd and installed them but no luck. I tried to to do a modload and modinfo but it was not there.
    The package loaded a file into /kernel/drv/sparcv9/soc. I have solaris 9 onanother disk on the same system and looked at the system trying to copy and edit the files on 10 but not device paths show up in the system. I copyied a file called soc that was in /kernel/drv/ I edited the /etc/device_aliases and path_to_inst but no good.
    There are no entries in the /devices/ dir that reference the soc path. I do not if than can work but really would like to get this working.

    The fibre interface on that beast is NOT a Gigabit connection,
    such as is common on current systems.
    It was a 100Mbps connection through an array controller,
    running with a 40MHz microSPARC II control module.
    You'd exceed its throughput capabilities in any attempt
    to read or write data at or beyond that 100Mbps rate.
    I don't anticipate much assistance in these forums for a technology that goes back a decade-and-a-half.
    Contributors familiar with products from that era stopped posting in 2006
    when the previous supportforum.sun.com was merged into this one.
    We'll all look forward to your guidance after you succeed.
    You'll teach the rest of us.

  • How to install a LPR Printer under Solaris 10 01/06

    Hi,
    I just installed Solaris 10 01/06 2 days ago and so far I'm pretty impressed, really a nice system!
    I have one problem, though:
    I have a Kyocera FS-1010 printer in my office which is connected to a CNet Printserver.
    I'm able to print from other Linux and *BSD boxes to this printer by using CUPS and adding the Printer as a LPR Printqueue.
    My question is: Is there a way to do the same under Solaris? As far as I know, Solaris doesn't use CUPS as the default printing system, unlike OSX for example.
    Thanks in advance,
    Dominik

    Is there any reason you haven't ftp'd and then configued cups on Solaris?
    http://www.sun.com/bigadmin/content/submitted/install_cups.html
    alan

  • LSI1030 scsi adapter does not work under solaris 10 on t5240 sparc server

    hi all,
    i have following LSI1030 scsi pci-x card in t5240 server with solaris 10u8 ..
    ## prtpicl -v ## director's cut
                             LSILogic,scsi (scsi-2, ad0000061e)
                              :DeviceID      0x8
                              :UnitAddress   8
                              :vendor-id     0x1000
                              :device-id     0x30
                              :revision-id   0xc1
                              :subsystem-vendor-id   0x103c
                              :subsystem-id  0x322a
                              :class-code    0x10000
                              :cache-line-size       0x10
                              :interrupts    00  00  00  01
                              :min-grant     0x10
                              :max-latency   0x6
                              :latency-timer         0x40
                              :devsel-speed  0x1
                              :66mhz-capable
                              :fcode-rom-offset      0xa800
                              :device_type   scsi-2
                              :wide  0x10
                              :version       1.00.38
                              :reg
    00  07  40  00  00  00  00  00  00  00  00  00  00  00  00  00  00  00  00  00
    01  07  40  10  00  00  00  00  00  00  00  00  00  00  00  00  00  00  01  00
    03  07  40  14  00  00  00  00  00  00  00  00  00  00  00  00  00  02  00  00
    03  07  40  1c  00  00  00  00  00  00  00  00  00  00  00  00  00  02  00  00
    02  07  40  30  00  00  00  00  00  00  00  00  00  00  00  00  00  10  00  00
                              :model         LSI,1030
                              :compatible    pci103c,30
                              :assigned-addresses
    81  07  40  10  00  00  00  00  00  00  10  00  00  00  00  00  00  00  01  00
    82  07  40  14  00  00  00  00  05  20  00  00  00  00  00  00  00  02  00  00
    82  07  40  1c  00  00  00  00  05  22  00  00  00  00  00  00  00  02  00  00
    82  07  40  30  00  00  00  00  05  30  00  00  00  00  00  00  00  10  00  00
                              :mpt-version   1.02
                              :firmware-version      1.03.39.00
                              :devfs-path    /pci@500/pci@0/pci@c/pci@0/LSILogic,scsi
                              :binding-name  LSILogic,scsi
                              :instance      -1
                              :_class        scsi-2
                              :name  LSILogic,scsi
    ## prtdiag -v # director's cut
    MB                lsilOGICLSILogic,scsi                     LSI,1030
                            /pci@500/pci@0/pci@c/pci@0/LSILogic,scsi
    ## prtconf -v # director's cut
                        LSILogic,scsi (driver not attached)
                            tape (driver not attached)
                            disk (driver not attached)
    {0} ok probe-scsi-all
    /pci@500/pci@0/pci@c/pci@0/LSILogic,scsi@8
    MPT Version 1.02, Firmware Version 1.03.39.00
    Initiator ID is 7
    Target 3
      Unit 0   Removable Tape     HP      Ultrium 2-SCSI  S63Di am unable to run this controller under solaris 10, is it even possible ??
    regards, daniel
    ps. i did reconfigure reboot and tried to tweak a mpt driver by hand, i also checked a patches for mpt driver ..

    # prtconf -v | grep LSI
                        LSILogic,scsi, instance #0
                                    dev_path=/pci@500/pci@0/pci@c/pci@0/LSILogic,scsi@8:devctl
                                    dev_path=/pci@500/pci@0/pci@c/pci@0/LSILogic,scsi@8:scsi
    # cfgadm -lv c2
    Ap_Id                          Receptacle   Occupant     Condition  Information
    When         Type         Busy     Phys_Id
    c2                             connected    unconfigured unknown
    unavailable  scsi-bus     n        /devices/pci@500/pci@0/pci@c/pci@0/LSILogic,scsi@8:scsi
    # iostat -En ## cut
    rmt/0            Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
    Vendor: HP       Product: Ultrium 2-SCSI   Revision: S63D Serial No:thanks, resolved .. i added this device (mpt "pci103c,30") in /etc/driver_aliases
    regards

  • Problems starting SunMC Agent 3.6 under Solaris 10

    Hi folks,
    I just did a test installation of the new SunMC 3.6 Server which worked fine. Afterwards, I did a fresh install of the 3.6 agent on a Sun Enterprise 420R running Solaris 10. I installed the agent in the global zone.
    At the end of the setup, when the system asks me if I want to start the agent, which I affirmed. But this didn't work, system says just laconically "Could not start agent". Unfortunately, I can't even find the logs, since there is no log subdirectory under /var/opt/SUNWsymon. Have they moved this under Solaris 10?
    Any ideas somebody how to dig into this?
    Regards,
    Peter

    Hi Mike,
    This sounds a lot like a post just a few days ago:
    http://forum.sun.com/thread.jspa?threadID=27785&tstart=0Well, yes and no...I read this thread and I found some similarities but it's not the same problem. Besides, this was Solaris 8, I've 10 and my guess is that it has something to do with Sol10.
    What do you see when you start the Agent with this command:
    /opt/SUNWsymon/sbin/es-start -aiNo error...I end up in a prompt:
    bash-3.00# /opt/SUNWsymon/sbin/es-start -ai
    info Dec 05 17:48:19 agent Sun Management Center Version: 3.6, Build: 18, H491, (c) 2003 Sun Microsystems, Inc.
    info Dec 05 17:48:19 agent registering import actions
    info Dec 05 17:48:19 agent loading standard services
    info Dec 05 17:48:19 agent standard services load complete
    info Dec 05 17:48:19 agent agent host and port: cngaer:1161
    info Dec 05 17:48:19 agent trap handler destination host and port: SunMC_server:162
    info Dec 05 17:48:19 agent event trap destination host and port: SunMC_server:163
    agent:>
    I've really no idea what to enter at this prompt. A simple "help" doesn't give me anything but I got something from "ls"
    agent:> ls
    classes templates _config config services iso shadow contexts rules                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Backup issues (ufsdump/ufsrestore) under solaris 10

    Hello all,
    We are in the process of migrating to Solaris 10 from Solaris 8.
    On our Solaris 8 systems with 2 HDDs we have a script that does a full backup of one disk (slice by slice) on to another using ufsdump/ufsrestore + boot record. The idea is that if one disk becomes corrupt logically/physically we can boot off the backup disk and continue using the system.
    This worked fine under Solaris 8. We tried to do the same under Solaris 10 and noticed some unexpected behaviour when we tried to boot off the backup disk. Solaris 10 started "reconfiguring services" just like it does it when you install the OS fresh with the message:
    Loading smf(5) service descriptions: xx/117
    Somehow Solaris 10 "knew" that it was booted from a different device than last time.
    My question would be: how does Solaris 10 know this and could we "fool" it into thinking that it was always installed on a backup disk, so it doesn't reconfigure itself every time new backup is made (and used).

    "... The real question is "how can I be sure that except smf there is nothing else in the OS affected by HDD change" and that is what I meant..."
    The fact that you use ufsdump on mounted (I am guessing that you are doing so :-) file systems is risky!. Alternatively, you can create snapshots (fssnap(1M)) for the file systems that you are going to ufsdump on.
    If your main aim is to replicate and reduce down time in case of root disk failure, a better solution is make use of mirriong via Solaris Volume Manager (aka SDS or md(7D)). Mirror does not guard against human errors though, such as accidentally deletion of crucial files :-) (which a backup strategy can guard against).
    Hope this helps.
    Regards,
    S.T.Chang

  • Using Solaris 8 drivers under Solaris 10?

    I have a Mylex AcceleRAID 352 SCSI RAID controller card I would like to use under Solaris 10/11. It has drivers for Solaris 8 and is reported to work unofficially under Solaris 9.
    What are the chances this will function reliably under Solaris 10/11? Has the driver format changed appreciably? Can anyone comment on using older drivers in newer versions of Solaris?
    Many thanks for any advice, comments, or tips.
    Regards,
    Andrew

    <i>should I try the big monitor with the 13w3 connector</i>
    Yes, this is the primary output.
    Attach the monitor to the 13W3 output and change the <b>output-device</b> to the integrated video.
    Michael

Maybe you are looking for

  • Runtime error: failed to create delegate view

    hi all, We have two applications in two separate projects. But we can deploy only one at a time. If we deploy the second application (or vice-versa)and try to access the first application, it throws up the following error. P.S. The problem is only wi

  • Can you help to open adobe flash cs6

    Can you help to open adobe flash cs6

  • My phone iPhone 4S doesn't charge

    My iPhone 4S doesn't charge unless I turn it off. I have tried using other cables which hasn't resolved the issue. It has no problem charging to 100% when it's off but it is very inconvenient to have to turn it off to charge the phone.

  • How do I deactivate CS6 from a broken computer?

    I recently built a new PC because my HP All in One mysteriously broke down on me. Now that I have installed CS6 on my new computer Adobe is asking me to deactivate one of the two other computers I had previously installed CS6 on (the other being my w

  • DBCA doesn't save character set information in the template!!

    Hello, I have found a problem using the DBCA when creating a template with a database character set of AL32UTF8. When I create a database using the aforementioned template from the commandline (dbca -silent) it reverts the character set to WE8ISO8859