Ciscoworks/Sun Solaris issues command

Our Ciscoworks on Solaris always issues commands rusersd to other servers, here is an example to server02, which should not happend. the server itself has nothing to do with ciscoworks.
Can you please tell me why it is issuing this? and how to stop it?
10.Y.Y.101 is the Ciscoworks server,
thanks, Han
Here is one of them:   X.X.100.117  Server02
Here are a couple log entries from :
May  6 12:08:29 Server02 portmap[8173]: connect from 10.Y.Y.101 to getport(rusersd): request from unauthorized host
May  6 16:36:20 Server02 portmap[8479]: connect from 10.Y.Y.101 to getport(rusersd): request from unauthorized host

Not sure about solaris. Various strings of netstat on sof appliance (Linux) work for me. Here showing first connections to my remote workstation IP (192.168.150.137) and then identifying the responsible process (CSCO.Apache server) as what is listening on that port:
[SecLab-LMS/root-ade ~]# netstat -anp | grep 150.137tcp        0      0 192.168.100.121:443         192.168.150.137:22015       TIME_WAIT   -                  [SecLab-LMS/root-ade ~]# netstat -lntp | grep CSCO | grep 443tcp        0      0 0.0.0.0:443                 0.0.0.0:*                   LISTEN      1160/CSCO.Apache   tcp        0      0 :::44300                    :::*                        LISTEN      30305/CSCO.UPMProcetcp        0      0 :::44301                    :::*                        LISTEN      30305/CSCO.UPMProce[SecLab-LMS/root-ade ~]#

Similar Messages

  • Application Migration from HP-UNIX to SUN Solaris

    Hi Gurus,
    Need help on the application migration from HP-UNIX to Sun Solaris . Copied the filesystems APPL_TOP, OA_HTML, OA_JAVA, COMMON_TOP/util and COMMON_TOP/_pages from SOURCE( HP) to TARGET SUN-solaris as per 238276.1
    Now trying to clone Autoconfig XML context file on the TARGET System
    perl adclonectx.pl migrate java=\opt\java1.4 \
    contextfile=\ul01\app\applmgr\lasrx\admin\LASRX_fiapd4.xml
    Error: source context file ul01appapplmgrlasrxadminLASRX_fiapd4.xml does not exist.
    Questions:
    ======
    1. we still need to install jdk in the TARGET or copy the file system from source(HP) to target( Solaris) bring the JDK and how to check jdk on Solaris?
    2. In clone autoconfig XML, contextfile=? Is the location of SOURCE or TARGER?
    3. I think running above with root permission.
    Please help somebody on this issue.
    Thank You.

    Hi Hussein,
    I need your help on the Application migration from HP-UNIX to SUN Solaris. As per the note 238276.1 we dont copy $806_ORACLE_HOME for cross platform migration, Copied all the filesystem from SOURCE to TARGET but rename it because it suppose to create while installing Middle tier.
    Issue:1
    =====
    When i start to set environment like below, i get the error and
    . /ul01/app/applmgr/lasrx/APPSORA.env
    ksh: /ul02/app/oracle/lasrx/8.0.6_new/LASRX_fiapd4.env: not found
    I am trying to install Middle Tier Technology Stack on SUN server ( Migrating from HP-UNIX to SUN solaris)
    Issue 2: ( Display error) while install Tech Stack
    =====
    ./rapidwiz -techstack
    Rapid Install Wizard is validating your file system......
    >> Wizard requires the DISPLAY variable to be set.
    >> Please set your DISPLAY variable and restart Rapid Install Wizard.
    even i can not see
    echo $DISPLAY because not set the environment.
    Need your help and suggetions on this.
    Thank You.

  • Disable commands BUG under Sun-Solaris 10 ?

    <p>If you execute a disable commands while another user is justdoing a "force restructure",</p><p>you got no error and the command "display application"shows the command-flag with false.</p><p> </p><p>But every user can still execute a "force restructer",even if the user log in later.</p><p> </p><p>This behaviour occurs under OS=Sun Solaris with essbase Version9.2.0.1,</p><p>under windows with essbase version 9.2 Build 082 it worksfine.</p><p> </p><p>Is this a known BUG ?</p>

    I can't help you solaris tuning, but some things to look at.
    1. Is the Essbase.cfg file the same on both servers? You might have parallel calculation turned on in one and not the other. Caches could also be set differently
    2. Are the database caches set the same? This could impact performance as well
    3. Are you doing an apples to apples comparison? Is one database loaded and recalculated many times while the other is not (or restructured or reloaded)

  • Sun JVM Performance Issue in Sun Solaris 10 (SPARC)

    Hi,
    Issue : Performance issue after the migration of a Java application from IBM-AIX 5 to Sun Solaris 10 (SPARC)
    I am facing performance issue after the migration of a Java application from IBM-AIX 5.3 to Sun Solaris 10 (SPARC).
     Normally the application takes less than 1 hour to complete the process in AIX, but after migration in Solaris the application is taking 4+ hours.
    The Java version of IBM AIX is ,
    java version "1.5.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build pap32dev-20051104)
    IBM J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3 AIX ppc-32 j9vmap3223-20051103 (JIT enabled)
    The Java version of Solaris 10 is,
    Java(TM) Platform, Standard Edition for Business (build 1.5.0_17-b04)
    Java HotSpot(TM) Server VM (build 1.5.0_17-b04, mixed mode)
    Description of Application
    The application merges 2 XML files of size 300 MB each using DOM Parser and generates flat file according to certain business logic.No remote files are using for the file generation. There are two folders and around 200 XML file in each folders of similar names. The application loads 2 similar XML file at a time from each folder and Processes. Same way, the application processes all the 200 XML file pairs using loop.
    The JVM Parameters are given below.
    /usr/java5/bin/java -cp $CLASSPATH -Xms3072m -Xmx3072M com.db.mcc.creditderiv.GCDXMLTransProc
    Here the extended swap memory in AIX is 3072 (3GB). After copying the same tode to Solaris, the
    application started throwing java.lang.OutofMemoryError. So that we have increased the swap memory up to 12 GB.
    Since 32bit Java allows maximum 4 GB extended memory we started using 64 Bit Java in Solaris using -d64 argument.
    The Current JVM Parameter in Solaris is given below.
    java -d64 -cp $CLASSPATH -Xms8192m -Xmx12288m com.db.mcc.creditderiv.GCDXMLTransProc ( 64 GB Swap Memory is available in the System)
    We have tried the following options
    1.       Extended heap size up to 12 GB using -xms and -xmx parameters and tried multiple -XX options. Earlier the application was working fine in AIX with 3.5 GB extended heap size. ( 64 GB Swap Memory is available in the System)
    2.       Downloaded and installed the Solaris SPARC Patches from the website,
         http://java.sun.com/javase/downloads/index_jdk5.jsp
    4.   Downloaded and installed XML and XSLT patch from sun website
    5.       Tried to run the Java in server mode using -server option.

    A 64 bit VM is not necessarily faster than a 32 bit one. I remember at least on suggestion that it could be slower.
    Make sure you use the -server option.
    As a guess IBM isn't necessarily a slouch when it comes to Java. It might simply be that their VM was faster. Could have used a different dom library as well.
    Could be an environment problem of course.
    Profiling the application and the machine as well might provide information.

  • Performance issue EP on Sun Solaris

    Hi All,
    I have a EP NW04 SR1 installation on Sun solaris 5.9 machine , single CPU. When i stop the EP server , the idle time on the server shoots up to 98%. On the r other hand when i run "startsap" ( the server is just starting) , the idle time comes down to 0%.
    Are there any parameters to be tuned on the Sun Solaris.
    Because even with no users logged on, the idle time is almost 0%.
    Pasting a output of the vmstat command.
    Regards
    PN
    kthr      memory            page            disk          faults      cpu
    r b w   swap  free  re  mf pi po fr de sr s0 s6 s7 s8   in   sy   cs us sy id
    0 0 0 6098056 603680 42 974 328 0 0  0  0  0  0  0  0  441  556  374 72 24  3
    0 0 0 6098040 597320 36 80 370 0  0  0  0  0  0  0  8  480 2526  582 88  7  4
    0 0 0 6098024 596800 77 107 143 0 0  0  0  0  0  0  2  445 1321  528 89  7  3
    1 0 0 6098024 594520 69 106 223 0 0  0  0  0  0  0  2  446  856  443 91  8  1
    0 0 0 6098024 596280 17 633 100 0 0  0  0  0  0  0  2  442  788  423 84 15  1
    4 0 0 6098024 582304 15 314 28 0  0  0  0  1  0  0  2  428 1284  432 79 20  1
    1 0 0 6097960 581720 87 104 796 0 0  0  0  0  0  0 14  466 3379  659 86  7  7
    0 0 0 6097896 581544 82 125 462 0 0  0  0  0  0  0 16  519 3639  723 78 14  7
    0 0 0 6097896 581384 29 87 271 0  0  0  0  1  0  0  2  505  985  404 92  5  2
    1 0 0 6097856 581128 33 64 107 4  4  0  0  0  0  0  4  449 1342  340 96  4  0
    0 0 0 6097824 573552 16 518 52 8  8  0  0  1  0  0  5  433  674  330 86 14  0
    1 0 0 6097824 572656 16 40  8  0  0  0  0  0  0  0  3  414 1762  541 96  4  0
    2 0 0 6097752 572336 8  49 72  4  4  0  0  0  0  0  1  437 1176  555 93  7  0
    2 0 0 6097376 570176 25 60 215 0  0  0  0  0  0  0  2  473 1337  560 92  8  0
    4 0 0 6097368 572080 37 70 163 0  0  0  0  0  0  0  2  457 1219  521 94  6  0
    21 0 0 6097368 571896 8 36 64  0  0  0  0  0  0  0  0  426 1734  594 93  6  0
    18 0 0 6097368 570608 83 103 64 0 0  0  0  1  0  0  2  433 1327  464 88 11  0
    2 0 0 6096936 566680 6 480 48  0  0  0  0  3  0  0  2  428  807  486 86 14  0
    1 0 0 6096448 562640 16 49 56  0  0  0  0  0  0  0  2  422 1982  465 98  2  0
    Message was edited by: Portal Newbie

    Hi ,
    I have noticed that if the end users are working on Portal, the performance seems to be fine.
    If i log on to as an ADMIN and go to PCD , or try to change a role or attach a role, then the performance goes down and the amount of idle time goes to zero.
    Any idea what parameters can be set to fine tune this ?
    Regards
    PN

  • Sun Solaris 10,Upgrade 8 or higher,having issues with VxFS,for Oracle 11gr2

    A while ago, we tried doing a prototype upgrade of our main Oracle 10g db to Oracle 11gr2.
    The OS on which our Oracle 10g is running is Sun Solaris 10, upgrade 4.
    According to Oracle 11gr2 documentation, we need Sun Solaris 10, upgrade 6 or higher for Oracle 11g2.
    The filesystem we are using is VxFS, Veritas File System.
    According to our system administrator, we had issues , making Sun Solar 10, upgrade 8 , work with the VxFS filesystem.
    I was wondering if anybody is running Oracle 11g2 on Sun Solaris 10 upgrade 6 or higher with VxFS file system.
    At present, our Oracle db upgrade project is on a hold, because of the above issue. So your help on this , can really help us in figuring out if there is an issue between VxFS filesystem and Sun Solaris 10 OS.
    Thanks
    Ashish

    Hi Ashish,
    We are not running Veritas Cluster file system.
    We tried moving our Oracle 10g r2 db on ZFS ,before doing the upgrade and performance on ZFS was worst.
    ZFS has certain memory parameter setting. If you did not configure that then ZFS will eat your complete system memory.
    My system administrator, has gotten a copy of Solaris 10 upgrade 9 and will try that with VxFS.
    I was curious to find out if folks are running Oracle 11g on Sun Solaris 10 with VxFS file system and if they had experienced any issue.If you can Install Vxfs on Oracle Soalris 10 U9, then according to me there sholudn't be any limitations for an oracle database.
    Recently i installed Oracle database 11.2.0.2 on one of my test server. I have created two databases - one on ZFS and another on ASM.
    Refer:
    http://appsdbaworkshop.blogspot.com/2010/10/installation-of-11202-on-oracle-solaris.html
    We dont have any performance issues. We are testing it for the performance benchmarks on both of the filesystem.
    If you can Install Vxfs on Oracle Soalris 10 U9, then according to me there sholudn't be any limitations for an oracle database.
    Regards,
    X A H E E R

  • Issue wit hthe installation on Unix Sun solaris

    Hello,
    We are doing a fresh installation on Unix sun solaris Sparc 64 bit
    I have downloaded the software and when i was trying to invoke RunInstaller i am getting the following error message and this is regarding Display
    Error Message :
    Checking Temp space: must be greater than 250 MB. Actual 66655 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 66889 MB Passed
    Checking monitor: must be configured to display at least 256 colors
    >>> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed <<<<
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,at which time they will be rechecked.
    we didnt actually have any licensed version of xterm or any other Display unit.
    As this is a test server i am working i was looking for free software which also supports ssh and work as a Display tool.
    Note: This should support ssh.
    Would appreciate any help.
    Thank You

    See this thread - installing the 11g database via putty
    HTH
    Srini

  • PCC-S-02014 error while compiling with in Sun Solaris

    We are porting our application from HP-UX to Sun Solaris and as part of that I am trying the compile a Pro*C program in Sun Solaris using SUNWspro C++ compiler. Precompiling is failing with following error.
    PRECOMP set: /u01/app/oracle/product/10.2.0/bin/proc dbms=native code=cpp mode=ansi include=/u01/app/oracle/product/10.2.0/precomp
    ireclen=255 oreclen=255
    define=__sparc define=__SUNPRO_C include=/usr/include include=. include=/u01/app/SUNWspro/prod/include/CC/stlport4 include=/u01/app/oracle/product/10.2.0/rdbms/public/ include=/u01/app/oracle/product/10.2.0/network/public/ include=/u01/app/oracle/product/10.2.0/rdbms/demo/ errors=yes select_error=no
    sqlcheck=limited ltype=NONE
    release_cursor=no hold_cursor=no
    Pro*C/C++: Release 10.2.0.3.0 - Production on Thu Dec 18 03:09:59 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    System default option values taken from: /u01/app/oracle/product/10.2.0/precomp/admin/pcscfg.cfg
    Syntax error at line 44, column 30, file /u01/app/SUNWspro/prod/include/CC/stlport4/algorithm:
    Error at line 44, column 30 in file /u01/app/SUNWspro/prod/include/CC/stlport4/a
    lgorithm
    # include STLPNATIVE_HEADER(algorithm)
    .............................1
    PCC-S-02014, Encountered the symbol "(" when expecting one of the following:
    : [ ] + / . .. an identifier, a numeric constant, newline,
    define, elif, else, endif, error, if, ifdef, ifndef, include,
    line, pragma, undef, exec, sql, begin, end, var, type,
    oracle, an immediate preprocessor command, a C token, create,
    function, package, procedure, trigger, or, replace,
    Normal C++ files are getting compiled with out eny issues. This particular file is having functions written in C fashion. Any idea what is missing in the compiler option.
    regards
    Vinu

    Hi Vinu,
    I'm not sure if this is still an issue for you. When I have encountered issues like this with Pro*C I have ended up specifying parse=none to the proc command and then putting all declarations between "EXEC SQL BEGIN DECLARE SECTION" and "EXEC SQL END DECLARE SECTION" markers. I have also moved any "special" declarations into a specific header file and then placed the "#include <special header file>" inside the declare section as well.
    Perhaps that will help a bit,
    Regards,
    Mark

  • JavaMail from Sun Solaris

    Ok, I am fairly new to Java. I am trying to send a simpole mail from our Sun Solaris box. With perl or shell I use the malix program. How do I get java to envoke the same program, or is it even possible. If not, is there a default SMPT mail program that comes with Sun Solaris that I can use as the name for the following code:
    props.put("mail.smtp.host", smtpServer);
    Session session = Session.getDefaultInstance(props, null);
    Any help would be greatly appreciated.

    What u can do is to envoke a class that uses props.put("mail.smtp.host", smtpServer);
    here is the class file:
    package com.classes.homepage;
    import java.io.IOException;
    import java.io.PrintStream;
    * Class for sending mail to given email address.
    * It is a wrapper of the sun.net.smtp.SmtpClient class which is not documented.
    * This way, all public methods of this and the subordinated classes are accessible.
    * <p>
    * <p><b>Known Bugs:</b>
    * @see #startMessage()
    * @version $Revision: 1.4.1.3 $ of $Date: 2000/10/06 21:10:46Z $
    * @author $Author: Garry Labana
    public class testSendMail extends sun.net.smtp.SmtpClient
    //++++++++++++++++++++++++++++++++++
    // static
         /** SMTP mailhost: Default = "mailhost" */
         protected static String MAILHOST="mailhost";
         public static void setMailHost( String _sMailHost)
              MAILHOST = _sMailHost;
    //++++++++++++++++++++++++++++++++++
    // public
         * Constructor:
         * To create a new mail object with a connection to the MCBS default mailhost
         * which is by default read from the application properties (DbProperties + Ini files)
         * The respective property is called 'MAILHOST' with the default value
         * "mailhost".
         * @exception IOException indicates problems when establishing connection
         *                                    to the mailhost
         public testSendMail() throws IOException
              this( MAILHOST );
         * Constructor:
         * To create a new mail object with a connection to the specified mailhost.
         * @param sMailhost     the server name of the SMTP mailhost
         * @exception IOException indicates problems when establishing connection
         *                                    to the mailhost
         public testSendMail( String sMailHost ) throws IOException
              super( sMailHost );
         * To send the mai applying the specified parameters.
         * @param sFrom          the mail address of the sender
         * @param sTo          the mail address of the addressee
         * @param sCC          optional addressee for CC
         * @param sSubject     optional mail subject (title bar, ref.)
         * @param sMessage     the actual message. It can have multiple lines
         *                          using the line feed character '\n'.
         * @exception          IOException in case of problems when sending the mail
         public static void sendMail( String sFrom, String sTo, String sCC,
                                            String sSubject, String sMessage )
              throws IOException
              testSendMail rMail = new testSendMail();
              rMail.from( sFrom );
              rMail.to( sTo );
              PrintStream rMailOut = rMail.startMessage();
              // Important: no println but + "\n", as otherwise problems with Unix mail prog.
              // and Netscape
              rMailOut.print( "From: "+ sFrom +"\n" );
              rMailOut.print( "To: " + sTo + "\n" );
              if( sCC != null ) rMailOut.print( "CC: " + sCC + "\n" );
              rMailOut.print( "Subject: "+( sSubject == null ? "Message Content" : sSubject )+"\n" );
              // Important: line feed in front of message as otherwise 'Text:' will be
              // interpreted as token
              rMailOut.print("\n" + sMessage );
              rMail.closeServer();
         * issue the QUIT command to the SMTP server and close the connection.
         public void closeServer() throws IOException {
              super.closeServer();
         public void to(String s) throws IOException     {     super.to( s );     }
         public void from(String s) throws IOException     {     super.from( s );     }
         * This class implements the SMTP client. You can send a piece of mail by
         * creating a new SmtpClient, calling the "to" method to add destinations,
         * calling "from" to name the sender, calling startMessage to return a stream
         * to which you write the message (with RFC733 headers) and then you finally
         * close the Smtp Client.
         public PrintStream startMessage() throws IOException {
              return super.startMessage();
    } // class testSendMail

  • Sun solaris user set process

    Hi friend;
    Need your help one more time. I will make instalaltion on Sun can you show me path how i can set user source limit in Sun Solaris Sparc(didnt learn yet their version,still waiting response) ,
    How i can do those?
    X Display Server
    For x display i will use this right:
    rpm -qa vnc << if this exist i will run
    vncserver -depth 24 -geometry 1280x1024 ( do i need to say service vncserver start or something like that?)
    Set umask 022 :
    Set 'ulimit' Parameters as 'unlimited' : (Using Korn Shell)
    Should i set them where and how?
    The following command will display the current ulimit settings :
    I should set those for root,applmgr and oramgr, if i follow below i just set them for session right? If yes how i can set those value permanently?
    $ ulimit -a
    time(seconds) : unlimited
    file(blocks) : unlimited
    data(kbytes) : 131072
    stack(kbytes) : 2048
    memory(kbytes): 216272
    coredump(blocks) : unlimited
    nofiles(descriptors) : 4096
    vmemory(kbytes) : 1048576
    Set all of them as unlimited as follows :
    ulimit -t unlimited
    ulimit -f unlimited
    ulimit -d unlimited
    ulimit -s unlimited
    ulimit -m unlimited
    ulimit -c unlimited
    ulimit -n unlimited
    ulimit -v unlimited
    =================================================
    Section 5: Additional Steps for Sun SPARC Solaris
    =================================================
    Make sure /usr/ccs/bin, /usr/bin and /bin appear in the $PATH before /usr/ucb.
    The 'tr' should be coming from the /usr/bin directory instead of /usr/ucb.
    If that is the case, modify your $PATH as follows :
    /usr/bin:/usr/ccs/bin:/usr/sbin/:usr/ucb
    I will use echo $PATH if those are not exist in path what i should type?
    Thanks a lot

    Hi,
    vncserver -depth 24 -geometry 1280x1024 ( do i need to say service vncserver start or something like that?)Yes, or make sure that Xserver is up and running. As root user, issue "xclock" to verify.
    Should i set them where and how?You already have the commands posted above (set all of them as unlimited).
    Make sure /usr/ccs/bin, /usr/bin and /bin appear in the $PATH before /usr/ucb.
    The 'tr' should be coming from the /usr/bin directory instead of /usr/ucb.
    If that is the case, modify your $PATH as follows :
    /usr/bin:/usr/ccs/bin:/usr/sbin/:usr/ucb
    I will use echo $PATH if those are not exist in path what i should type?$ export PATH=<directory name>:$PATH
    Regards,
    Hussein

  • MUT-03010 during installation on SUN solaris

    Hi,
    I am trying to install a 4.7 system with DB2 on a Sun Solaris server.
    In the database installation on u201CDB2 UDB update database configuration before loadu201D stage, I keep getting the following error:
    ERROR      2008-07-22 13:49:09
               CJSlibModule::writeError_impl()
    MUT-03010  Execution of the command "db2 -tvf update_db_cfg.sql -r update_db_cfg.res -z update_db_cfg.out" finished with status TST_ERROR.
    I couldnu2019t find any reference to this issue anywhere.
    I tried dropping the database & restarting but that didnu2019t help.
    Thanks for your help.
    Yoav Zilberman

    Hi Yoav,
    SQL1390C  The environment variable DB2INSTANCE is not defined or is invalid.
    please check your environment settings.
    The SAP processes will find the DB2 CLI libraries either through
    (1) >= 7.00 kernel only
    /usr/sap/<SID>/global/db6/                ( default path for DB2 CLI driver )
    (2)
    DB2INSTANCE = db2<dbsid>            ( DB2 runtime client )
    In this case the instance directory ~$DB2INSTANCE/sqllib  needs to exist .
    (3) >= 7.00 kernel only
    DB2_CLI_DRIVER_INSTALL_PATH    ( CLI driver path )
    If none of those can be applied. The libraries may be found using the LD_LIBRARY_PATH .
    In this case the libraries can be loaded but the message files can not be found and every SQL error results in SQL10007N .
    Regards
                   Frank

  • Portal Installation Problem on Sun Solaris

    Hi,
    I'm trying to Install portal (Oracle 9i AS ) on Sun Solaris 2.8 (64 bit). I have followed all the steps and installer show successfull installation. But when I'm trying to check the installation thru web browser, I'm not getting anything. It is not able to load portal. Please let me know do I need to start any listener or anything else.
    What else should I do to check the mistakes because I have installed it twise but no luck.
    Thanks.
    Sandeep

    I am having the same problem installing on Windows 2000. I looked at the services that were installed and two of the ones that were marked as Automatic did not start when I rebooted. They are:
    OracleiSuitesHTTPServer
    OracleOraHome81TNSListener
    I also tried to start the HTTP server from the command line but got the following error:
    D:\Oracle\iSuites\Apache\Apache>apache
    Syntax error on line 14 of D:\Oracle\iSuites\Apache\Apache\conf\mod__ose.conf:
    AuroraService - directive already in effect for this Server
    If anyone has a solution please let me know. I had a hard enough time trying to get through the installation at all.
    Thanks,
    -Stephanie
    null

  • Oracle 10g R2 installation on sun solaris 10 Sparc machine

    Hi there,
    I encountered the following problem during oracle 10g R2 installation on sun solaris 10 Sparc machine
    Error encountered:
    Using paramFile: /u01/Oracle/10gr2_db_sol/install/oraparam.ini
    Checking installer requirements...
    Checking operating system version: must be 5.8, 5.9 or 5.10. Actual 5.10
    Passed
    Checking Temp space: must be greater than 250 MB. Actual 2266 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 2335 MB Passed
    Checking monitor: must be configured to display at least 256 colors Failed <<<<
    >>> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set.
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,at which time they will be rechecked.
    Continue? (y/n) [n]
    The following were the steps taken before encountering the above error
    1. logged into a workstation
    2. From its xterm terminal I logged to the oracle server via ssh oracle@ip
    3. keyed in the following at the command prompt
    DISPLAY=machine_name:0.0; export DISPLAY
    4. executed the following from the command prompt
    ./runInstaller
    Note: when executing the ./runInstaller, the preinstallation checking just hangs at Checking monitor: must be configured to display at least 256 colors. But the log file shows it failed during preinstallation checking as shown in Error encountered
    Please help me with this problem.
    Thank you
    Ravindran Kanniah

    It is because of UNIX shell. I also faced this error during installation.
    First check your shell by the following command.
    $ echo $SHELL
    Then select the below.
    For csh shell
    $ setenv DISPLAY 192.168.1.128:0.0
    $ export DISPLAY
    For sh,ksh and bash
    $ DISPLAY=192.168.1.128:0.0
    $ export DISPLAY
    After you do this check the value of DISPLAY variable.
    $ echo $DISPLAY
    If the DISPLAY variable is set then run ./runInstaller.
    One advice: Keep a complete log of your terminal session. This will help you in future :)
    -aijaz

  • Mod-JK compilation on Sun Solaris 10 (SPARC)

    HI,
    Can any one help me for sucessful compilation of tomcat-connector-1.2.26-src i.e mod-jk on sun solaris platform 10 sparc
    server.
    I followed below steps
    ./configure --with-apxs=/usr/apache2/bin/apxs
    make
    in make this gives following error:
    Making all in common
    Making all in apache-2.0
    /bin/bash /var/apache2/build/libtool silent mode=link /opt/SUNWspro/bin/cc -I/usr/apache2/include -g -O2 -DUSE_APACHE_MD5 -I ../common -I /include -I /include/unix -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xO3 -xarch=v8 -xspace -W0,-Lt -W2,-Rcond_elim -Xa -xildoff -xO4 -DSSL_EXPERIMENTAL -DSSL_ENGINE -DHAVE_APR -I/usr/share/src/apache2/srclib/apr/include -I/usr/share/src/apache2/srclib/apr-util/include -g -O2 -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 `/usr/apache2/bin/apxs -q LDFLAGS` -o mod_jk.la -module -rpath /usr/apache2/libexec -avoid-version mod_jk.lo ../common/jk_ajp12_worker.lo ../common/jk_connect.lo ../common/jk_msg_buff.lo ../common/jk_util.lo ../common/jk_ajp13.lo ../common/jk_pool.lo ../common/jk_worker.lo ../common/jk_ajp13_worker.lo ../common/jk_lb_worker.lo ../common/jk_sockbuf.lo ../common/jk_map.lo ../common/jk_uri_worker_map.lo ../common/jk_ajp14.lo ../common/jk_ajp14_worker.lo ../common/jk_md5.lo ../common/jk_shm.lo ../common/jk_ajp_common.lo ../common/jk_context.lo ../common/jk_url.lo ../common/jk_status.lo
    ld: fatal: file .libs/mod_jk.o: open failed: No such file or directory
    *** Error code 1
    make: Fatal error: Command failed for target `mod_jk.la'
    Current working directory /opt/tomcat-connectors-1.2.26-src/native/apache-2.0
    *** Error code 1
    The following command caused the error:
    failcom='exit 1'; \
    for f in x $MAKEFLAGS; do \
    case $f in \
    *=* | --[!k]*);; \
    k) failcom='fail=yes';; \
    esac; \
    done; \
    dot_seen=no; \
    target=`echo all-recursive | sed s/-recursive//`; \
    list='common apache-2.0'; for subdir in $list; do \
    echo "Making $target in $subdir"; \
    if test "$subdir" = "."; then \
    dot_seen=yes; \
    local_target="$target-am"; \
    else \
    local_target="$target"; \
    fi; \
    (cd $subdir && make $local_target) \
    || eval $failcom; \
    done; \
    if test "$dot_seen" = "no"; then \
    make "$target-am" || exit 1; \
    fi; test -z "$fail"
    make: Fatal error: Command failed for target `all-recursive'

    The only thing I can really suggest is to scan your log files to see if the building of this object failed earlier on.
    Thanks
    Prashanth

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

Maybe you are looking for

  • Need Help in opening a Link or URL

    Hi, I need help in opening a URL (on the same server where CLM application is deployed). I have added a Button on ToolBar and added the code. but it's not working. the same java program is working on my local system. below is the code. import java.io

  • Windows 8 does not remember secondary SATA hard drive letter

    So, I bought an HP Pavilion with a 1TB HDD with Windows 8 installed. I burned the recovery disks, wiped the 1TB (Seagate) drive and installed a 250GB (WD) drive. I installed the WD as the primary boot and OS, and formatted the Seagate as a basic driv

  • Hot Hot Hot. My Powerbook is hot and the fan never turns on!

    Hi, I downloaded the istat pro widget in order to monitor the heat and fan on my Mac. Currently the CPU top is 141 F and the CPU bottom is 140 F. The front and rear fan are not on and it seems like they should be. When are the fans set to turn on...

  • Nodes on 8.0.1

    Hi all, Anyone got Nodes working on 8.0.1 OK? It worked for me on 8.0 but I hadn't tested it under 8.0.1 until today. Main machine: Mac Pro Quad 2.66 GHz 8GB Node machine: Mac Mini Core 2 duo 2 GHz 2GB Both at 10.5.2 Logic 8.0.1 Logic Node 8.0.1 Ethe

  • Deploying consumes a lot of memory on WLS (latest version)

    I have a server with the latest version of WLS. It has the complete webcenter suite installed so it runs the adminServer with 3 managed servers. I have to do lots of deployments on that server and i notice that every time i deploy, the memory usage g