Versioning of shell scripts in Sun Solaris 9? (ident-string)

Dear all,
I have got a question about the versioning of shell scripts (e.g. start/stop scripts) in Sun Solaris 9:
In every shell script I can find an information-"header" like ' ident "@(#)<name_of_script> <version> <date> SMI" '. Is this an "sun internal" or ist there a versioning-database or something else on Sun Solaris? If yes, is there a way to check in my own shell script there?
Best Regards,
Alex....

That's a Sun internal revision control string. However, that doesn't prevent you from setting-up your own RCS (or CVS) archive for maintaining customizations. You can add your own RCS tags and check them into an archive. You can get RCS and CVS from http://www.sunfreeware.com/ .
HTH,
Roger S.

Similar Messages

  • Xgettext for perl and shell scripts on Solaris 9

    Hi......I have to internationalized perl and shell scripts on Linux and Solaris 9.
    I have used gettext on linux to internationalized both perl and shell scripts but on solaris i m not able to
    achieve the same.
    If we see help of xgettect on Linux, it shows input file options for Perl, Shell, C, C++ etc but help for
    xgettext on Solaris shows input file option for C only.
    Can you please provide me some way of using xgettext for perl and shell scripts on Solaris 9 or
    is there any other way of internationalizing perl and shell scripts on Solaris 9.
    Many Thanks,
    Lokesh

    Signature link blocked.
    db
    Contentprise wrote:
    Hi......I have to internationalized perl and shell scripts on Linux and Solaris 9.
    I have used gettext on linux to internationalized both perl and shell scripts but on solaris i m not able to
    achieve the same.
    If we see help of xgettect on Linux, it shows input file options for Perl, Shell, C, C++ etc but help for
    xgettext on Solaris shows input file option for C only.
    Can you please provide me some way of using xgettext for perl and shell scripts on Solaris 9 or
    is there any other way of internationalizing perl and shell scripts on Solaris 9.
    Many Thanks

  • Unable to compile in unix sun solaris 8

    hi,
    I am also facing same issue. I have installed latest version of JRE (6u7) in Sun solaris 8 x64 bit (SPARK Processor). when I try to see java version (./java -version). it gives following error.
    ld.so.1: ./java: fatal: libjli.so: open failed: No such file or directory Killed
    thanks in advance
    Edited by: sabarishrl on Oct 16, 2008 1:55 PM

    reinstall jdk, issue solved.

  • RMAN errors sent to shell script calling RMAN sequence?

    Hello,
    I have a Korn shell script run on Solaris as the root user that launches RMAN sequences similar to this one:
    #!/bin/ksh
    su - oracle -c "export ORACLE_SID=ORCL; rman target / << !
    <rman sequence>
    I am wondering if there is a way to catch the RMAN errors in the shell script?
    If I call SQLplus instead of RMAN, I can use "whenever sqlerror exit sql.sqlcode" and I will retrieve the error code in the shell script from $? - can I do such a thing with RMAN?
    Thank you,
    Adrian

    You could capture the return code *$?* from your RMAN script and if it returns anything other than 0, then you could grep the RMAN log for errors and/or query
    V$RMAN_OUTPUT after the RMAN script executes.

  • Shell scripts encryption

    Hi
    We have many shell scripts running on Solaris 9/10 OS. We need to encrypt them so nobody would be able to read them. I tried "Shell guard fstsg", able to create binary executable but execution of binary file fails sometimes. So, thought SHC (shell script compiler) would do for me but getting errors while compiling and install the SHC source code on solaris.
    If anyone succeeded installing shc on solaris, please provide me with procedure.
    It would be great if i could get SHC binaries for Solaris or any other solution.
    Please advise.
    Thanks
    Prvn

    Let me guess - you have passwords embedded in your scripts?
    Creating an executable from a shell using some 3rd party tool probably won't give you any protection at all, since the password will still be in "plain text" in the data segment of the executable.
    And you obviously cannot execute encrypted code.
    Your best bet is to reexamine your authentication policies and use something more secure than a scripted password, like SSH public key authentication.

  • Parameter  to shell script using Runtime.exec(string)

    Hi all, ( Speciall hi to dheeraj tak )
    Briefly : How do i pass an arguement to a non - java executible being called using Runtime.exec.
    In detail : i am using Runtime.exec to call a shell script : The code is as follows:
    String callAndArgs[] = {"/home/tom/jakarta-tomcat-4.1.24/webapps/dash/script.sh"};
    try {
    Runtime rt = Runtime.getRuntime();
    Process child = rt.exec(callAndArgs);
    This works properly & calls the shell script which in turn invokes some other executible (c file).
    $HOME/midi/test/build/bin/<C-EXECUTIBLE>
    Here i am specifying the name (say hello.exe ) . So far so good.
    I want to make this happen dynamiclaly. so i need to pass the name of the executible as a parameter to the script.
    To pass a parameter i hav to change the string to :-
    String callAndArgs[] = {"/home/tom/jakarta-tomcat-4.1.24/webapps/dash/script.sh <C-EXECUTIBLE HERE>"};
    and the script to
    $HOME/midi/test/build/bin/$1 --- where $1 refers to argument 1. (C-EXECUTIBLE AGAIN).
    This is giving an IO - Execption. Plz help
    Code will be very helpful.
    Thanx in advance

    some 1 plz tell me the difference :-
    This is the documentation of Runtime.exec that i found :-
    1> exec
    public Process exec(String command) throws IOException
    Executes the specified string command in a separate process.
    The command argument is parsed into tokens and then executed as a command in a separate process. This method has exactly the same effect as exec(command, null).
    Parameters:
    command - a specified system command
    Complete refernce says : Process (String progName) ----- Executes a program specified by programname as a seperate process.
    2> exec
    public Process exec(String cmdarray[]) throws IOException
    Executes the specified command and arguments in a separate process.
    The command specified by the tokens in cmdarray is executed as a command in a separate process. This has exactly the same effect as exec(cmdarray, null).
    Parameters:
    cmdarray - array containing the command to call and its arguments.
    Complete reference says : Process exec(String comLineArray[]) ---- Executes the command line specified bythe string in comLineArray as a seperate process.
    This means that there is provision 4 command line arguments...
    how do u use it then????????????????????????????

  • Complicated Do Shell Script

    I am trying to get the following script to work but I am running into all kinds of errors in the curl and grep. Anyone know how to get this to work? Thanks.
    set the_Script to "curl --silent \"http://xml.weather.yahoo.com/forecastrss?p=USKS0159&u=f\" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/
    //' -e 's///' -e 's/<\/b>//' -e 's/
    //' -e 's/<description>//' -e 's/<\/description>//' "
    set the_Weather to do shell script (the_Script)
    display dialog the_Weather as string

    1) You need to escape the escape character (\) with another escape character.
    2) It doesn't seem to like the return in your substitute command, so you can use n to represent the newline.
    3) The search strings are also case sensitive, so I tweaked the <BR /> tag, although it looks like there are a few unnecessary terms in there (such as the empty substitution command).
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFD891;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    set the_Script to "curl --silent \"http://xml.weather.yahoo.com/forecastrss?p=USKS0159&u=f\" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/\\n//' -e 's/<b>//' -e 's/<[bB][rR] \\/>//' -e 's/<\\/b>//' -e 's/<description>//' -e 's/<\\/description>//' "
    set the_Weather to do shell script (the_Script)
    display dialog the_Weather as string
    </pre>

  • Determine Sun Ray DTU model in a shell script

    I have a need to identify the Sun Ray DTU model in a shell script. In particular, I need to distinquish a Sun Ray DTU from an OVDC instance. I'm collecting location information from the user and I don't care about OVDC so I want to not as the question in that case.

    Hi
    You can try utdesktop -Lc or -Lg, and if any come up with a MAC address
    starting with 00144f, then it's very very likely to be a Sun Ray 2/2FS/270.
    It's possible other units will register as that, but we haven't seen any
    here. Not a surefire way to say, but it might be good enough.
    Even better, you can do a
    /opt/SUNWut/sbin/utfwload -Ha
    on each of your SRSS and see a similar output like:
    DISP User IP Address Model.Mac Firmware Version
    11.0 ???? x.x.x.x P8-FS.00144fa80ef3 GUI4.2_77_2009.10.19.17.01
    11.1 ???? x.x.x.x P8.00144f0e9d75 GUI4.2_77_2009.10.19.17.01
    12.0 ???? x.x.x.x P8.00144f0e9d73 GUI4.2_77_2009.10.19.17.01
    13.0 ???? x.x.x.x P7.0003ba8bb0c4 GUI4.2_77_2009.10.19.17.01
    As you can see you will see a "P8-FS" and "P8" in the "Model.Mac" number
    output. "P8-FS" does of course point at the 2FS models while the simple
    "P8" standards for a normal SunRay2 station.
    If you have questions ask me.
    Kirill Babeyev

  • Encrypting password in shell script on Solaris 10.

    Hi,
    I have a shell script & in that the username & password is specified. I can see the password. Is there any way to encrpyt password in Unix scripts on solaris 10 box.
    Please suggest.
    Thanks & Regards,
    Tejas

    Here are some examples of avoiding passwords in scripts.
    First, if it's a script that needs to use remote login, you could set up ssh keys in the authorized_keys file of the remote system to allow auto-authentication.
    As a more general example, you could create a shell function that prompts for the password and stores it in an environment variable to be used by the script or utility that you want to use. Here is an example that we use in our Red Hat systems to allow yum to tunnel through our http proxy:
    function yumproxy(){
        echo -n "Enter Proxy Username: "
        read -e username
        echo -n "Enter Proxy Password: "
        read -es password
        echo
        export http_proxy="http://$username:$password@ourproxyserver:8080/"
    }This is in .bashrc so that we can run it once just before running any yum commands (not that this means anything in a Solaris forum!)

  • Can I use coldfusion 8 standard version in Sun / Solaris?

    Hi,
    I would like to know if I can use coldfusion 8 standard
    version in Sun / Solaris
    Thank you.

    banguitainf wrote:
    > Hi,
    >
    > I would like to know if I can use coldfusion 8 standard
    version in Sun / Solaris
    No.
    http://www.adobe.com/products/coldfusion/systemreqs/#support_matrix
    Mack

  • Reading output from a Solaris(UNIX) shell script

    Hello All, I have written some fairly large shell scripts. I have also written a simple java GUI that contains a button that will run the script. The script runs. The problem is that I cannot see the output from the script in the x-term that I used to run my java class file.
    I am developing in a windows environment, I have a silly little system.out that prints "Button Pressed", which works in windows just fine but on my ultra 10 running Solaris 8 the term just sits there no output to the srceen.
    Has anyone out there solved this problem or know of a way that I can? Thanks

    I don't know how to print out to the x-term. But you can add a JTextArea to the GUI and get the output there.
    String output = null;
    StringBuffer returnString = new StringBuffer();
    String command = /path/to/shell/script/script.sh
    process = Runtime.getRuntime().exec(command);
    InputStreamReader isr = new InputStreamReader (process.getInputStream());
    input = new BufferedReader(isr);
    while((output = input.readLine()) != null){
        returnString.append(output);
    }Wouldn't a System.out.println(returnString.toString()) print to the x-term console?
    hope this helps.

  • Oracle 9i RAC on Sun Solaris 5.10/64 bit version.Is that supported ?

    I want to install Oracle 9i RAC on Sun Solaris 10 64 bit. Is that officially supported ?
    I dont this combination on metalink certify matrix

    I know we dont get support from oracle.But, you initially mentioned that you couldn't find the required information on metalink, therefore I provided that information, which I thought you were looking for.
    Is anybody still using this combination ? Does it work ? yes, we are using it and it has been working fine for over 4 years...of course we patched it to the latest - 9.2.0.8 to be on the supported release/patch.

  • How to create shell script on solaris "TOP" command

    Hi All,
    i need to write a shell script on unix top command.
    Requirement:
    In top command grep the more than 25% CPU utilization f60webmx process and that f60webmx process time stamp is more than 3HR's and also needs to grep the load average information in top command.
    Please help me some one.

    i need to write a shell script on unix top command.You have our permission to begin to do that.
    These forums are NOT for doing your work for you. They are here to provide assistance for YOUR work.
    I suggest you go get paper and pencil and write down all the steps you think you need to take to accomplish that. Write it down as if you were going to do that manually at the command prompt. Then put it all into a text file and save it with a file name of your script.
    When you have that "script", you can run it and examine whether it succeeds or whether it has errors. Work at it for a while and fix whatever errors might happen.
    When you are really, really stuck at it, you can paste your script into a reply of this thread and maybe someone will respond with suggestions for improvement.

  • How I run a shell script from the scheduler on 10.2.0.2.0 ?

    Hello Oracle People,
    I'd like to run a shell script from the Scheduler in my 10g database.
    Right now it is a simple shell script.
    Eventually it will wrap RMAN commands to back up my DB.
    I wrote a simple pl/sql script to create a job:
    -- cr_job10.sql
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB (
    job_name => 'my_backup_job',
    job_type => 'EXECUTABLE',
    job_action => '/h/oracle/scripts/tst.sh',
    start_date => '06-SEP-07 5.33.00PM US/Pacific',
    repeat_interval => 'FREQ=DAILY',
    end_date => '08-SEP-07 4.00.00PM US/Pacific',
    enabled => TRUE,
    comments => 'My Backup Job');
    END;
    I see no errors when I run the above procedure.
    I checked DBA_SCHEDULER_JOBS and the job is in there.
    The scheduler, though, errors out with an error which I see in a trace file:
    /h/oracle/admin/orcl/bdump/orcl_j000_22396.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /h/oracle/product/10r2
    System name: SunOS
    Node name: sol
    Release: 5.10
    Version: Generic_118855-14
    Machine: i86pc
    Instance name: orcl
    Redo thread mounted by this instance: 1
    Oracle process number: 15
    Unix process pid: 22396, image: oracle@sol (J000)
    *** ACTION NAME:(MY_BACKUP_JOB) 2007-09-06 17:33:00.175
    *** MODULE NAME:(DBMS_SCHEDULER) 2007-09-06 17:33:00.175
    *** SERVICE NAME:(SYS$USERS) 2007-09-06 17:33:00.175
    *** CLIENT ID:() 2007-09-06 17:33:00.175
    *** SESSION ID:(140.13520) 2007-09-06 17:33:00.175
    *** 2007-09-06 17:33:00.175
    ORA-12012: error on auto execute of job 53267
    ORA-27369: job of type EXECUTABLE failed with exit code: 274662
    I googled on this:
    ORA-27369: job of type EXECUTABLE failed with exit code: 274662
    Google returned only 1 hit.
    There, I see some evidence that I need to configure something inside
    of Oracle to run shell scripts from the scheduler, but possibly just
    for machines running windows. I'm running Solaris.
    Do any of you know what I need to configure inside of Oracle to
    run shell scripts from the scheduler?
    -Owen

    Hello people,
    I should have added this bit of information:
    "The script runs fine from oracle's crontab."
    "The script runs fine from a shell owned by oracle."
    I'm getting responses telling me to check my env variables and permissions
    which would be helpful to a UNIX novice.
    I have a feeling that no one is using the scheduler to run RMAN scripts.
    Tim Hall suggested I take a close look at these files:
    $ORACLE_HOME/rdbms/admin/externaljob.ora
    $ORACLE_HOME/bin/extJob
    Currently I'm setup like this:
    bash sol root /h/oracle/product/10r2/bin 31 #
    bash sol root /h/oracle/product/10r2/bin 31 # ll $ORACLE_HOME/rdbms/admin/externaljob.ora
    -rw-r--r-- 1 root dba 52 Sep 7 15:29 /h/oracle/product/10r2/rdbms/admin/externaljob.ora
    bash sol root /h/oracle/product/10r2/bin 32 #
    bash sol root /h/oracle/product/10r2/bin 32 # cat $ORACLE_HOME/rdbms/admin/externaljob.ora
    # externaljob.ora
    run_user = rman
    run_group = rman
    bash sol root /h/oracle/product/10r2/bin 33 #
    bash sol root /h/oracle/product/10r2/bin 33 #
    bash sol root /h/oracle/product/10r2/bin 33 #
    bash sol root /h/oracle/product/10r2/bin 33 # ll $ORACLE_HOME/bin/ext*
    -rwsr-x--- 1 rman dba 30388 Sep 21 2006 /h/oracle/product/10r2/bin/extjob*
    -rwsr-x--- 1 rman dba 30392 Sep 21 2006 /h/oracle/product/10r2/bin/extjobo*
    -rwsr-x--- 1 rman dba 34468 Sep 21 2006 /h/oracle/product/10r2/bin/extproc*
    -rwxr-xr-x 1 oracle dba 300 Sep 21 2006 /h/oracle/product/10r2/bin/extusrupgrade*
    bash sol root /h/oracle/product/10r2/bin 34 #
    bash sol root /h/oracle/product/10r2/bin 34 #
    bash sol root /h/oracle/product/10r2/bin 34 #
    On my system, the user 'nobody' has no shell so I cannot use nobody.
    I created a user named rman:
    bash sol root /h/oracle/product/10r2/bin 34 #
    bash sol root /h/oracle/product/10r2/bin 34 #
    bash sol root /h/oracle/product/10r2/bin 34 # su - rman
    Sun Microsystems Inc. SunOS 5.10 Generic January 2005
    $
    $ id
    uid=220(rman) gid=220(rman)
    $
    $
    $ date
    Fri Sep 7 16:30:03 PDT 2007
    $
    $
    Jared points out that rman needs access to extproc:
    $ ls -la /h/oracle/product/10r2/bin/extproc
    -rwsr-x--- 1 rman dba 34468 Sep 21 2006 /h/oracle/product/10r2/bin/extproc
    $
    $
    Here is a demo of rman running his script:
    bash sol root /h/oracle/product/10r2/bin 35 # su - rman
    Sun Microsystems Inc. SunOS 5.10 Generic January 2005
    $
    $
    $ ls
    scripts
    $
    $
    $ scripts/tst.sh
    $
    $
    $ cat scripts/tst.sh
    #! /bin/sh
    /usr/bin/date > /tmp/tst.sh.out.txt 2>&1 &
    exit 0
    $
    $
    $ cat /tmp/tst.sh.out.txt
    Fri Sep 7 16:31:23 PDT 2007
    $
    $ rm /tmp/tst.sh.out.txt
    $
    I am focused on this error:
    ORA-27369: job of type EXECUTABLE failed with exit code: 274662
    And I am focused on this exit code: 274662
    What does 274662 mean?
    If the Scheduler gives me an error like "274662" rather than some English,
    it's obvious to me the Scheduler is a POS and I should not use it.
    And of course,
    If I cannot run RMAN from Oracle Scheduler, I'll use cron.
    -Owen

  • Shell Script Error

    Hello:
    I am getting a error when running a process flow which is calling a shell script. The process flow has a simple user defined activity and the parameters are set up this way
    COMMAND: /bin/bash
    Parameter List:
    Result code:
    Script: /bin/ls -l > /oraapp/datos/ficheros/sv/a.lst
    Success Threshold: 0
    First i have the error: RPE-02248: For security reasons, activity operator Shell has been disabled by the DBA., then the Administrator set property.RuntimePlatform.0.NativeExecution.Shell.security_constraint to NATIVE_JAVA an now the error is this:
    Error en Proceso: PRUEBA_SHELL , Mapping: USER_DEFINED
    INFORMATIONAL: 01:05:27 15-MAY-09 90778 90769 RPE-02229: The following debug information was collected:
    INFORMATIONAL: 01:05:27 15-MAY-09 90778 90769 RPE-02230: Debug Information: os.name = SunOS
    INFORMATIONAL: 01:05:28 15-MAY-09 90778 90769 RPE-02230: Debug Information: os.version = 5.8
    INFORMATIONAL: 01:05:28 15-MAY-09 90778 90769 RPE-02230: Debug Information: os.arch = sparc
    INFORMATIONAL: 01:05:28 15-MAY-09 90778 90769 RPE-02230: Debug Information: user.name = ora10
    INFORMATIONAL: 01:05:28 15-MAY-09 90778 90769 RPE-02230: Debug Information: user.dir = /oraapp/app/oracle/product/102WB/owb/bin/unix
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: argv.arg0 = /bin/bash
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: argv.arg1 = {Task.Input}
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: argv.stdin = /bin/ls -l > /oraapp/datos/ficheros/sv/a.lst
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: ORACLE_SPAWNED_PROCESS = 1
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: ORACLE_BASE = /oraapp/app/oracle
    INFORMATIONAL: 01:05:30 15-MAY-09 90778 90769 RPE-02230: Debug Information: LD_LIBRARY_PATH_64 = /oraapp/app/oracle/product/102WB/lib:../../../discoverer/lib:/oraapp/app/oracle/product/102WB/owb/bin/admin:
    INFORMATIONAL: 01:05:30 15-MAY-09 90778 90769 RPE-02230: Debug Information: HZ = 100
    INFORMATIONAL: 01:05:30 15-MAY-09 90778 90769 RPE-02230: Debug Information: PWD = /export/home/ora10
    INFORMATIONAL: 01:05:30 15-MAY-09 90778 90769 RPE-02230: Debug Information: _ = /oraapp/app/oracle/product/102/bin/sqlplus
    INFORMATIONAL: 01:05:31 15-MAY-09 90778 90769 RPE-02230: Debug Information: ORACLE_SID = cdid2
    INFORMATIONAL: 01:05:31 15-MAY-09 90778 90769 RPE-02230: Debug Information: PORT = 1522
    INFORMATIONAL: 01:05:31 15-MAY-09 90778 90769 RPE-02230: Debug Information: SERVICE = CDID2
    INFORMATIONAL: 01:05:31 15-MAY-09 90778 90769 RPE-02230: Debug Information: NLSPATH = /usr/dt/lib/nls/msg/%L/%N.cat
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: OCM_HOME = /oraapp/app/oracle/product/102WB
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: NLS_LANG = AMERICAN_AMERICA.WE8ISO8859P1
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: HOME = /export/home/ora10
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: HOSTNAME = cor0003s059
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: NODEID = 1
    INFORMATIONAL: 01:05:33 15-MAY-09 90778 90769 RPE-02230: Debug Information: RTHOME = /oraapp/app/oracle/product/102WB
    INFORMATIONAL: 01:05:33 15-MAY-09 90778 90769 RPE-02230: Debug Information: LD_LIBRARY_PATH = /oraapp/app/oracle/product/102WB/jdk/jre/lib/sparc/client:/oraapp/app/oracle/product/102WB/jdk/jre/lib/sparc:/oraapp/app/oracle/product/102WB/jdk/jre/../lib/sparc:/oraapp/app/oracle/product/102WB/lib32:../../../discoverer/lib:/oraapp/app/oracle/product/102WB/owb/bin/admin:
    INFORMATIONAL: 01:05:33 15-MAY-09 90778 90769 RPE-02230: Debug Information: SKGP_HIDDEN_ARGS =
    INFORMATIONAL: 01:05:33 15-MAY-09 90778 90769 RPE-02230: Debug Information: OWB_HOME = /oraapp/app/oracle/product/102WB
    INFORMATIONAL: 01:05:34 15-MAY-09 90778 90769 RPE-02230: Debug Information: LOGNAME = ora10
    INFORMATIONAL: 01:05:34 15-MAY-09 90778 90769 RPE-02230: Debug Information: ORACLE_HOME = /oraapp/app/oracle/product/102WB
    INFORMATIONAL: 01:05:34 15-MAY-09 90778 90769 RPE-02230: Debug Information: SHELL = /usr/bin/bash
    INFORMATIONAL: 01:05:34 15-MAY-09 90778 90769 RPE-02230: Debug Information: MACHTYPE = sparc-sun-solaris
    INFORMATIONAL: 01:05:35 15-MAY-09 90778 90769 RPE-02230: Debug Information: IAS_HOME = /oraapp/app/oracle/product/102WB
    Thanks
    Edited by: user11136124 on 15-may-2009 5:36

    Hi
    needed to change the following file on server
    $OWB_HOME/owb/bin/admin/Runtime.properties
    the following parameters are disbaled by default, change to NATIVE_JAVA :
    property.RuntimePlatform.0.NativeExecution.FTP.security_constraint = NATIVE_JAVA
    property.RuntimePlatform.0.NativeExecution.Shell.security_constraint = NATIVE_JAVA
    property.RuntimePlatform.0.NativeExecution.SQLPlus.security_constraint = NATIVE_JAVA
    and then bounce the Control Center service using:
    <owb-home>/owb/rtp/sql/stop_service.sql
    <owb-home>/owb/rtp/sql/start_service.sql
    Cheers
    Nawneet

Maybe you are looking for

  • Adobe Store takes too long to deliver download and serial information

    Earlier this week we received some Indesign files for a job, but they were in Indesign 5 format, so we were unable to open them with Indesign CS4. So, taking this as a sign that it was time to upgrade, yesterday, at around 1pm UK time I purchased the

  • When battery is empty my iphone 3GS shuts down and won't turn on for a day!

    Hi, I desperately need your help! When the battery on my iphone runs out, the device, naturally, turns off. But even though I plug it into my charger - nothing happens; the screen is blank and stays like that for some hours, even a day long. I then,

  • Problem with inputstreams from socket

    Hi This is probably a stupid question, but I really don't know much about server-client programming, and I'm a bit stuck when it comes to helping a friend (who is even more lost than me :p). In the code, there is a socket, mySocket. For some reason,

  • Why can't I put Itunes(quicktime 7) on my notebook

    I put Itunes(plus quicktime7) on my PC but my PC doesn't have a 2.0 port(1.1). When I tried to put it on my notebook(wireless), I lost a previous version of quicktime and Itunes doesn't load. My notebook has a 2.0 port for recharging. I can't even pu

  • Apple i5 Data Usage

    I have two i5's on my plan and one Droid. For the past two months my i5 Data usage has gone through the roof. I have spoken with tech support and they have walked my through all of the typical data burners and turned them all off. The i5's are burnin