How to view output on the server?

When I run WLS locally inside JDeveloper, I can see the output in the console when I have System.out.println() in my web application code.
After I deploy it to the server, where do I go to see the same output?
I'm using WLS 10.3.2

If you still don't see the System.out.printlns in the logs folder look in this file. When you start the weblogic server usually you use like in windows startWeblogic.cmd. So look in that console and it should have the output. Same thing on Linux also, see the shell wiindow where you started weblogic and there you will see the output.
Usually the bestpractice in linux is to use nohup command to start weblogic and redirect the output to any file. In this way, you can close that shell and still the weblogic will be running and all outputs will be in this log file. You can write a simple file like admin_start.sh with below lines and use this to start weblogic like ./admin_start.sh
DOMAIN_HOME="/yourFullPath/Oracle/Middleware115/user_projects/domains/yourDomain1"
LOG_FILE="/yourFullPath/Oracle/Middleware115/user_projects/domains/yourDomain1/logs/admin.log" (The file name can be anything)
nohup ${DOMAIN_HOME}/bin/startWebLogic.sh > ${LOG_FILE} &
Thanks
Ravi Jegga

Similar Messages

  • How to change language of the server monitor ?

    hi all,
    How to change language of the server monitor ? i got it in japanese and would like to turn it into English.
    Thx for your help,

    We use japanese strings only when your server locale has "jp": FindNoCase("Japan", GetLocale()) NEQ 0. So you may not be able to individually change  server monitor's flash client, but there are two ways to change it back to english on server level
    1) Check your server locale and change it to anything but japanese.
    2) Rename smresource_en.xml to smresource_jp.xml in CFIDE\administrator\monitor (take a back up).
    Thanks,
    Chandan Kumar

  • How to view/edit/delete the user created profile in oracle 9i? Very Urgent

    Friends,
    I logged in as system in oracle 9i.
    SQL> create profile testpro limit
    2 idle_time 1;
    Profile created.
    SQL> alter user scott profile testpro;
    User altered.
    Then i logged in to sqlplusw as a scott user.
    and i waited for 10 mins after that.
    sql> select * from cat;
    its working......
    how come? i have already set a idle time to 1 minute.
    Please correct me if im wrong.
    Also, how can i view/edit/delete the user created profile.
    Thanks & Regards
    Sathyguy
    Message was edited by:
    sathyguy

    The resource limits set for a profile are enforced only when you enable resource limitation for the database.
    Enabling and Disabling Resource Limits While the Database is Open
    ALTER SYSTEM SET RESOURCE_LIMIT = TRUE;
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/users.htm#15451
    Manu

  • Photosmart 7520 - How to view on screen the printer status report

    How do I view on the monitor or printer screen the 'Total pages printed' figure, which otherwise I need to frequently print out via "Maintain your computer>Device reports>Print Status report"?  I'm using HP Photosmart 7520e, wireless connected, Windows 7 Ult.  Thanks.
    This question was solved.
    View Solution.

     Hello emmandell,
    Welcome back to the HP Support forums.  I understand that you would like to learn how to view your page count without having to print a Printer Status Report.
    The information can be viewed online using the printer's embedded web server (EWS).  Please follow the steps below:
    1)       Press the wireless icon  on the front panel of the printer to find the printer's ip address.
    2)      Type the ip address of the printer into the address bar of your browser, this will bring up the EWS. I recommend that you bookmark this web page for future use.  Then please click on 'Tools' tab.
    3)      Click on 'Reports' along the left hand side menu
    4)      This will print up a usage screen with the total page count shown across the top
    Hope this helps you save on ink and paper.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How to view database values from server to client

    hi friends
    i have database in server side, i am storing values to the database from client side machine through remote methods. But now i need to view the database values from the server side. how to do this using RMI.
    Plz give me suggestion.
    by
    vinod

    Why do you have to use RMI for this task? That way you've got to write both a client and a server. Just use JDBC directly from the server.

  • How to View Output From Customized Form

    I have developed a new customized form and attach it in Receipt Form Menu. I have added a button of Print Receipt on the form by name Print Screen.I have added code behind the Print Receipt Button that when it would be clicked report of receipt would be generated.When i click Print Receipt Buttton Request is submitted to Concurrent Manager and i have to view it from Concurrent Request Window.My requirement is when i click Print Screen Button output would be generated and viewable at that place and i dont need to go in concurrent request window to view and print that output.Is there any solution please suggest me.I am thankful in advance to all.

    Hi;
    Please check [this |http://forums.oracle.com/forums/forum.jspa?forumID=129] and see it helpful
    Also see:
    How to view the output submitted by other user
    How to customize look of a view
    Regard
    Helios

  • How to view icloud on the iphone?

    how to view apps on my icloud account through the iphone?

    Just turn on your iPhone. All your apps should be available for you to use.

  • How to leave emails on the server in os7?

    Where is the option to leave a copy of all emails on the server on Iphone os7 when using IMAP accounts?  It used to be under settings, advanced, but in os7 I can't find it anywhere? all my emails downloaded to my iphone are deleted from the server and I need it to stop.

    Follow these directions, but pay attention to comment 1 regarding drafts. Best instructions I've seen on how to set gmail up as IMAP.
    http://complexdiagrams.com/2009/01/19/imap-for-gmail-mailapp-iphone/

  • How to save files on the server?

    I want to save a log on the server, how can I do this using Oracle?
    In SQL Server I used the "bcp" command.
    Thanks.

    as forbrich suggested you can use the UTL_FILE built-in package. here is an example code to read and write to a file.
    CREATE OR REPLACE PROCEDURE Read_Write_File (pvInFile Varchar2,
                                                 pOutFile Varchar2) IS
    vInFile   utl_file.file_type;
    vOutFile  utl_file.file_type;
    vNewLine  VARCHAR2(4000);
    x         PLS_INTEGER;
    vFlag  BOOLEAN := TRUE;
    BEGIN
      -- assuming Your_Directory is $HOME/myTxtFiles in a Unix Platform
      -- to check if definition is existing Select Directory_Name, Directory_Path From All_Directories;
      vInFile := utl_file.fopen('Your_Directory',pInFile,'r');
      vOutFile := utl_file.fopen('Your_Directory',pOutFile, 'w');
      IF utl_file.is_open(vInFile) THEN
        LOOP
          BEGIN
            utl_file.get_line(vInFile, vNewLine);
            x := utl_file.fgetpos(vInFile);
            dbms_output.put_line(TO_CHAR(x));
            utl_file.put_line(vOutFile, vNewLine, FALSE);
            utl_file.fflush(vOutFile);
            IF vFlag = TRUE THEN
              utl_file.fseek(vInFile, NULL, -30);
              vFlag := FALSE;
            END IF;
          EXCEPTION
            WHEN NO_DATA_FOUND THEN
              EXIT;
          END;
        END LOOP;
        COMMIT;
      END IF;
      utl_file.fclose(vInFile);
      utl_file.fclose(vOutFile);
    EXCEPTION
      WHEN others THEN
        RAISE_APPLICATION_ERROR (-20099, 'Unknown UTL_FILE Error');
    END;
    /

  • How to stop caching on the server

    Hello,
    Can anyone please guide me as to how do we disable caching on the
    portal server since the changes i am making in the JSP pages are not
    reflected immediately. I have already cleared the browser cache but now i
    want to clear the cache on the portalserver. I have also cleared all the
    class files created when the jsp was compiled but still there is no change.
    If anyone has faced similar problems and can throw some light on it.
    akshay

    Akshay
    I faced the same problem as you did.I went thru what Adrian advisesd and it works.Did
    you update teh correct XML file?.In my case,the weblogic.xml file is whawt holds
    this property and resides in
    D:\wlportal4.0\applications\portal\dp2\WEB-INF\weblogic.xml
    where 'dp2' is the sample portal iam working on.
    I hope this helps.
    - Logesh
    "akshay" <[email protected]> wrote:
    Hi Adrian,
    Thanks again for the quick reply but even this setting
    did not
    work.
    This has created a major development problem and the only way out i found
    was either to restart the server or change the name of the file which
    i am
    accessing. Please suggest some other way to achieve this no caching state
    on
    the server i even cleared the browser cache.
    Thanks in advance
    akshay
    "Adrian Fletcher" <[email protected]> wrote in message
    news:[email protected]...
    Akshay,
    Ok, now I understand your problem. What you need to do is to changethe
    JSP
    operating parameters for this webapp. These parameters are found inthe
    weblogic.xml file associated with your webapp. The reference for thejsp
    descriptor element can be found here:
    http://edocs/wls/docs61/webapp/weblogic_xml.html#1012195
    I think the parameter you need to change is pageCheckSeconds. Ifyou set
    this to 0 then the page is checked every request.
    Hope this helps,
    Sincerely,
    Adrian.
    Adrian Fletcher.
    Senior Software Engineer,
    BEA Systems, Inc.
    Boulder, CO.
    email: [email protected]
    "akshay" <[email protected]> wrote in message
    news:[email protected]...
    Hi adrian,
    Thanks for your quick reply I am not aware about theclustered
    environment but here i have created a jsp page (named first.sjp)
    to
    check
    a
    connection pool i have created which i have placed it along with
    the
    index.jsp page of stockportal and using the following URl i havemade a
    request http://<myportalserver>:7501/stockportal/first.jsp the first
    time
    when i request for this page it works fine -- the data flows perfectlybut
    after making any changes say for example if i change the table name
    from
    where the data is to be fetched
    it does not show me the new data it shows me the data from the previous
    table. whereas if i change the name of the jsp page and request itworks
    fine. I want to disable this caching
    at the server to make this thing work i cleared all the cache ofthe
    browser
    but still could not achieve no cache state.
    thanks in advance
    akshay
    "Adrian Fletcher" <[email protected]> wrote in message
    news:[email protected]...
    Akshay,
    The design of the caching in portal is such that all changes should
    be
    reflected immediately, even across a cluster. However there isone
    outstanding issue around a performance enhancement for the anonymoususer
    case, where this cache is not updated unless the associated .portal
    file
    is
    datasynced. So for changes to the default group either test with
    a
    logged
    in
    user of this group or do a datasync to clear the cache.
    If this does not solve your problem please let us know.
    Sincerely,
    Adrian.
    Adrian Fletcher.
    Senior Software Engineer,
    BEA Systems, Inc.
    Boulder, CO.
    email: [email protected]
    "akshay" <[email protected]> wrote in message
    news:[email protected]...
    Hello,
    Can anyone please guide me as to how do we disable caching
    on
    the
    portal server since the changes i am making in the JSP pages
    are not
    reflected immediately. I have already cleared the browser cachebut
    now
    i
    want to clear the cache on the portalserver. I have also cleared
    all
    the
    class files created when the jsp was compiled but still there
    is no
    change.
    If anyone has faced similar problems and can throw some light
    on it.
    akshay

  • How do I gracefully shutdown the server from a script?

    I have a shutdown class that stop the server.
    When I'm using 'stop the server' from the console (after configure a
    new shutdown class to config.xml) it work good.
    How do I do the same from a script (cmd, bat or sh - doesn't metter).

    http://edocs.bea.com/wls/docs81/ConsoleHelp/startstop.html#1212202
    "avishosh" <[email protected]> wrote in message
    news:[email protected]..
    I have a shutdown class that stop the server.
    When I'm using 'stop the server' from the console (after configure a
    new shutdown class to config.xml) it work good.
    How do I do the same from a script (cmd, bat or sh - doesn't metter).

  • Can anyone explain how to fix this? The server responded with "502" to operation CalDAVAccountRefreshQueueableOperation.

    I repeatedly get this error message for iCal whenever I am on line:
    The server responded with "502 to operation CalDAV Account refresh queaeable operation." How can this be fixed.

    Open up iCal Preferences and select the 'Accounts' tab.  What accounts do you have listed there?  Do you know what they all are?  Do you use them all?  If there are any that you know you don't use then remove them.  If you don't know what they are then unclick 'Enable this account' and see if it makes any difference, not just to the problem but to how you use iCal.  If you lose data then you need that account.  It might be worth noting the details of that account then removing it and recreating it.  You could also try changing the refresh frequency so that if you can't remove the problem totally then at least it won't bother you so often.

  • How to view log of the exception occured in an application

    Hi All,
    While running the webdynpro application in the portal currently we are displaying some generic error messages in the catch block to make it user friendly.
    If some exception occurs, how is it possible for the user to view the error log in the portal itself so that the user may get a clear and detailed description of the same.
    Kindly suggest a solution for this.
    Thanks,
    Mitali

    Hi Mitali,
    To view the logs use the url http://<host>:<port>/nwa > Monitoring
    OR
    can look up the exception ID by doing the following.
    1. Navigate to System Administration->Support->Portal Runtime->Log Viewer
    2. Enter the exception id in the Search box and click on search in all files.
    3. It should popup a new window with your error message.
    OR
    all of your portal logs will go to defaultTrace.trc which is located under cluster/server0/log
    You can still watch this file through the portal log viewer.
    OR
    It it does not work for changes in the log viewing
    See the following:
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/0aa94076b63713e10000000a155106/frameset.htm
    Reagrds.
    Rajat

  • How to check databases in the server

    how can i check the databases that are available in the oracle using sql commands

    Madhu, you cannot get list of all databases using sql.
    Because when you use sql , you connect to only one database at that time.
    And using sql you can only get the name of the database to which you are connected.
    One solution is to look at the services on the control panel of the database server.
    it will list you all the instance available on the server.

  • How to view pictures on the computer that I took with my phone

    How do I view pictures on the computer that I have taken with my Phone?

    Transferring your pictures to your computer is a great way to back them up, Service34.
    As Weth mentioned, there are a number of ways to connect your device to the computer. In order to provide you with specific steps, can you please provide your phone model?
    AndreaS_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

Maybe you are looking for

  • Firefox won't open I get a "Mozilla crash reporter" message instead.

    I bought a new computer and downloaded Firefox. I had brought my settings over with Easy Transfer and everything worked a few times. Now when I try to open FF it immediately shuts down and gives me an crash reporter message. It doesn't actually open

  • Error Message when importing songs from CD

    I am a newbie with a 30gb iPod video. I have been able to import multiple cd's to the iPod without any problem. I am now receiving the message "Some of the songs in the Itunes music library including the song "xxxx" were not copied to the iPod becaus

  • Issue in table control

    Hi All I have a table control in which there are three columns. I need a dropdown list box in one of the columns but the problem is i dont want dropdown in all the cells of that column.            col 1     col2        col3 row1 row2 row3            

  • After I upgraded to iOS 5, my Genius icon/button disappeared. How do I get it back on my iPhone?

    After I upgraded to iOS 5, my Genius icon/button disappeared when using my music player on my iPhone. I am not using iTunes Match, just ensured it's disabled. How do I get my Genius icon/button back on my iPhone? Genius is enabled in iTunes, using th

  • Import excel graphs into illustrator

    When I try to import the graphs from excel into Illustrator the text converts into a gibberish. Is there any proper way to import excel graphs into illustrator?