Scripting Status?

I'm a pretty good javascript programmer and thought I'd give scripting a try on Bridge, but I found
that the developer tool crashes frequently (mac pro, cs4), and bridge itself tends to crash the more
I use scripts.  Some of the well-documented features of the toolkit just don't seem to work at all,
and I also find the documentation to be sparse and unhelpful in getting to details, such as the DOM,
function parameters, etc. Even among the stuff that is available, it's clear that scripting isn't seen as
very important--many must-have items aren't there, and the number of areas you can add UI elements
is severely limited.  (I'm leaving out details because this should be self-evident to anyone that's also
trying to do things.)
I know no one that does scripting, and it took me forever to even find this forum. Once here,
I noticed that few people come here. There are very few posts,most of them being old.
Even the text-edit area I'm using to type this seems quite broken (select/delete doesn't work well,
and I can't backspace around carriage returns).
Am I wasting my time trying to go down the path of scripting bridge?

Dan Heller.
On Fri, Jul 24, 2009 at 2:04 PM, Kasyan Servetsky wrote:
> If I'm to use the CS3 version of ESTK, where do you get it?
1. Deinstall CS4
2. Install CS3
3. Reinstall CS4
surely there must be a better way than that. I don't have my old CS3 stuff around...nowhere even close.  Can't I just download the binary to the ESTK somewhere?
BTW, I read in another thread that the cs3 version has its own set of issues too. Is this a case of "six of one..." ?
You can live without SDK of course, but with it -- I know it from my own experience -- it will be much easier. The samples in Bridge JavaScript Reference contain a lot of typos -- at least for CS2 and 3 -- I haven't read CS4 version yet. It's much easier to start from the samples in SDK because they all work.
it's just about the sample scripts, I've already churned through them. I'm pretty well up to speed--there's a basic template I work from, and the objects and the DOM only require reading the DOC.  Although, now that I mention it, the doc on the DOM seems incomplete as well.
It's also unfortunate that the only place you can put new UI elements is at the top and bottom of the Content panel... they really should expose more of the dom to the scripting, but I can only imagine it's been called out before.
dan

Similar Messages

  • How can I hide the java script status bar?

    I'm trying to hide the status bar using the feature in the advanced section of enable java script. I did a search in the help window of Firefox 5.0 and it shows the area in options to do this. I followed the instructions but the feature in my advanced area does not offer this selection. I'm trying to accomplish this in order to follow the recommendations of Pogo to enhance game playing experience.

    Hi. To remove the horizontal scrollbar you can do this:
    textArea.setWrapText(true);
    To remove the vertical scrollbar you can do this:
    ScrollBar scrollBarv = (ScrollBar)ta.lookup(".scroll-bar:vertical");
    scrollBarv.setDisable(true);  and set the opacity to 0 in the css file:
    //css file
    .text-area .scroll-bar:vertical:disabled {
        -fx-opacity: 0;
    }Here is an example:
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ContextMenu;
    import javafx.scene.control.MenuItem;
    import javafx.scene.control.ScrollBar;
    import javafx.scene.control.TextArea;
    import javafx.scene.input.ContextMenuEvent;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    public class TextAreaSample extends Application {
        @Override
        public void start(Stage primaryStage) {
        final TextArea textArea = new TextArea();
            textArea.setWrapText(true);
            StackPane root = new StackPane();
            root.getChildren().add(textArea);
            Scene scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            scene.getStylesheets().add(getClass().getResource("style.css").toExternalForm());
            ScrollBar scrollBarv = (ScrollBar)textArea.lookup(".scroll-bar:vertical");
            scrollBarv.setDisable(true);
        public static void main(String[] args) {
            launch(args);
    }

  • Maxl script STATUS

    Hi guys..
    Is there a way to check the status of the maxl script executed.
    The scenario I am talking about is like this:
    A maxl script is being called from a unix script. Is there a way to check if the status of the maxl file executed is Success or Failure.
    I am using startmaxl.sh to execute the maxl file. So if there is an error the startmaxl.sh should return 1/Failure. right?
    Correct me if I am wrong.

    It's worth having a read of Cameron's post of exit codes and error handling in maxl - http://camerons-blog-for-essbase-hackers.blogspot.com/2011/06/no-exit-but-not-in-maxl_9756.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Check shell script status

    The following question is related to the same application I am developing in the thread named "Open something on first launch?", if that may help you answer it.
    How exactly do I check to see if hidden files are being displayed or not?
    This:
    set shellcheck to do shell script "defaults read com.apple.Finder AppleShowAllFiles"
    if the result returned in shellcheck = FALSE then
    display dialog "FALSE"
    else if the result returned in shellcheck = TRUE then
    display dialog "TRUE"
    end if
    or this:
    set shellcheck to do shell script "defaults read com.apple.Finder AppleShowAllFiles"
    if shellcheck = false then
    display dialog "FALSE"
    else if shellcheck = true then
    display dialog "TRUE"
    end if
    doesn't seem to work...

    The first thing to realize is that if the defaults parameter doesn't exist, the script will return an error. Therefore your code needs to include a try/end try block to catch that error.
    Secondly, if the key/value does exist, defaults will return '1' if it's true, or '0' if it's false.
    Therefore, your script should look more like:
    try
      set shellcheck to do shell script "defaults read com.apple.Finder AppleShowAllFiles"
      if shellcheck = "0" then
        display dialog "FALSE"
      else if shellcheck = "1" then
        display dialog "TRUE"
      end if
    on error
      display dialog "Preference value does not exist"
    end try

  • Coded UI test script works in VS2010 but not in VS2012.

    I have a test script for an application that adds 3 part numbers (i.e., rows) to a table displayed on the AUT web page.  Each row in the table also contains an
    HTMLInputButton called View Audit Trail.  The purpose of the test script is to select the correct button, which then calls up the
    Audit Details page for the selected part number.  The code used in the test script driver is as follows (the same code is used for clicking on either an action button or a hyperlink contained within a table):
    case "ClickTableItem":
    // Note: An input example would be
    03-0024-0-0001:Button>View Audit Trail
    string[] keys = action[key].Split(':');
    string cellvalue = keys[0].CheckGlobalValue(global);  // The key data identifying which table row.
    string[] objtypeANDobj = keys[1].Split('>');  // Data consists of the Object Type, and the Object to be clicked.
    // Identify the table...  (The name of the table from outside the
    Switch statement.)
    HtmlTable actionTable = (HtmlTable)map.GetType().GetProperty(key.FieldName).GetValue(map, null);
    // Identify the individual table cell containing the key identifier...
    HtmlCell cell = new HtmlCell(actionTable);
    cell.SearchProperties.Add("ClassName", "HtmlTableCell");
    cell.SearchProperties.Add("InnerText", cellvalue, PropertyExpressionOperator.Contains);
    UITestControlCollection tablecells = cell.FindMatchingControls();
    // Set the row index...
    HtmlCell myhtmlcell = (HtmlCell)tablecells[0];
    int myrow = myhtmlcell.RowIndex;
    string smyrow = myrow.ToString();
    HtmlCell myCell = new HtmlCell(actionTable);
    myCell.SearchProperties.Add("RowIndex", smyrow);
    #region Click on Hyperlink
    if (objtypeANDobj[0] == "Hyperlink")
    myCell.SearchProperties.Add("FriendlyName", objtypeANDobj[1], PropertyExpressionOperator.Contains);
    UITestControlCollection testclickobjects = myCell.FindMatchingControls();
    UITestControl tableclickobject = testclickobjects[0];
    HtmlHyperlink myClicklink = new HtmlHyperlink(tableclickobject);
    Mouse.Click(myClicklink);
                            logger.Write("    Action", "Table Select - Row: '" + cellvalue + "': Hyperlink '" + objtypeANDobj[1] + "' selected");
    #endregion
    #region Click on Button
    else if (objtypeANDobj[0] == "Button")
    // Search child level...
    UITestControlCollection testclickobjects = myCell.FindMatchingControls();
    UITestControl tableclickobject = testclickobjects.Where(btnCell => btnCell.GetChildren().Any(btnChild => btnChild is HtmlInputButton && btnChild.FriendlyName == objtypeANDobj[1])).First();
    HtmlInputButton myClickbtn = tableclickobject.GetChildren().Where(btnChild => btnChild is HtmlInputButton).First() as HtmlInputButton;
    Mouse.Click(myClickbtn);
                            logger.Write("    Action", "Table Select - Row: '" + cellvalue + "': Action Button '" + objtypeANDobj[1] + "' selected");
    #endregion
    break;
    In VS2010, the correct button is always selected, and the correct audit page always appears.  In VS2012, though, the correct button is always selected, but the green progress bar speeds across the screen and the test crashes, even though the message
    log records the correct action.  (It crashes because it can't find the verification information that the correct page was displayed, seeing as the correct page doesn't appear.)  If I manually re-open the application, the table containing the added
    part numbers is still displayed, and I can click on the appropriate View Audit Trail button and go to the correct audit page.  
    What really has me stymied, though, is that the script actually passed twice.  Both times, though, either VS, the test script, or the app itself hiccupped, and only added 2 of the 3 part numbers to the table.  As always, the correct button was
    selected, but in these two cases the audit screen actually appeared, so the rest of the test passed successfully.
    I've tried removing one of the part numbers, but the script still failed despite once again selecting the correct button.  The first thing I thought of was re-mapping the web page objects using VS2012, but it turned out that they have the same properties
    as with VS2010.  Unfortunately, it didn't help.  I've also tried changing the following parameters:
    HtmlInputButton to HtmlButton
    <PropertyCondition Name="ControlType">Button</PropertyCondition> to
    btn
    <PropertyCondition Name="Type">button</PropertyCondition> to
    submit
    <PropertyCondition Name="Class">PageButton</PropertyCondition> to
    Button or btn
    The only other thing unique is that the AUT for the VS2010 test script uses a different login screen than the AUT for VS2012 (different URLs for the login screens).  Other than that, though, once the login screens are passed, the web pages accessed
    are identical (i.e., the same URL).
    Has anyone else run into a similar situation?  

    Hi Jack,
    Here is the applicable part of the error log.  Unfortunately, it doesn't explain why the Audit page doesn't appear when you click on the View Audit Trail button.  It only fails because it can't find the Return To Search button (which makes sense,
    because the page wasn't opened).  As you can see, I stuck a 60-second Wait step (Step 14) to see if the page would eventually appear, but it didn't.
    Processing Step 12:
         Data Entry: Selected radio button 'ActionTypeRadioInquiry': 'ON'
         Data Entry: Entered 'AircraftTailNumber': '0201'
         Action: 'Search' selected
    Processing Step 13:
         Action: Table Select - Row: '03-0024-0-0001': Action Button 'View Audit Trail' selected
    Processing Step 14:
         Action: 'Wait': System test paused for 60 seconds...
    Processing Step 15:
    Logging Entry Type: Error
    Logging Entry Type: FailureAudit
    System.String: <string>    *** FAILED Step 15 ACTION: 'ReturnToSearch' Error 'The playback failed to find the control with the given search properties. Additional Details:
    TechnologyName:  'Web'
    ControlType:  'Button'
    TagName:  'INPUT'
    Id:  'ctl00_ContentPlaceHolder1_btnReturnToResults'
    Name:  'ctl00$ContentPlaceHolder1$btnReturnToResults'
     Failed to find any control that matched the value ctl00_ContentPlaceHolder1_btnReturnToResults for the search property Id.'</string>
     System.String:     *** FAILED Step 15 ACTION: 'ReturnToSearch' Error 'The playback failed to find the control with the given search properties. Additional Details:
    TechnologyName:  'Web'
    ControlType:  'Button'
    TagName:  'INPUT'
    Id:  'ctl00_ContentPlaceHolder1_btnReturnToResults'
    Name:  'ctl00$ContentPlaceHolder1$btnReturnToResults'
     Failed to find any control that matched the value ctl00_ContentPlaceHolder1_btnReturnToResults for the search property Id.'
    Logging Entry Type: Error
    System.Exception: <Exception><HelpLink /><Source /></Exception>
     System.Exception: System.Exception: Exception in Step #15 from the 'PerformAction' module... ---> Microsoft.VisualStudio.TestTools.UITest.Extension.PlaybackFailureException:   Step 15 ACTION: 'ReturnToSearch' error 'The playback failed
    to find the control with the given search properties. Additional Details:
    TechnologyName:  'Web'
    ControlType:  'Button'
    TagName:  'INPUT'
    Id:  'ctl00_ContentPlaceHolder1_btnReturnToResults'
    Name:  'ctl00$ContentPlaceHolder1$btnReturnToResults'
     Failed to find any control that matched the value ctl00_ContentPlaceHolder1_btnReturnToResults for the search property Id.'
       at WS.Tests.DataEntryUtil.PerformAction(Dictionary`2 action, Object map, Dictionary`2 global, Int32 stepNumber, LoggingProvider logger) in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\DataEntryUtil.cs:line 1964
       at WS.Tests.WSTest.ScepTest() in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\WSTest.cs:line 193
       --- End of inner exception stack trace ---
    Logging Entry Type: Error
    System.Exception: <Exception><HelpLink /><Source /></Exception>
     System.Exception: System.Exception: DataDriven Test Execution Exception Caught ---> System.Exception: Caught Exception in Step #15 from the 'PerformAction' module... ---> Microsoft.VisualStudio.TestTools.UITest.Extension.PlaybackFailureException:  
    Step 15 ACTION: 'ReturnToSearch' error 'The playback failed to find the control with the given search properties. Additional Details:
    TechnologyName:  'Web'
    ControlType:  'Button'
    TagName:  'INPUT'
    Id:  'ctl00_ContentPlaceHolder1_btnReturnToResults'
    Name:  'ctl00$ContentPlaceHolder1$btnReturnToResults'
     Failed to find any control that matched the value ctl00_ContentPlaceHolder1_btnReturnToResults for the search property Id.'
       at WS.Tests.DataEntryUtil.PerformAction(Dictionary`2 action, Object map, Dictionary`2 global, Int32 stepNumber, LoggingProvider logger) in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\DataEntryUtil.cs:line 1964
       at WS.Tests.WSTest.ScepTest() in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\WSTest.cs:line 193
       --- End of inner exception stack trace ---
       at WS.Tests.WSTest.ScepTest() in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\WSTest.cs:line 213
       --- End of inner exception stack trace ---
     Test Script Status:  FAILED 'Test_Click_Table_Item':   Execution Time: 00:02:03.7293717
    The calling page is given a specific key value (M&E Part Number) which identifies the table row containing the correct
    View Audit Trail button to select.  The key for this test is
    03-0024-0-0001, indicating that the test is to select the
    View Audit Trail button in the third row of the table.
    Without fail, the correct button is selected.  Selecting this action button is
    supposed to call the appropriate Audit page.
    While there have been several test runs where the correct audit page does get displayed, most of the test runs will
    not display the page, even though a significant Wait period has been inserted to allow the application additional time to process the page request.
    I tried to attach the screen shots of the two pages in question, but wasn't allowed to because apparently my account hasn't been verified.  If I can upload them or email them somewhere else, let me know and I'll give it a shot.

  • Just cloned Prod to Test - adalnctl.sh: exiting with status 1

    I just ran through my process to clone Prod to Test. I'm no expert but this has been done before without too many issues.
    The problem I have now is when running adalnctl.sh start and I get 'adalnctl.sh: exiting with status 1'.
    My configuration is 11.5.10 CU2 running in a two tier environment with forms and reports on the app tier.
    Part of my process I follow is to submit some Concurrent Requests to clean-up old jobs. That's where I first noticed the job status showed as Phase=Inactive and Status=No Manager. If I check via the dashboard it shows CCM as running though.
    So I decided to shut things down and restart and that where I noticed the 'apps listener' if that's the correct term as Failed.
    I have run adpreclone on the Prod environment before backing up and restoring and then ran adprelcone in the Test environemt followed by adautocfg etc.
    So I'll double-check to see if I've missed a step but just not sure where to start looking.
    Looks like there should be a listener that tuns out of the 8.0.6 HOME?
    I should mention this is on the db_tier which runs CCM and the apps_tier doesn't have this problem.
    Example with the exact name edited:
    Setting service OracleTNSListener80APPS_XXXX_xxxx to mode 2
    Executing service control script:
    /app/orafin/xxxx/xxxxcomn/admin/scripts/XXXX_xxxx/adalnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 115.17
    Checking for FNDFS executable.
    Starting listener process APPS_XXXX.
    adalnctl.sh: exiting with status 1
    .end std out.
    .end err out.
    - then later the logs shows:
    [Service Control Execution Report]
    The report format is:
    <Service> <Script> <Status>
    OracleTNSListener80APPS_XXXX_xxxx adalnctl.sh Failed
    OracleConcMgrXXXX_xxxx adcmctl.sh Started
    OracleReportServer-Rep60_XXXX adrepctl.sh Started
    Edited by: user6445925 on Sep 21, 2010 12:34 PM

    Hi;
    Thanks Helios. Can I move this post or is that just and fyi for next time.Its okey :)
    I did as you say and now I get 'adalnctl.sh: exiting with status 127'.Pls source env file as apps user than stop and start lsnr by using adalnctl.sh, It will give you errors again than please check log file for exact error message,
    You can find log file path on my blog:
    http://heliosguneserol.wordpress.com/2010/04/13/log-file-location-for-oracle-e-business-suite-r12/
    http://heliosguneserol.wordpress.com/2010/04/13/log-file-location-for-oracle-e-business-suite-r11/
    I think I may redo this whole process tomorrow using a FULL backup from the tonight.If your db is up and apps service running i belive you dont need to take clone again
    Regard
    Helios

  • Unable to Start R12 Instance adstrtal.sh exiting with status 1

    Hi - I am unable to restart my R12 server after successfully shutting it down.
    1)
    I seem to have the Database and Database Listener up with its respective scripts.
    /d01/oracle/vis/db/tech_st/11.1.0/appsutil/scripts/VIS_oracle
    su oravis
    a) ./addbctl.sh start
    b) ./addlnctl.sh start VIS_oracle
    But I can't the application script to run.
    2)
    su applvis
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts
    ./adstrtal.sh applvis/applvis
    adstrtal.sh: Database connection could not be established. Either the database is down or the APPS credentials supplied are wrong.
    USAGE: adstrtal.sh <appsusername/appspassword>
    adstrtal.sh: exiting with status 1
    Now, I verified that the applvis password is right because I changed under System --> Administration --> User Groups
    The guide I followed mainly to setup my directory is the following:
    http://eyeonapps.gendron.ca/?p=12
    3)
    Now, somewhere I read it could be with the Environment file not being sourced, but where is that file located, I saw a couple of locations, also under what user should I source it as?
    Also, is there a way I can give all the users permission to the /d01 directory, to avoid problems like these.
    Would appreciate the help to get the apps server running.
    Thanks!

    Hi Guys - I'm returning back to this thread I had, my server was shut down and then I restarted it after a long time.
    Note, my Internet/Ip has changed, I had to change the IP in the adapter settings and the etc/host file from 192.160.1.101 to be 192.168.0.101, but I'm having a hard time opening the Login page. I can see the page that says:
    "The E-Business Home Page is located at http://oracle.ebs:8000/OA_HTML/AppsLogin
    If your browser doesn't automatically redirect to its new location, click here. "
    But when I access the login page I get this error:
    "Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, ohs_admin@ebs and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log."
    This is the adstratal.log file:
    You are running adopmnctl.sh version 120.6
    Starting Oracle Process Manager (OPMN) ...
    opmnctl: opmn started.
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adopmnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adalnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 120.3
    Checking for FNDFS executable.
    Starting listener process APPS_VIS.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adalnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adapcctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adapcctl.sh version 120.7.12010000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl: opmn is already running.
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=oracle.ebs:6200
    no processes or applications matched this request
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adapcctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adoacorectl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adoacorectl.sh version 120.13
    Starting OPMN managed OACORE OC4J instance ...
    adoacorectl.sh: exiting with status 150
    adoacorectl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adoacorectl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adformsctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adformsctl.sh version 120.16
    Starting OPMN managed FORMS OC4J instance ...
    adformsctl.sh: exiting with status 150
    adformsctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adformsctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adoafmctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adoafmctl.sh version 120.8
    Starting OPMN managed OAFM OC4J instance ...
    adoafmctl.sh: exiting with status 150
    adoafmctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adoafmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adcmctl.sh start
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 120.17.12010000.3
    Starting concurrent manager for VIS ...
    Starting VIS_0411@VIS Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adcmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/jtffmctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running jtffmctl.sh version 120.3
    Validating Fulfillment patch level via /d01/oracle/vis/apps/apps_st/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for VIS on port 9300 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    [Service Control Execution Report]
    The report format is:
    <Service Group> <Service> <Script> <Status>
    Root Service Enabled
    Root Service Oracle Process Manager for VIS_oracle adopmnctl.sh Started
    Web Entry Point Services Enabled
    Web Entry Point Services Oracle HTTP Server VIS_oracle adapcctl.sh Started
    Web Entry Point Services OracleTNSListenerAPPS_VIS_oracle adalnctl.sh Started
    Web Application Services Enabled
    Web Application Services OACORE OC4J Instance VIS_oracle adoacorectl.sh Failed
    Web Application Services FORMS OC4J Instance VIS_oracle adformsctl.sh Failed
    Web Application Services OAFM OC4J Instance VIS_oracle adoafmctl.sh Failed
    Batch Processing Services Enabled
    Batch Processing Services OracleConcMgrVIS_oracle adcmctl.sh Started
    Batch Processing Services Oracle Fulfillment Server VIS_oracle jtffmctl.sh Started
    Other Services Disabled
    Other Services OracleFormsServer-Forms VIS_oracle adformsrvctl.sh Disabled
    Other Services Oracle Metrics Client VIS_oracle adfmcctl.sh Disabled
    Other Services Oracle Metrics Server VIS_oracle adfmsctl.sh Disabled
    Other Services Oracle MWA Service VIS_oracle mwactlwrpr.sh Disabled
    ServiceControl is exiting with status 3
    More information about this error may be available in the server error log."
    Edited by: user8009286 on Apr 10, 2010 11:59 PM

  • Status down

    i've just install OEL 5 and EBS 12.0 after completion of post install and apply the patch only HTTP componenet is Alive, how to make other comp alive? am i missing something.
    log
    02/02/12-06:00:38 :: adapcctl.sh version 120.6
    02/02/12-06:00:38 :: adapcctl.sh: checking status of OPMN managed OHS instance
    Processes in Instance: VIS_aq.aq.ebs.com
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    OC4J | oafm | N/A | Down
    OC4J | forms | N/A | Down
    OC4J | oacore | N/A | Down
    HTTP_Server | HTTP_Server | 3076 | Alive
    ASG | ASG | N/A | Down
    02/02/12-06:00:38 :: adapcctl.sh: exiting with status 0
    ================================================================================

    os
    Enterprise Linux Enterprise Linux Server release 5 (Carthage) i686
    app
    Oracle Applications Release 12.0
    02/02/12-12:11:22 :: adopmnctl.sh version 120.4
    02/02/12-12:11:22 :: adopmnctl.sh: Starting Oracle Process Manager (OPMN)
    opmnctl: opmn is already running.
    02/02/12-12:11:22 :: adopmnctl.sh: exiting with status 0
    Autocofig:
    while executing the statement adstpall.sh it shows following error in log file,_
    ERROR :
    Exception in TimedProcess...Failed to execute command = /u01/oracle/VIS/inst/apps/VIS_aq/admin/scripts/adopmnctl.sh stop -nopromptmsg
    [Service Control Execution Report]
    The report format is:
    <Service Group> <Service> <Script> <Status>
    Web Entry Point Services Oracle HTTP Server VIS_aq adapcctl.sh Failed
    Web Application Services OACORE OC4J Instance VIS_aq adoacorectl.sh Failed
    Web Application Services FORMS OC4J Instance VIS_aq adformsctl.sh Failed
    Web Application Services OAFM OC4J Instance VIS_aq adoafmctl.sh Failed
    Batch Processing Services OracleTNSListenerAPPS_VIS_aq adalnctl.sh Failed
    Batch Processing Services OracleConcMgrVIS_aq adcmctl.sh Failed
    Batch Processing Services Oracle ICSM VIS_aq ieoicsm.sh Disabled
    Batch Processing Services Oracle Fulfillment Server VIS_aq jtffmctl.sh Failed
    Other Service Group Disabled
    Other Service Group OracleFormsServer-Forms VIS_aq adformsrvctl.sh Disabled
    Other Service Group Oracle Metrics Client VIS_aq adfmcctl.sh Disabled
    Other Service Group Oracle Metrics Server VIS_aq adfmsctl.sh Disabled
    Other Service Group Oracle MWA Service VIS_aq mwactlwrpr.sh Disabled
    Root Service Group Oracle Process Manager for VIS_aq adopmnctl.sh Failed
    ServiceControl is exiting with status 8
    while executing the following stat adstrtal.sh it give following error in log file
    ERROR :
    Exception in TimedProcess...Failed to execute command = /u01/oracle/VIS/inst/apps/VIS_aq/admin/scripts/jtffmctl.sh start -nopromptmsg
    Service Group Other Service Group is disabled.
    [Service Control Execution Report]
    The report format is:
    <Service Group> <Service> <Script> <Status>
    Root Service Group Oracle Process Manager for VIS_aq adopmnctl.sh Failed
    Web Entry Point Services Oracle HTTP Server VIS_aq adapcctl.sh Failed
    Web Application Services OACORE OC4J Instance VIS_aq adoacorectl.sh Failed
    Web Application Services FORMS OC4J Instance VIS_aq adformsctl.sh Failed
    Web Application Services OAFM OC4J Instance VIS_aq adoafmctl.sh Failed
    Batch Processing Services OracleTNSListenerAPPS_VIS_aq adalnctl.sh Failed
    Batch Processing Services OracleConcMgrVIS_aq adcmctl.sh Failed
    Batch Processing Services Oracle ICSM VIS_aq ieoicsm.sh Disabled
    Batch Processing Services Oracle Fulfillment Server VIS_aq jtffmctl.sh Failed
    Other Service Group Disabled
    Other Service Group OracleFormsServer-Forms VIS_aq adformsrvctl.sh Disabled
    Other Service Group Oracle Metrics Client VIS_aq adfmcctl.sh Disabled
    Other Service Group Oracle Metrics Server VIS_aq adfmsctl.sh Disabled
    Other Service Group Oracle MWA Service VIS_aq mwactlwrpr.sh Disabled
    ServiceControl is exiting with status 8

  • Adoacorectl.sh : while start exiting wth status 204 ,start exit with 150

    Hi ,
    adoacorectl.sh adformsctl.sh adoafmctl.sh: adcmctl.sh
    Above four scripts are exiting with status 204 while starting and status 150 while starting
    All of the error log files for above are showing belwo informatin
    Error log file :
    *12/18/10-23:18:18 :: adoacorectl.sh: Stopping OPMN managed OACORE OC4J instance*
    opmnctl: stopping opmn managed processes...
    *================================================================================*
    opmn id=oracle.microexcelhyd.com:6263
    no processes or applications matched this request
    Thanks in advance

    Error message :
    This error (HTTP 500 Internal Server Error) means that the website you are visiting had a server problem which prevented the webpage from displaying.
    Apache error log file :
    [Sun Dec 19 00:17:06 2010] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations
    [Sun Dec 19 00:17:06 2010] [notice] Accept mutex: fcntl (Default: fcntl)
    [Sun Dec 19 00:26:05 2010] [error] [client 10.10.10.126] [ecid: 1292698565:10.10.10.224:6446:0:6,0] mod_oc4j: Failed to find a failover oc4j process for session request for destination: application://oacore (no island or jgroup).
    [Sun Dec 19 00:34:05 2010] [error] [client 10.10.10.126] [ecid: 1292699045:10.10.10.224:6446:0:10,0] mod_oc4j: Failed to find a failover oc4j process for session request for destination: application://oacore (no island or jgroup).
    Adstral.log file
    You are running adstrtal.sh version 120.15
    The logfile for this session is located at /u01/MEV1211/inst/apps/MEV1211_oracle /logs/appl/admin/log/adstrtal.log
    Executing service control script:
    /u01/MEV1211/inst/apps/MEV1211_oracle/admin/scripts/adopmnctl.sh start
    script returned:
    You are running adopmnctl.sh version 120.6
    Starting Oracle Process Manager (OPMN) ...
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl/ admin/log/adopmnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u01/MEV1211/inst/apps/MEV1211_oracle/admin/scripts/adalnctl.sh start
    script returned:
    adalnctl.sh version 120.3
    Checking for FNDFS executable.
    Starting listener process APPS_MEV1211.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl/a dmin/log/adalnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u01/MEV1211/inst/apps/MEV1211_oracle/admin/scripts/adapcctl.sh start
    script returned:
    You are running adapcctl.sh version 120.7.12010000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl/a dmin/log/adapcctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u01/MEV1211/inst/apps/MEV1211_oracle/admin/scripts/adoacorectl.sh start
    script returned:
    You are running adoacorectl.sh version 120.13
    Starting OPMN managed OACORE OC4J instance ...
    adoacorectl.sh: exiting with status 0
    adoacorectl.sh: check the logfile /u01/MEV1211/inst/apps/MEV1211_oracle/logs/app l/admin/log/adoacorectl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u01/MEV1211/inst/apps/MEV1211_oracle/admin/scripts/adformsctl.sh start
    script returned:
    You are running adformsctl.sh version 120.16
    Starting OPMN managed FORMS OC4J instance ...
    adformsctl.sh: exiting with status 0
    adformsctl.sh: check the logfile /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl /admin/log/adformsctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u01/MEV1211/inst/apps/MEV1211_oracle/admin/scripts/adoafmctl.sh start
    script returned:
    You are running adoafmctl.sh version 120.8
    Starting OPMN managed OAFM OC4J instance ...
    adoafmctl.sh: exiting with status 0
    adoafmctl.sh: check the logfile /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl/ admin/log/adoafmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u01/MEV1211/inst/apps/MEV1211_oracle/admin/scripts/adcmctl.sh start
    script returned:
    You are running adcmctl.sh version 120.17.12010000.3
    Starting concurrent manager for MEV1211 ...
    Starting MEV1211_1219@MEV1211 Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl/ad min/log/adcmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u01/MEV1211/inst/apps/MEV1211_oracle/admin/scripts/jtffmctl.sh start
    script returned:
    You are running jtffmctl.sh version 120.3
    Validating Fulfillment patch level via /u01/MEV1211/apps/apps_st/comn/java/class es
    Fulfillment patch level validated.
    Starting Fulfillment Server for MEV1211 on port 9363 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    All enabled services for this node are started.
    adstrtal.sh: Exiting with status 0
    adstrtal.sh: check the logfile /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl/a dmin/log/adstrtal.log for more information ...
    You have new mail in /var/spool/mail/oaebiz
    [oaebiz@oracle scripts]$ vi /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl/a n/log/adstrtal.log
    2 files to edit
    [oaebiz@oracle scripts]$ vi /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl/a dmin/log/adstrtal.log
    [oaebiz@oracle scripts]$ vi /u01/MEV1211/inst/apps/MEV1211_oracle/logs/appl/admi n/log/adstrtal.log
    Executing service control script:
    /u01/MEV1211/inst/apps/MEV1211_oracle/admin/scripts/jtffmctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running jtffmctl.sh version 120.3
    Validating Fulfillment patch level via /u01/MEV1211/apps/apps_st/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for MEV1211 on port 9363 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    [Service Control Execution Report]
    The report format is:
    <Service Group> <Service> <Script> <Status>
    Root Service Enabled
    Root Service Oracle Process Manager for MEV1211_oracle adopmnctl.sh Started
    Web Entry Point Services Enabled
    Web Entry Point Services Oracle HTTP Server MEV1211_oracle adapcctl.sh Started
    Web Entry Point Services OracleTNSListenerAPPS_MEV1211_oracle adalnctl.sh Started
    Web Application Services Enabled
    Web Application Services OACORE OC4J Instance MEV1211_oracle adoacorectl.sh Started
    Web Application Services FORMS OC4J Instance MEV1211_oracle adformsctl.sh Started
    Web Application Services OAFM OC4J Instance MEV1211_oracle adoafmctl.sh Started
    Batch Processing Services Enabled
    Batch Processing Services OracleConcMgrMEV1211_oracle adcmctl.sh Started
    Batch Processing Services Oracle Fulfillment Server MEV1211_oracle jtffmctl.sh Started
    Other Services Disabled
    Other Services OracleFormsServer-Forms MEV1211_oracle adformsrvctl.sh Disabled
    Other Services Oracle Metrics Client MEV1211_oracle adfmcctl.sh Disabled
    Other Services Oracle Metrics Server MEV1211_oracle adfmsctl.sh Disabled
    Other Services Oracle MWA Service MEV1211_oracle mwactlwrpr.sh Disabled
    ServiceControl is exiting with status 0

  • PL/SQL agent is down on 11i

    I clone a TEST 11i instance (build by previous team and not use for a long time) on new TEST server, after that, start the apps tier, everything looks fine, but the PL/SQL agent is down ( I refresh the web component several times). everything else are up.
    I try to check the application, I can not have oracle form window pop-up, like when I chose the system administrator --> request, it should lunch jinitiator and pop-up the oracle application. But I didn't get anything. I think this is the problem with that PL/SQL agent is down.
    After start all services with adstrtal.sh, here is the summary in the end of log.
    [Service Control Execution Report]
    The report format is:
    <Service> <Script> <Status>
    Oracle Apache Server ACCTUT2_owhacct2 adapcctl.sh Started
    OracleTNSListener80APPS_ACCTUT2_owhacct2 adalnctl.sh Started
    OracleConcMgrACCTUT2_owhacct2 adcmctl.sh Started
    OracleFormsServer-Forms60ACCTUT2_owhacct2 adfrmctl.sh Started
    OracleReportServer-Rep60_ACCTUT2 adrepctl.sh Started
    Oracle Metrics Client ACCTUT2_owhacct2 adfmcctl.sh Started
    Oracle Metrics Server ACCTUT2_owhacct2 adfmsctl.sh Started
    Oracle Fulfillment Server ACCTUT2_owhacct2 jtffmctl.sh Started
    Oracle Discoverer services ACCTUT2_owhacct2 addisctl.sh Failed
    Oracle Restricted Apache Server ACCTUT2_owhacct2 adaprstctl.sh Disabled
    Oracle Apache Server ACCTUT2_owhacct2 for PL/SQL adapcctl.sh Disabled
    Oracle TCF SocketServer ACCTUT2_owhacct2 adtcfctl.sh Disabled
    Oracle ICSM ACCTUT2_owhacct2 ieoicsm.sh Disabled
    Oracle iProcurement Bulk Loader ACCTUT2_owhacct2 icxblkctl.sh Disabled
    Note: we don't use discover, so that failed is ok.
    Other than that all scripts returns 0 for me. Can someone help me for this problem?
    Thanks,
    Hongmei

    Just FYI, I finally have this problem fixed, after researched over the metalink and read tons of notes for the past week. Since I can get to Forms60cgi without any problem, it narrows down my search a little bit.
    Subject: Not Able To Open Forms Session After Cloning.
    Doc ID: Note:460071.1
    That's exactly symptoms what I have, I unset env variable LC_COLLATE, and everything is fine.
    I can not beleive it's such a small thing that cause the problem I have been work on for so many days.
    Thanks,
    Hongmei

  • Cannot Start Application on EBS 12.2.4

    Hello,
    I've a stuck when i want to starting EBS application. database, listener already up and finally i want to start EBS with this command:
    NB : I remark error statement with RED text.
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adnodemgrctl.sh start -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running adnodemgrctl.sh version 120.11.12020000.11
    Calling txkChkEBSDependecies.pl to perform dependency checks for ALL MANAGED SERVERS
    Perl script txkChkEBSDependecies.pl got executed successfully
    Starting the Node Manager...
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for details
    adnodemgrctl.sh: exiting with status 0
    adnodemgrctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for more information ...
    .end std out.
    *** ALL THE FOLLOWING FILES ARE REQUIRED FOR RESOLVING RUNTIME ERRORS
    *** Log File = /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/rgf/TXK/txkChkEBSDependecies_Fri_Mar_20_08_04_02_2015/txkChkEBSDependecies_Fri_Mar_20_08_04_02_2015.log
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adalnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 120.3.12020000.2
    Checking for FNDFS executable.
    Starting listener process APPS_DEV.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adalnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adcmctl.sh start
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 120.19.12020000.3
    Starting concurrent manager for DEV ...
    Starting DEV_0320@DEV Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adcmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adadminsrvctl.sh start -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running adadminsrvctl.sh version 120.10.12020000.9
    Starting WLS Admin Server...
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for details
    adadminsrvctl.sh: exiting with status 1
    adadminsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for more information ...
    .end std out.
    .end err out.
    ERROR: Skipping startup of oacore_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    ERROR: Skipping startup of forms-c4ws_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    ERROR: Skipping startup of oafm_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    ERROR: Skipping startup of forms_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    ERROR: Skipping startup of oaea_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    adstrtal.sh: Exiting with status 1
    adstrtal.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adstrtal.log for more information ...
    Then i collecting log about adstral.log:
    03/14/15-17:36:36 :: You are running adstrtal.sh version 120.24.12020000.6
    Setting Service Group Root Service to mode 2
    Setting Service Group Web Administration to mode 2
    Setting Service Group Web Entry Point Services to mode 2
    Setting Service Group Web Application Services to mode 2
    Setting Service Group Batch Processing Services to mode 2
    Service Group Other Services is disabled.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/jtffmctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running jtffmctl.sh version 120.3.12020000.4
    Validating Fulfillment patch level via /apps/DEV/fs1/EBSapps/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for DEV on port 9304 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adopmnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adopmnctl.sh version 120.0.12020000.2
    Starting Oracle Process Manager (OPMN) ...
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adopmnctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adapcctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adapcctl.sh version 120.0.12020000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl start: opmn is already running.
    opmnctl startproc: starting opmn managed processes...
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adapcctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adnodemgrctl.sh start -nopromptmsg
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adnodemgrctl.sh version 120.11.12020000.4
    Calling txkChkEBSDependecies.pl to perform dependency checks for oacore
    Perl script txkChkEBSDependecies.pl got executed successfully
    Starting the Node Manager...
    NMProcess: <Mar 14, 2015 5:36:47 PM> <INFO> <Loading domains file: /apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains>
    NMProcess: Mar 14, 2015 5:36:47 PM weblogic.nodemanager.server.NMServerConfig initDomainsMap
    NMProcess: INFO: Loading domains file: /apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains
    NMProcess: <Mar 14, 2015 5:36:47 PM> <INFO> <Loaded node manager configuration properties from '/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.properties'>
    NMProcess: Mar 14, 2015 5:36:47 PM weblogic.nodemanager.server.NMServer <init>
    NMProcess: INFO: Loaded node manager configuration properties from '/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.properties'
    NMProcess: Node manager v10.3
    NMProcess:
    NMProcess: Configuration settings:
    NMProcess:
    NMProcess: NodeManagerHome=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1
    NMProcess: ListenAddress=orapvapp.vision.com
    NMProcess: ListenPort=5560
    NMProcess: ListenBacklog=50
    NMProcess: SecureListener=false
    NMProcess: AuthenticationEnabled=true
    NMProcess: NativeVersionEnabled=true
    NMProcess: CrashRecoveryEnabled=false
    NMProcess: JavaHome=/apps/DEV/fs1/EBSapps/comn/util/jdk64
    NMProcess: StartScriptEnabled=false
    NMProcess: StopScriptEnabled=false
    NMProcess: StartScriptName=startWebLogic.sh
    NMProcess: StopScriptName=
    NMProcess: LogFile=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.log
    NMProcess: LogLevel=INFO
    NMProcess: LogLimit=0
    NMProcess: LogCount=1
    NMProcess: LogAppend=true
    NMProcess: LogToStderr=true
    NMProcess: LogFormatter=weblogic.nodemanager.server.LogFormatter
    NMProcess: DomainsFile=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains
    NMProcess: DomainsFileEnabled=true
    NMProcess: StateCheckInterval=500
    NMProcess: QuitEnabled=true
    NMProcess: UseMACBroadcast=false
    NMProcess: DomainRegistrationEnabled=true
    NMProcess: DomainsDirRemoteSharingEnabled=false
    NMProcess:
    NMProcess: Domain name mappings:
    NMProcess:
    NMProcess: EBS_domain_DEV -> /apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV
    NMProcess:
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <forms-c4ws_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms-c4ws_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms-c4ws_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <oafm_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oafm_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oafm_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <oacore_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oacore_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oacore_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <forms_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <AdminServer> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/AdminServer/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/AdminServer/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <Plain socket listener started on port 5560, host orapvapp.vision.com>
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.Listener run
    NMProcess: INFO: Plain socket listener started on port 5560, host orapvapp.vision.com
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for details
    adnodemgrctl.sh: exiting with status 0
    adnodemgrctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for more information ... 
    .end std out.
    *** ALL THE FOLLOWING FILES ARE REQUIRED FOR RESOLVING RUNTIME ERRORS
    *** Log File = /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/rgf/TXK/txkChkEBSDependecies_Sat_Mar_14_17_36_38_2015/txkChkEBSDependecies_Sat_Mar_14_17_36_38_2015.log
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adalnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 120.3.12020000.2
    Checking for FNDFS executable.
    Starting listener process APPS_DEV.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adalnctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adcmctl.sh start
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 120.19.12020000.3
    Starting concurrent manager for DEV ...
    Starting DEV_0314@DEV Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adcmctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adadminsrvctl.sh start -nopromptmsg
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adadminsrvctl.sh version 120.10.12020000.2
    Starting WLS Admin Server...
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for details
    adadminsrvctl.sh: exiting with status 0
    adadminsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for more information ... 
    .end std out.
    .end err out.
    Checking the status of the AdminServer...
    .end std out.
    .end err out.
    Checking/updating the JVM argument values for the managed servers ...
    Validated the passed arguments for the option ebs-set-allmanagedsrvargs
    Connecting to t3://orapvapp.vision.com:7005 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'EBS_domain_DEV'.
    Warning: An insecure protocol was used to connect to the
    server. To ensure on-the-wire security, the SSL port or
    Admin port should be used instead.
    Location changed to edit tree. This is a writable tree with
    DomainMBean as the root. To make changes you will need to start
    an edit session via startEdit().
    For more help, use help(edit)
    Starting an edit session ...
    Started edit session, please be sure to save and activate your
    changes once you are done.
    Activating all your changes, this may take a while ...
    The edit lock associated with this edit session is released
    once the activation is completed.
    Activation completed
    Edit session is cancelled successfully
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start oafm_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting oafm_server1...
    admanagedsrvctl.sh: exiting with status 1
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adoafmctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start forms_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting forms_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adformsctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start forms-c4ws_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting forms-c4ws_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adforms-c4wsctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start oacore_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting oacore_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adoacorectl.txt for more information ... 
    .end std out.
    .end err out.
    [Service Control Execution Report]
    The report format is:
      <Service Group>            <Service>                                <Script>                   <Status>
      Root Service                                                                                   Enabled
      Root Service               NodeManager                              adnodemgrctl.sh            Started
      Web Administration                                                                             Enabled
      Web Administration         AdminServer                              adadminsrvctl.sh           Started
      Web Administration         OracleTNSListenerAPPS_DEV_orapvapp       adalnctl.sh                Started
      Web Entry Point Services                                                                       Enabled
      Web Entry Point Services   Oracle HTTP Server DEV_orapvapp          adapcctl.sh                Started
      Web Entry Point Services   Oracle Process Manager for DEV_orapvapp  adopmnctl.sh               Started
      Web Application Services                                                                       Enabled
      Web Application Services   oacore_server1                           admanagedsrvctl.sh         Started
      Web Application Services   forms_server1                            admanagedsrvctl.sh         Started
      Web Application Services   oafm_server1                             admanagedsrvctl.sh         Failed
      Web Application Services   forms-c4ws_server1                       admanagedsrvctl.sh         Started
      Batch Processing Services                                                                      Enabled
      Batch Processing Services  OracleConcMgrDEV_orapvapp                adcmctl.sh                 Started
      Batch Processing Services  Oracle ICSM DEV_orapvapp                 ieoicsm.sh                 Disabled
      Batch Processing Services  Oracle Fulfillment Server DEV_orapvapp   jtffmctl.sh                Started
      Other Services                                                                                 Disabled
      Other Services             OracleFormsServer-Forms DEV_orapvapp     adformsrvctl.sh            Disabled
      Other Services             Oracle MWA Service DEV_orapvapp          mwactlwrpr.sh              Disabled
    Total time taken for execution is 2 mins 35 seconds.
    ServiceControl is exiting with status 1
    03/14/15-17:39:12 :: You are running adstrtal.sh version 120.24.12020000.6
    =================================================================
    03/15/15-06:48:11 :: You are running adstrtal.sh version 120.24.12020000.6
    Setting Service Group Root Service to mode 2
    Setting Service Group Web Administration to mode 2
    Setting Service Group Web Entry Point Services to mode 2
    Setting Service Group Web Application Services to mode 2
    Setting Service Group Batch Processing Services to mode 2
    Service Group Other Services is disabled.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/jtffmctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running jtffmctl.sh version 120.3.12020000.4
    Validating Fulfillment patch level via /apps/DEV/fs1/EBSapps/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for DEV on port 9304 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adopmnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adopmnctl.sh version 120.0.12020000.2
    Starting Oracle Process Manager (OPMN) ...
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adopmnctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adapcctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adapcctl.sh version 120.0.12020000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl start: opmn is already running.
    opmnctl startproc: starting opmn managed processes...
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adapcctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adnodemgrctl.sh start -nopromptmsg
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adnodemgrctl.sh version 120.11.12020000.4
    Calling txkChkEBSDependecies.pl to perform dependency checks for oacore
    Perl script txkChkEBSDependecies.pl got executed successfully
    Starting the Node Manager...
    NMProcess: <Mar 15, 2015 6:48:31 AM> <INFO> <Loading domains file: /apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains>
    NMProcess: Mar 15, 2015 6:48:31 AM weblogic.nodemanager.server.NMServerConfig initDomainsMap
    NMProcess: INFO: Loading domains file: /apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains
    NMProcess: <Mar 15, 2015 6:48:31 AM> <INFO> <Loaded node manager configuration properties from '/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.properties'>
    NMProcess: Mar 15, 2015 6:48:31 AM weblogic.nodemanager.server.NMServer <init>
    NMProcess: INFO: Loaded node manager configuration properties from '/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.properties'
    NMProcess: Node manager v10.3
    NMProcess:
    NMProcess: Configuration settings:
    NMProcess:
    NMProcess: NodeManagerHome=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1
    NMProcess: ListenAddress=orapvapp.vision.com
    NMProcess: ListenPort=5560
    NMProcess: ListenBacklog=50
    NMProcess: SecureListener=false
    NMProcess: AuthenticationEnabled=true
    NMProcess: NativeVersionEnabled=true
    NMProcess: CrashRecoveryEnabled=false
    NMProcess: JavaHome=/apps/DEV/fs1/EBSapps/comn/util/jdk64
    NMProcess: StartScriptEnabled=false
    NMProcess: StopScriptEnabled=false
    NMProcess: StartScriptName=startWebLogic.sh
    NMProcess: StopScriptName=
    NMProcess: LogFile=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.log
    NMProcess: LogLevel=INFO
    NMProcess: LogLimit=0
    NMProcess: LogCount=1
    NMProcess: LogAppend=true
    NMProcess: LogToStderr=true
    NMProcess: LogFormatter=weblogic.nodemanager.server.LogFormatter
    NMProcess: DomainsFile=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains
    NMProcess: DomainsFileEnabled=true
    NMProcess: StateCheckInterval=500
    NMProcess: QuitEnabled=true
    NMProcess: UseMACBroadcast=false
    NMProcess: DomainRegistrationEnabled=true
    NMProcess: DomainsDirRemoteSharingEnabled=false
    NMProcess:
    NMProcess: Domain name mappings:
    NMProcess:
    NMProcess: EBS_domain_DEV -> /apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV
    NMProcess:
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <forms-c4ws_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms-c4ws_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms-c4ws_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <oafm_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oafm_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oafm_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <oacore_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oacore_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oacore_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <forms_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <AdminServer> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/AdminServer/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/AdminServer/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <Plain socket listener started on port 5560, host orapvapp.vision.com>
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.Listener run
    NMProcess: INFO: Plain socket listener started on port 5560, host orapvapp.vision.com
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for details
    adnodemgrctl.sh: exiting with status 0
    adnodemgrctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for more information ... 
    .end std out.
    *** ALL THE FOLLOWING FILES ARE REQUIRED FOR RESOLVING RUNTIME ERRORS
    *** Log File = /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/rgf/TXK/txkChkEBSDependecies_Sun_Mar_15_06_48_21_2015/txkChkEBSDependecies_Sun_Mar_15_06_48_21_2015.log
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adalnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 120.3.12020000.2
    Checking for FNDFS executable.
    Starting listener process APPS_DEV.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adalnctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adcmctl.sh start
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 120.19.12020000.3
    Starting concurrent manager for DEV ...
    Starting DEV_0315@DEV Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adcmctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adadminsrvctl.sh start -nopromptmsg
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adadminsrvctl.sh version 120.10.12020000.2
    Starting WLS Admin Server...
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for details
    adadminsrvctl.sh: exiting with status 0
    adadminsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for more information ... 
    .end std out.
    .end err out.
    Checking the status of the AdminServer...
    .end std out.
    .end err out.
    Checking/updating the JVM argument values for the managed servers ...
    Validated the passed arguments for the option ebs-set-allmanagedsrvargs
    Connecting to t3://orapvapp.vision.com:7005 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'EBS_domain_DEV'.
    Warning: An insecure protocol was used to connect to the
    server. To ensure on-the-wire security, the SSL port or
    Admin port should be used instead.
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start forms_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting forms_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adformsctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start forms-c4ws_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting forms-c4ws_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adforms-c4wsctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start oafm_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting oafm_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adoafmctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start oacore_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting oacore_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adoacorectl.txt for more information ... 
    .end std out.
    .end err out.
    [Service Control Execution Report]
    The report format is:
      <Service Group>            <Service>                                <Script>                   <Status>
      Root Service                                                                                   Enabled
      Root Service               NodeManager                              adnodemgrctl.sh            Started
      Web Administration                                                                             Enabled
      Web Administration         AdminServer                              adadminsrvctl.sh           Started
      Web Administration         OracleTNSListenerAPPS_DEV_orapvapp       adalnctl.sh                Started
      Web Entry Point Services                                                                       Enabled
      Web Entry Point Services   Oracle HTTP Server DEV_orapvapp          adapcctl.sh                Started
      Web Entry Point Services   Oracle Process Manager for DEV_orapvapp  adopmnctl.sh               Started
      Web Application Services                                                                       Enabled
      Web Application Services   oacore_server1                           admanagedsrvctl.sh         Started
      Web Application Services   forms_server1                            admanagedsrvctl.sh         Started
      Web Application Services   oafm_server1                             admanagedsrvctl.sh         Started
      Web Application Services   forms-c4ws_server1                       admanagedsrvctl.sh         Started
      Batch Processing Services                                                                      Enabled
      Batch Processing Services  OracleConcMgrDEV_orapvapp                adcmctl.sh                 Started
      Batch Processing Services  Oracle ICSM DEV_orapvapp                 ieoicsm.sh                 Disabled
      Batch Processing Services  Oracle Fulfillment Server DEV_orapvapp   jtffmctl.sh                Started
      Other Services                                                                                 Disabled
      Other Services             OracleFormsServer-Forms DEV_orapvapp     adformsrvctl.sh            Disabled
      Other Services             Oracle MWA Service DEV_orapvapp          mwactlwrpr.sh              Disabled
    Total time taken for execution is 2 mins 42 seconds.

    Hello,
    I've a stuck when i want to starting EBS application. database, listener already up and finally i want to start EBS with this command:
    NB : I remark error statement with RED text.
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adnodemgrctl.sh start -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running adnodemgrctl.sh version 120.11.12020000.11
    Calling txkChkEBSDependecies.pl to perform dependency checks for ALL MANAGED SERVERS
    Perl script txkChkEBSDependecies.pl got executed successfully
    Starting the Node Manager...
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for details
    adnodemgrctl.sh: exiting with status 0
    adnodemgrctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for more information ...
    .end std out.
    *** ALL THE FOLLOWING FILES ARE REQUIRED FOR RESOLVING RUNTIME ERRORS
    *** Log File = /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/rgf/TXK/txkChkEBSDependecies_Fri_Mar_20_08_04_02_2015/txkChkEBSDependecies_Fri_Mar_20_08_04_02_2015.log
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adalnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 120.3.12020000.2
    Checking for FNDFS executable.
    Starting listener process APPS_DEV.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adalnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adcmctl.sh start
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 120.19.12020000.3
    Starting concurrent manager for DEV ...
    Starting DEV_0320@DEV Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adcmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adadminsrvctl.sh start -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running adadminsrvctl.sh version 120.10.12020000.9
    Starting WLS Admin Server...
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for details
    adadminsrvctl.sh: exiting with status 1
    adadminsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for more information ...
    .end std out.
    .end err out.
    ERROR: Skipping startup of oacore_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    ERROR: Skipping startup of forms-c4ws_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    ERROR: Skipping startup of oafm_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    ERROR: Skipping startup of forms_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    ERROR: Skipping startup of oaea_server1 since the AdminServer is down. AdminServer needs to be up before starting/stopping the managed servers.
    adstrtal.sh: Exiting with status 1
    adstrtal.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adstrtal.log for more information ...
    Then i collecting log about adstral.log:
    03/14/15-17:36:36 :: You are running adstrtal.sh version 120.24.12020000.6
    Setting Service Group Root Service to mode 2
    Setting Service Group Web Administration to mode 2
    Setting Service Group Web Entry Point Services to mode 2
    Setting Service Group Web Application Services to mode 2
    Setting Service Group Batch Processing Services to mode 2
    Service Group Other Services is disabled.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/jtffmctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running jtffmctl.sh version 120.3.12020000.4
    Validating Fulfillment patch level via /apps/DEV/fs1/EBSapps/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for DEV on port 9304 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adopmnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adopmnctl.sh version 120.0.12020000.2
    Starting Oracle Process Manager (OPMN) ...
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adopmnctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adapcctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adapcctl.sh version 120.0.12020000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl start: opmn is already running.
    opmnctl startproc: starting opmn managed processes...
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adapcctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adnodemgrctl.sh start -nopromptmsg
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adnodemgrctl.sh version 120.11.12020000.4
    Calling txkChkEBSDependecies.pl to perform dependency checks for oacore
    Perl script txkChkEBSDependecies.pl got executed successfully
    Starting the Node Manager...
    NMProcess: <Mar 14, 2015 5:36:47 PM> <INFO> <Loading domains file: /apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains>
    NMProcess: Mar 14, 2015 5:36:47 PM weblogic.nodemanager.server.NMServerConfig initDomainsMap
    NMProcess: INFO: Loading domains file: /apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains
    NMProcess: <Mar 14, 2015 5:36:47 PM> <INFO> <Loaded node manager configuration properties from '/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.properties'>
    NMProcess: Mar 14, 2015 5:36:47 PM weblogic.nodemanager.server.NMServer <init>
    NMProcess: INFO: Loaded node manager configuration properties from '/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.properties'
    NMProcess: Node manager v10.3
    NMProcess:
    NMProcess: Configuration settings:
    NMProcess:
    NMProcess: NodeManagerHome=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1
    NMProcess: ListenAddress=orapvapp.vision.com
    NMProcess: ListenPort=5560
    NMProcess: ListenBacklog=50
    NMProcess: SecureListener=false
    NMProcess: AuthenticationEnabled=true
    NMProcess: NativeVersionEnabled=true
    NMProcess: CrashRecoveryEnabled=false
    NMProcess: JavaHome=/apps/DEV/fs1/EBSapps/comn/util/jdk64
    NMProcess: StartScriptEnabled=false
    NMProcess: StopScriptEnabled=false
    NMProcess: StartScriptName=startWebLogic.sh
    NMProcess: StopScriptName=
    NMProcess: LogFile=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.log
    NMProcess: LogLevel=INFO
    NMProcess: LogLimit=0
    NMProcess: LogCount=1
    NMProcess: LogAppend=true
    NMProcess: LogToStderr=true
    NMProcess: LogFormatter=weblogic.nodemanager.server.LogFormatter
    NMProcess: DomainsFile=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains
    NMProcess: DomainsFileEnabled=true
    NMProcess: StateCheckInterval=500
    NMProcess: QuitEnabled=true
    NMProcess: UseMACBroadcast=false
    NMProcess: DomainRegistrationEnabled=true
    NMProcess: DomainsDirRemoteSharingEnabled=false
    NMProcess:
    NMProcess: Domain name mappings:
    NMProcess:
    NMProcess: EBS_domain_DEV -> /apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV
    NMProcess:
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <forms-c4ws_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms-c4ws_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms-c4ws_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <oafm_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oafm_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oafm_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <oacore_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oacore_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oacore_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <forms_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <EBS_domain_DEV> <AdminServer> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/AdminServer/data/nodemanager/startup.properties">
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/AdminServer/data/nodemanager/startup.properties"
    NMProcess: <Mar 14, 2015 5:36:48 PM> <INFO> <Plain socket listener started on port 5560, host orapvapp.vision.com>
    NMProcess: Mar 14, 2015 5:36:48 PM weblogic.nodemanager.server.Listener run
    NMProcess: INFO: Plain socket listener started on port 5560, host orapvapp.vision.com
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for details
    adnodemgrctl.sh: exiting with status 0
    adnodemgrctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for more information ... 
    .end std out.
    *** ALL THE FOLLOWING FILES ARE REQUIRED FOR RESOLVING RUNTIME ERRORS
    *** Log File = /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/rgf/TXK/txkChkEBSDependecies_Sat_Mar_14_17_36_38_2015/txkChkEBSDependecies_Sat_Mar_14_17_36_38_2015.log
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adalnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 120.3.12020000.2
    Checking for FNDFS executable.
    Starting listener process APPS_DEV.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adalnctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adcmctl.sh start
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 120.19.12020000.3
    Starting concurrent manager for DEV ...
    Starting DEV_0314@DEV Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adcmctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adadminsrvctl.sh start -nopromptmsg
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adadminsrvctl.sh version 120.10.12020000.2
    Starting WLS Admin Server...
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for details
    adadminsrvctl.sh: exiting with status 0
    adadminsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for more information ... 
    .end std out.
    .end err out.
    Checking the status of the AdminServer...
    .end std out.
    .end err out.
    Checking/updating the JVM argument values for the managed servers ...
    Validated the passed arguments for the option ebs-set-allmanagedsrvargs
    Connecting to t3://orapvapp.vision.com:7005 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'EBS_domain_DEV'.
    Warning: An insecure protocol was used to connect to the
    server. To ensure on-the-wire security, the SSL port or
    Admin port should be used instead.
    Location changed to edit tree. This is a writable tree with
    DomainMBean as the root. To make changes you will need to start
    an edit session via startEdit().
    For more help, use help(edit)
    Starting an edit session ...
    Started edit session, please be sure to save and activate your
    changes once you are done.
    Activating all your changes, this may take a while ...
    The edit lock associated with this edit session is released
    once the activation is completed.
    Activation completed
    Edit session is cancelled successfully
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start oafm_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting oafm_server1...
    admanagedsrvctl.sh: exiting with status 1
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adoafmctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start forms_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting forms_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adformsctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start forms-c4ws_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting forms-c4ws_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adforms-c4wsctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start oacore_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting oacore_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adoacorectl.txt for more information ... 
    .end std out.
    .end err out.
    [Service Control Execution Report]
    The report format is:
      <Service Group>            <Service>                                <Script>                   <Status>
      Root Service                                                                                   Enabled
      Root Service               NodeManager                              adnodemgrctl.sh            Started
      Web Administration                                                                             Enabled
      Web Administration         AdminServer                              adadminsrvctl.sh           Started
      Web Administration         OracleTNSListenerAPPS_DEV_orapvapp       adalnctl.sh                Started
      Web Entry Point Services                                                                       Enabled
      Web Entry Point Services   Oracle HTTP Server DEV_orapvapp          adapcctl.sh                Started
      Web Entry Point Services   Oracle Process Manager for DEV_orapvapp  adopmnctl.sh               Started
      Web Application Services                                                                       Enabled
      Web Application Services   oacore_server1                           admanagedsrvctl.sh         Started
      Web Application Services   forms_server1                            admanagedsrvctl.sh         Started
      Web Application Services   oafm_server1                             admanagedsrvctl.sh         Failed
      Web Application Services   forms-c4ws_server1                       admanagedsrvctl.sh         Started
      Batch Processing Services                                                                      Enabled
      Batch Processing Services  OracleConcMgrDEV_orapvapp                adcmctl.sh                 Started
      Batch Processing Services  Oracle ICSM DEV_orapvapp                 ieoicsm.sh                 Disabled
      Batch Processing Services  Oracle Fulfillment Server DEV_orapvapp   jtffmctl.sh                Started
      Other Services                                                                                 Disabled
      Other Services             OracleFormsServer-Forms DEV_orapvapp     adformsrvctl.sh            Disabled
      Other Services             Oracle MWA Service DEV_orapvapp          mwactlwrpr.sh              Disabled
    Total time taken for execution is 2 mins 35 seconds.
    ServiceControl is exiting with status 1
    03/14/15-17:39:12 :: You are running adstrtal.sh version 120.24.12020000.6
    =================================================================
    03/15/15-06:48:11 :: You are running adstrtal.sh version 120.24.12020000.6
    Setting Service Group Root Service to mode 2
    Setting Service Group Web Administration to mode 2
    Setting Service Group Web Entry Point Services to mode 2
    Setting Service Group Web Application Services to mode 2
    Setting Service Group Batch Processing Services to mode 2
    Service Group Other Services is disabled.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/jtffmctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running jtffmctl.sh version 120.3.12020000.4
    Validating Fulfillment patch level via /apps/DEV/fs1/EBSapps/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for DEV on port 9304 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adopmnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adopmnctl.sh version 120.0.12020000.2
    Starting Oracle Process Manager (OPMN) ...
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adopmnctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adapcctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adapcctl.sh version 120.0.12020000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl start: opmn is already running.
    opmnctl startproc: starting opmn managed processes...
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adapcctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adnodemgrctl.sh start -nopromptmsg
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adnodemgrctl.sh version 120.11.12020000.4
    Calling txkChkEBSDependecies.pl to perform dependency checks for oacore
    Perl script txkChkEBSDependecies.pl got executed successfully
    Starting the Node Manager...
    NMProcess: <Mar 15, 2015 6:48:31 AM> <INFO> <Loading domains file: /apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains>
    NMProcess: Mar 15, 2015 6:48:31 AM weblogic.nodemanager.server.NMServerConfig initDomainsMap
    NMProcess: INFO: Loading domains file: /apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains
    NMProcess: <Mar 15, 2015 6:48:31 AM> <INFO> <Loaded node manager configuration properties from '/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.properties'>
    NMProcess: Mar 15, 2015 6:48:31 AM weblogic.nodemanager.server.NMServer <init>
    NMProcess: INFO: Loaded node manager configuration properties from '/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.properties'
    NMProcess: Node manager v10.3
    NMProcess:
    NMProcess: Configuration settings:
    NMProcess:
    NMProcess: NodeManagerHome=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1
    NMProcess: ListenAddress=orapvapp.vision.com
    NMProcess: ListenPort=5560
    NMProcess: ListenBacklog=50
    NMProcess: SecureListener=false
    NMProcess: AuthenticationEnabled=true
    NMProcess: NativeVersionEnabled=true
    NMProcess: CrashRecoveryEnabled=false
    NMProcess: JavaHome=/apps/DEV/fs1/EBSapps/comn/util/jdk64
    NMProcess: StartScriptEnabled=false
    NMProcess: StopScriptEnabled=false
    NMProcess: StartScriptName=startWebLogic.sh
    NMProcess: StopScriptName=
    NMProcess: LogFile=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.log
    NMProcess: LogLevel=INFO
    NMProcess: LogLimit=0
    NMProcess: LogCount=1
    NMProcess: LogAppend=true
    NMProcess: LogToStderr=true
    NMProcess: LogFormatter=weblogic.nodemanager.server.LogFormatter
    NMProcess: DomainsFile=/apps/DEV/fs1/FMW_Home/wlserver_10.3/common/nodemanager/nmHome1/nodemanager.domains
    NMProcess: DomainsFileEnabled=true
    NMProcess: StateCheckInterval=500
    NMProcess: QuitEnabled=true
    NMProcess: UseMACBroadcast=false
    NMProcess: DomainRegistrationEnabled=true
    NMProcess: DomainsDirRemoteSharingEnabled=false
    NMProcess:
    NMProcess: Domain name mappings:
    NMProcess:
    NMProcess: EBS_domain_DEV -> /apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV
    NMProcess:
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <forms-c4ws_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms-c4ws_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms-c4ws_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <oafm_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oafm_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oafm_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <oacore_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oacore_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/oacore_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <forms_server1> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms_server1/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/forms_server1/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <EBS_domain_DEV> <AdminServer> <Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/AdminServer/data/nodemanager/startup.properties">
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.AbstractServerManager log
    NMProcess: INFO: Startup configuration properties loaded from "/apps/DEV/fs1/FMW_Home/user_projects/domains/EBS_domain_DEV/servers/AdminServer/data/nodemanager/startup.properties"
    NMProcess: <Mar 15, 2015 6:48:32 AM> <INFO> <Plain socket listener started on port 5560, host orapvapp.vision.com>
    NMProcess: Mar 15, 2015 6:48:32 AM weblogic.nodemanager.server.Listener run
    NMProcess: INFO: Plain socket listener started on port 5560, host orapvapp.vision.com
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for details
    adnodemgrctl.sh: exiting with status 0
    adnodemgrctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adnodemgrctl.txt for more information ... 
    .end std out.
    *** ALL THE FOLLOWING FILES ARE REQUIRED FOR RESOLVING RUNTIME ERRORS
    *** Log File = /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/rgf/TXK/txkChkEBSDependecies_Sun_Mar_15_06_48_21_2015/txkChkEBSDependecies_Sun_Mar_15_06_48_21_2015.log
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adalnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 120.3.12020000.2
    Checking for FNDFS executable.
    Starting listener process APPS_DEV.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adalnctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adcmctl.sh start
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 120.19.12020000.3
    Starting concurrent manager for DEV ...
    Starting DEV_0315@DEV Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adcmctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/adadminsrvctl.sh start -nopromptmsg
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adadminsrvctl.sh version 120.10.12020000.2
    Starting WLS Admin Server...
    Refer /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for details
    adadminsrvctl.sh: exiting with status 0
    adadminsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adadminsrvctl.txt for more information ... 
    .end std out.
    .end err out.
    Checking the status of the AdminServer...
    .end std out.
    .end err out.
    Checking/updating the JVM argument values for the managed servers ...
    Validated the passed arguments for the option ebs-set-allmanagedsrvargs
    Connecting to t3://orapvapp.vision.com:7005 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'EBS_domain_DEV'.
    Warning: An insecure protocol was used to connect to the
    server. To ensure on-the-wire security, the SSL port or
    Admin port should be used instead.
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start forms_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting forms_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adformsctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start forms-c4ws_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting forms-c4ws_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adforms-c4wsctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start oafm_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting oafm_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adoafmctl.txt for more information ... 
    .end std out.
    .end err out.
    Executing service control script:
    /apps/DEV/fs1/inst/apps/DEV_orapvapp/admin/scripts/admanagedsrvctl.sh start oacore_server1 -nopromptmsg
    Timeout specified in context file: -1 second(s)
    script returned:
    You are running admanagedsrvctl.sh version 120.14.12020000.4
    Starting oacore_server1...
    admanagedsrvctl.sh: exiting with status 0
    admanagedsrvctl.sh: check the logfile /apps/DEV/fs1/inst/apps/DEV_orapvapp/logs/appl/admin/log/adoacorectl.txt for more information ... 
    .end std out.
    .end err out.
    [Service Control Execution Report]
    The report format is:
      <Service Group>            <Service>                                <Script>                   <Status>
      Root Service                                                                                   Enabled
      Root Service               NodeManager                              adnodemgrctl.sh            Started
      Web Administration                                                                             Enabled
      Web Administration         AdminServer                              adadminsrvctl.sh           Started
      Web Administration         OracleTNSListenerAPPS_DEV_orapvapp       adalnctl.sh                Started
      Web Entry Point Services                                                                       Enabled
      Web Entry Point Services   Oracle HTTP Server DEV_orapvapp          adapcctl.sh                Started
      Web Entry Point Services   Oracle Process Manager for DEV_orapvapp  adopmnctl.sh               Started
      Web Application Services                                                                       Enabled
      Web Application Services   oacore_server1                           admanagedsrvctl.sh         Started
      Web Application Services   forms_server1                            admanagedsrvctl.sh         Started
      Web Application Services   oafm_server1                             admanagedsrvctl.sh         Started
      Web Application Services   forms-c4ws_server1                       admanagedsrvctl.sh         Started
      Batch Processing Services                                                                      Enabled
      Batch Processing Services  OracleConcMgrDEV_orapvapp                adcmctl.sh                 Started
      Batch Processing Services  Oracle ICSM DEV_orapvapp                 ieoicsm.sh                 Disabled
      Batch Processing Services  Oracle Fulfillment Server DEV_orapvapp   jtffmctl.sh                Started
      Other Services                                                                                 Disabled
      Other Services             OracleFormsServer-Forms DEV_orapvapp     adformsrvctl.sh            Disabled
      Other Services             Oracle MWA Service DEV_orapvapp          mwactlwrpr.sh              Disabled
    Total time taken for execution is 2 mins 42 seconds.

  • I am getting 500 Internal Server Error while accessing Apps in browser.

    Hi,
    I have EBS installed on OEL. All the database service and Application tier services are Up. but when I am trying to connect to it it giving me error
    500 Internal Server Error
    Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.I checked the log of adstrtal.log file. Here if the last entry in that file
    [Service Control Execution Report]
    The report format is:
      <Service Group>            <Service>                               <Script>         <Status>
      Root Service                                                                        Enabled
      Root Service               Oracle Process Manager for VIS_testapp  adopmnctl.sh     Started
      Web Entry Point Services                                                            Enabled
      Web Entry Point Services   Oracle HTTP Server VIS_testapp          adapcctl.sh      Started
      Web Entry Point Services   OracleTNSListenerAPPS_VIS_testapp       adalnctl.sh      Started
      Web Application Services                                                            Enabled
      Web Application Services   OACORE OC4J Instance VIS_testapp        adoacorectl.sh   Started
      Web Application Services   FORMS OC4J Instance VIS_testapp         adformsctl.sh    Started
      Web Application Services   OAFM OC4J Instance VIS_testapp          adoafmctl.sh     Started
      Batch Processing Services                                                           Enabled
      Batch Processing Services  OracleConcMgrVIS_testapp                adcmctl.sh       Started
      Batch Processing Services  Oracle Fulfillment Server VIS_testapp   jtffmctl.sh      Started
      Other Services                                                                      Disabled
      Other Services             OracleFormsServer-Forms VIS_testapp     adformsrvctl.sh  Disabled
      Other Services             Oracle Metrics Client VIS_testapp       adfmcctl.sh      Disabled
      Other Services             Oracle Metrics Server VIS_testapp       adfmsctl.sh      Disabled
      Other Services             Oracle MWA Service VIS_testapp          mwactlwrpr.sh    Disabled
    ServiceControl is exiting with status 0I checked application log file and got this there
    html: Error initializing servlet
    java.lang.NoClassDefFoundError: Could not initialize class oracle.apps.fnd.profiles.Profiles
         at oracle.apps.fnd.sso.AppsLoginRedirect.AppsSetting(AppsLoginRedirect.java:126)
         at oracle.apps.fnd.sso.AppsLoginRedirect.init(AppsLoginRedirect.java:170)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2379)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4830)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4754)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2978)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:738)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    12/12/21 14:38:03.351 html: Servlet error
    java.lang.NoClassDefFoundError: Could not initialize class oracle.apps.fnd.profiles.Profiles
         at oracle.apps.fnd.sso.AppsLoginRedirect.AppsSetting(AppsLoginRedirect.java:126)
         at oracle.apps.fnd.sso.AppsLoginRedirect.init(AppsLoginRedirect.java:170)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2379)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4830)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4754)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2978)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:738)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)Regards,
    Ajay Sharma

    Ajay Sharma wrote:
    Hi,
    Please tell me How to run autoconfig. on application tier ?
    should I run this after shutting down the application tier ?
    Regards,
    AjayBefore you run AutoConfig, please compile the JSP files as per the doc referenced above and see if this helps (stop the application services, compile the JSP pages, then start the application services).
    You can run AutoConfig while the application services are up, but you need to restart after AutoConfig is done.
    Thanks,
    Hussein

  • [ERROR]While running appsTier

    Dear,
    We have problems when cloning applications from production to development. Problem encountered is when running "*appTier*". But by the time the process is running up a few errors, and enclosed them in an attachment.
    for the problem you can see log below:
    =======================================================================
    +02/29/12-18:04:33 :: You are running adstrtal.sh version 120.13.12000000.4+
    Setting Service Group Root Service to mode 2
    Setting Service Group Web Entry Point Services to mode 2
    Setting Service Group Web Application Services to mode 2
    Setting Service Group Batch Processing Services to mode 2
    Service Group Other Services is disabled.
    Executing service control script:
    +/u01/DEV/inst/apps/DEV_apps/admin/scripts/adopmnctl.sh start+
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adopmnctl.sh version 120.4.12000000.3
    Starting Oracle Process Manager (OPMN) ...
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /u01/DEV/inst/apps/DEV_apps/logs/appl/admin/log/adopmnctl.txt for more information ...
    +.end std out.+
    +.end err out.+
    Executing service control script:
    +/u01/DEV/inst/apps/DEV_apps/admin/scripts/adalnctl.sh start+
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 120.3
    Checking for FNDFS executable.
    Starting listener process APPS_DEV.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /u01/DEV/inst/apps/DEV_apps/logs/appl/admin/log/adalnctl.txt for more information ...
    +.end std out.+
    +.end err out.+
    Executing service control script:
    +/u01/DEV/inst/apps/DEV_apps/admin/scripts/adapcctl.sh start+
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adapcctl.sh version 120.6.12000000.4
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    adapcctl.sh: exiting with status 204
    adapcctl.sh: check the logfile /u01/DEV/inst/apps/DEV_apps/logs/appl/admin/log/adapcctl.txt for more information ...
    +.end std out.+
    +.end err out.+
    Executing service control script:
    +/u01/DEV/inst/apps/DEV_apps/admin/scripts/adoacorectl.sh start+
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adoacorectl.sh version 120.11.12000000.3
    Starting OPMN managed OACORE OC4J instance  ...
    adoacorectl.sh: exiting with status 0
    adoacorectl.sh: check the logfile /u01/DEV/inst/apps/DEV_apps/logs/appl/admin/log/adoacorectl.txt for more information ...
    +.end std out.+
    +.end err out.+
    Executing service control script:
    +/u01/DEV/inst/apps/DEV_apps/admin/scripts/adformsctl.sh start+
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adformsctl.sh  version 120.12.12000000.6
    Starting OPMN managed FORMS OC4J instance  ...
    Calling txkChkFormsDeployment.pl to check whether latest FORMSAPP.EAR is deployed...
    ERROR processing <arg> txkrgf : Argument value cannot be an empty string
    Error while executing the perl script txkChkFormsDeployment.pl
    +/u01/DEV/inst/apps/DEV_apps/logs/appl/admin/log/adformsctl.txt+
    adformsctl.sh: exiting with status 1
    +.end std out.+
    *******FATAL ERROR*******
    PROGRAM : (/u01/DEV/apps/apps_st/appl/fnd/12.0.0/bin/txkrun.pl)
    TIME    : Wed Feb 29 18:05:00 2012
    +FUNCTION: TXK::Common::doError [ Level 1 ]+
    ERRORMSG: ERROR processing <arg> txkrgf : Argument value cannot be an empty string
    +.end err out.+
    Executing service control script:
    +/u01/DEV/inst/apps/DEV_apps/admin/scripts/adoafmctl.sh start+
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adoafmctl.sh version 120.6.12000000.3
    Starting OPMN managed OAFM OC4J instance  ...
    adoafmctl.sh: exiting with status 0
    adoafmctl.sh: check the logfile /u01/DEV/inst/apps/DEV_apps/logs/appl/admin/log/adoafmctl.txt for more information ...
    +.end std out.+
    +.end err out.+
    Executing service control script:
    +/u01/DEV/inst/apps/DEV_apps/admin/scripts/adcmctl.sh start+
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 120.14.12000000.4
    Starting concurrent manager for DEV ...
    Starting DEV_0229@DEV Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /u01/DEV/inst/apps/DEV_apps/logs/appl/admin/log/adcmctl.txt for more information ...
    +.end std out.+
    +.end err out.+
    Executing service control script:
    +/u01/DEV/inst/apps/DEV_apps/admin/scripts/ieo/ieoicsm.sh start+
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running ieoicsm.sh version 120.6
    Starting Oracle ICSM server ...
    ieoicsm.sh: exiting with status 0
    +.end std out.+
    +.end err out.+
    Executing service control script:
    +/u01/DEV/inst/apps/DEV_apps/admin/scripts/jtffmctl.sh start+
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running jtffmctl.sh version 120.3
    Validating Fulfillment patch level via /u01/DEV/apps/apps_st/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for DEV on port 9301 ...
    jtffmctl.sh: exiting with status 0
    +.end std out.+
    +.end err out.+
    +[Service Control Execution Report]+
    The report format is:
    +<Service Group> <Service> <Script> <Status>+
    Root Service                                                                     Enabled
    Root Service               Oracle Process Manager for DEV_apps  adopmnctl.sh     Started
    Web Entry Point Services                                                         Enabled
    Web Entry Point Services   Oracle HTTP Server DEV_apps          adapcctl.sh      Failed
    Web Entry Point Services   OracleTNSListenerAPPS_DEV_apps       adalnctl.sh      Started
    Web Application Services                                                         Enabled
    Web Application Services   OACORE OC4J Instance DEV_apps        adoacorectl.sh   Started
    Web Application Services   FORMS OC4J Instance DEV_apps         adformsctl.sh    Failed
    Web Application Services   OAFM OC4J Instance DEV_apps          adoafmctl.sh     Started
    Batch Processing Services                                                        Enabled
    Batch Processing Services  OracleConcMgrDEV_apps                adcmctl.sh       Started
    Batch Processing Services  Oracle ICSM DEV_apps                 ieoicsm.sh       Started
    Batch Processing Services  Oracle Fulfillment Server DEV_apps   jtffmctl.sh      Started
    Other Services                                                                   Disabled
    Other Services             OracleFormsServer-Forms DEV_apps     adformsrvctl.sh  Disabled
    Other Services             Oracle Metrics Client DEV_apps       adfmcctl.sh      Disabled
    Other Services             Oracle Metrics Server DEV_apps       adfmsctl.sh      Disabled
    Other Services             Oracle MWA Service DEV_apps          mwactlwrpr.sh    Disabled
    ServiceControl is exiting with status 2
    +02/29/12-18:05:19 :: adstrtal.sh: exiting with status 2+
    =======================================================================
    So, can you help us to solved That error.
    Thanks before

    Hi;
    R12 : After Clone 'adformsctl.sh' fails to start Forms Server with error for script 'txkChkFormsDeployment.pl' [ID 1138306.1]That note is only referance for your issue. Recheck clone note and try again...If its not help please log a SR
    Regard
    Helios

  • 11.5.10.2 Post Installation Check Failures in Linux

    Hi All,
    I had installed 11i (11.5.10.2) in an external drive (made as a Linux OS through VM Ware) and was trying to access through my laptop (having OS XP Professional)
    The Installation of 11i in Linux (RHEL 4) went fine, except during the post installation checks I got the following errors:
    1. JSP Check failed
    and
    2. Environment File Check failed
    ============================================
    For the JSP Check:
    a. I ensured the dbc file in $FND_SECURE top is fine
    b. The jserv.log file shows as below:
    java.lang.NumberFormatException: For input string: "%s_servlet_init_timeout%"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Long.parseLong(Long.java:394)
    at java.lang.Long.<init>(Long.java:630)
    at org.apache.java.util.Configurations.getLong(Configurations.java:678)
    at org.apache.java.util.Configurations.getLong(Configurations.java:657)
    at org.apache.jserv.JServServletManager.init(JServServletManager.java:320)
    at org.apache.jserv.JServ.start(JServ.java:622)
    c. The mod_jserv.log is as follows:
    [04/07/2008 15:42:21:813] (EMERGENCY) ajp12: function auth fail
    [04/07/2008 15:42:22:233] (EMERGENCY) ajp12: auth did not receive challenge size
    [04/07/2008 15:42:22:234] (EMERGENCY) ajp12: function auth fail
    [04/07/2008 15:42:29:394] (EMERGENCY) ajp12: auth did not receive challenge size
    [04/07/2008 15:42:29:395] (EMERGENCY) ajp12: function auth fail
    [04/07/2008 15:42:29:763] (EMERGENCY) ajp12: auth did not receive challenge size
    d. I had given the virtual host as vision.imax.info, where imax.info is a named server that is registered
    I am able to dig vision.imax.info, as shown below:
    [root@vision etc]# dig vision.imax.info
    ; <<>> DiG 9.2.4 <<>> vision.imax.info
    ;; global options: printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 3228
    ;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;vision.imax.info. IN A
    ;; Query time: 12 msec
    ;; SERVER: 192.168.222.5#53(192.168.222.5)
    ;; WHEN: Fri Jul 4 18:59:56 2008
    ;; MSG SIZE rcvd: 34
    but please note that my ifconfig gives the following output:
    [root@vision etc]# ifconfig
    eth0 Link encap:Ethernet HWaddr 00:0C:29:5E:C8:97
    inet6 addr: fe80::20c:29ff:fe5e:c897/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:15421 errors:0 dropped:0 overruns:0 frame:0
    TX packets:11828 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:1464189 (1.3 MiB) TX bytes:2554712 (2.4 MiB)
    Interrupt:177 Base address:0x1080
    eth0:0 Link encap:Ethernet HWaddr 00:0C:29:5E:C8:97
    inet addr:192.168.222.5 Bcast:192.168.222.255 Mask:255.255.255.0
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    Interrupt:177 Base address:0x1080
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:2058114 errors:0 dropped:0 overruns:0 frame:0
    TX packets:2058114 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:297458110 (283.6 MiB) TX bytes:297458110 (283.6 MiB)
    and the linux OS having the static IP as follows:
    IP: 192.168.222.5
    Mask: 255.255.255.0
    Gateway: 192.168.222.5
    Primary DNS: 192.168.222.5
    ========================
    And for the Environment File check:
    The Error is:
    RW 10006: Error: - APPL_TOP environment files has uninstantiated variables
    File = /d01/oracle/visappl/VIS_vision.env
    But I am not able to locate which variable is not instantiated...
    Please help me to resolve this out... Please correct me if I am wrong any where..
    Many Thanks....

    Please note that, when I restarted the application services in a different terminal, I got the following script Error, only for the below mentioned script:
    Executing service control script:
    /d01/oracle/viscomn/admin/scripts/VIS_vision/addisctl.sh start
    script returned:
    addisctl.sh version 115.14
    /d01/oracle/visora/8.0.6/vbroker/bin/osagent
    Started osagent.
    Osagent logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/osagent.log.
    Waiting for OAD to start...
    Started OAD.
    OAD logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/oad.log.
    Failed to start locator.
    Cannot bind to OAD. Re-starting...
    OAD is stopped
    Osagent is stopped
    Unable to stop locator. No process-id file found.
    Unable to stop gatekeeper. No process-id file found.
    Unable to stop any Discoverer Sessions. No process-id file found.
    Unable to stop any Discoverer Preference. No process-id file found.
    Unable to stop any Discoverer Collector. No process-id file found.
    /d01/oracle/visora/8.0.6/vbroker/bin/osagent
    Started osagent.
    Osagent logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/osagent.log.
    Waiting for OAD to start...
    Started OAD.
    OAD logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/oad.log.
    Failed to start locator.
    Registering Discoverer Session
    Registering the Collector
    Applying preferences from file : /d01/oracle/visora/8.0.6/discwb4/util/pref.txt
    Finished applying preferences
    Closing down registry..
    Registry File sync...
    Registering Discoverer Preference Repository
    addisctl.sh: exiting with status 127
    .end std out.
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    .end err out.
    Check logfile /d01/oracle/viscomn/admin/log/VIS_vision/07042249.log for details
    Exiting with status 1
    ====================
    The /d01/oracle/viscomn/admin/log/VIS_vision/07042249.log file shows the following too:
    [Service Control Execution Report]
    The report format is:
    <Service> <Script> <Status>
    Oracle Apache Server VIS_vision adapcctl.sh Started
    OracleTNSListener80APPS_VIS_vision adalnctl.sh Started
    OracleConcMgrVIS_vision adcmctl.sh Started
    OracleFormsServer-Forms60VIS_vision adfrmctl.sh Started
    OracleReportServer-Rep60_VIS adrepctl.sh Started
    Oracle Metrics Client VIS_vision adfmcctl.sh Started
    Oracle Metrics Server VIS_vision adfmsctl.sh Started
    Oracle Fulfillment Server VIS_vision jtffmctl.sh Started
    Oracle Discoverer services VIS_vision addisctl.sh Failed
    Oracle Restricted Apache Server VIS_vision adaprstctl.sh Disabled
    Oracle Apache Server VIS_vision for PL/SQL adapcctl.sh Disabled
    Oracle TCF SocketServer VIS_vision adtcfctl.sh Disabled
    Oracle ICSM VIS_vision ieoicsm.sh Disabled
    Oracle iProcurement Bulk Loader VIS_vision icxblkctl.sh Disabled
    ServiceControl is exiting with status 1
    Where could be the problem for the above issues....

  • Wily Enterprise Manager Service not Started in Windows 2008 Server

    Hi All,
    Our Solution Manager is in EHP1 SP21 and OS-Windows 2008 Server.
    We installed Wily Enterprise Manager 8.0. and found 1 non-fatal error in the installation log. The service is not starting.
    However it works fine for Windows 2003 Server.
    Can anyone encountered with the same kind of problem?
    This is the latest log file information:
    Summary
    Installation: Successfulwith errors.
    387 Successes
    0 Warnings
    1 NonFatalErrors
    0 FatalErrors
    Action Notes:
    Execute ANT Script:       Script:
                              Status: ERROR
                              Additional Notes: ERROR - E:\usr\sap\ccms\wilyintroscope\install\em.installer.exec.ant15.xml:425: Timeout: killed the sub-process
    Thank you in advance.
    Regards
    Sanjai

    Note 1273028 - Introscope 8 Release Notes resoved this issue.
    Known problems in all Releases 8.x
    2. Windows Server 2008 is not yet officially supported by CA Wily for the Enterprise Manager. If you want to install the Enterprise Manager anyway, set the "Windows 2003 compatibility mode" for the installer before launching it. To activate this mode, right click on the installer.exe file in the Windows Explorer, select tab "Compatibility", activate the check box for compatibility mode and select Windows 2003. If you do not set this, the installer will consider your OS as Unix and install shell scripts (no suffix) instead of batch files (.bat) and leave out some files for Windows Service registration.
    If the windows service still fails to start please check if files ServiceWrapper.jar and ServiceWrapper.dll are present in folder lib. If not download them from attachment of this note.
    The service should start although giving an error message regarding the ServiceWrapper.dll. You can ignore this error.

Maybe you are looking for

  • Touchsmart IQ8461 michrophone with windows 8.1 not working

    Upgraded my Touchsmart IQ8461 to Windows 8.1 and it does not work.  Tried to get new driver but install indicates that my hardware is not supported?

  • X-7 blacks out when making a call or receiving????...

    It's my 3rd time of this problem 1 time I took help of nokia care center but but they couldn't permanently solve it 2nd time I tried Google the problem and it says to restart if nothing happens restore it this helped that time but now the device does

  • Word processor on iphone

    anyone have any idea if on the new software coming out they will have a word processor, i mean its supposed to be the latest technology and not having a word processor is a real pain <Edited by Moderator: Language - Please See Terms of Use>

  • Quicktime  will not fully open!

    This apparently just began a few days ago; when I try to open Quicktime the opening dialog box shows up and "loading" shows at the bottom. However, it just STAYS that way; never fully opens! I can still use the application; open video files etc... Ca

  • OEM reports with charts

    How to email a report with embedded images of metric charts? My mailed reports are showing a text message like "Chart titled" instead of an image in the place of a chart !