Remotely view output on a separate Linux console

I am wondering if anybody knows of a way to view output on one Linux console from another Linux console.  Here is an example.  I have an Arch Linux desktop machine and a server machine.  I usually use my server remotely through ssh to compile software.  Some software takes forever to compile, and I will go somewhere to work on something.  I then remotely login from another machine, but I want to see the output from the compiling that is being output to my desktop at home.  Does anybody know of a way to grab that output so I can view it from a new console session?
-Chris

GNU screen is fantastic for stuff like this. There are plenty of forum threads out there that talk about setting it up and configuring it (this is a good place to start).[/url]

Similar Messages

  • Having your program output to a separate console window

    I'm looking for a way to run my program(its just a console application)in a separate black console window(similar to Visual Studio). I'm looking on this forum. Someone said to go into Project Properties and hit a radio button that says "send output to console..." but I don't see it.
    I'm using JDeveloper 10.1.3.3

    Andre,
    You were completely right. I'm embarassed to say that I outright forgot to add the fwsgood.close(); statement. Wasn't showing up as an error, so I missed it. Thanks for the answer, it really helped me out.

  • Tmux/DVTM on UTF-8 Linux Console Output Incorrect Line Drawing Glyphs

    I have the Linux Console set to UTF-8 with (usually) the Terminus font.  As a side note, I use SystemD for init, which could be a contributing factor to my problem.
    When I run Tmux on the Linux Console, and split the screen, rather than nice crisp lines, I get weird glyphs.  Setting LANG to en_US.ISO-8859-1 seems to fix this problem, but I don't understand why...  DTVM exhibits the same behavior.
    Any ideas of what is going on?

    So, did you find a solution for this one? For some reason I just ran into the same problem without knowing excactly why.. it has been working just fine for years. How can I change it so that I'm using e.g only en_US.UTF-8 like bernarcher wrote? Any help would be appreciated.
    $ locale
    LANG=en_US.UTF-8
    LC_CTYPE=
    LC_NUMERIC=
    LC_TIME=
    LC_COLLATE=
    LC_MONETARY="en_US.UTF-8"
    LC_MESSAGES=
    LC_PAPER="en_US.UTF-8"
    LC_NAME="en_US.UTF-8"
    LC_ADDRESS="en_US.UTF-8"
    LC_TELEPHONE="en_US.UTF-8"
    LC_MEASUREMENT="en_US.UTF-8"
    LC_IDENTIFICATION="en_US.UTF-8"
    LC_ALL=
    $locale -a
    C
    en_US
    en_US.iso88591
    en_US.utf8
    POSIX

  • Remote Server Output of Weblogic 8.1 managed server.

    Just have a quick question.
    Where's the exact(default) location of the file that is showing on Server>Control>Remote Start Output>View Server Output.

    Thanks,
    I found the file under user_projects/domains/mydomain/NodeManagerClientLogs/mydomain_someserver folder. But they were organized with the date and time as the file name. Can I configure the system to point to a file with fixed name so that I can view it from a servlet, for example. One of the reasons is the file may grow to big and it will take a long time to load up from console and check it from there. Second question is if it is possible to redirect both stdout and stderr to a single file. I can do it from the command line when starting weblogic (> a.out 2>1&). But I don't know how to do the same in Remote managed server startup.

  • Unable to view output from concurrent manager

    Hello all,
    I am unable to view output from concurrent manager, I am using IE 8 32bit on Windows 7 & adobe 10.0.1
    It gives a blank page
    We are trying to view an xml report
    EBS 11.5.10.2
    db : 10.2.0.
    linux 4 update 5
    I have already reffered below documents but for no luck
    Note: 888932.1 - R12.1 Unable To View Output For Xml Outputs - View Output Button - The window opens up And Disappear Automatically
    Note: 305850.1 - Unable To View Output Of PDF Report When Clicking ''View Output''
    Thanks.

    Is the issue with XML/PDF concurrent requests or with all requests?
    Can you find any errors in Apache/Database log files?
    Is the application listener up and running? Can you find any errors in the listener log file?
    Have you tried to run AutoConfig and bounce the services and see if this helps?
    Thanks,
    Hussein

  • Issue with folder in remote view

    Ive just created a new web page which needs the use of a database so i saved my website under a separate name and tested it on MAMP first to make sure it all works. I then wanted to upload this to my live site, i did this by copying the new folder (admin)  and pasted it into my live site. I then uploaded them and tried opening the page from the live site but it wont open. (Please see image below.) The other thing i noticed is when i look at my files panel in 'local view' everything looks fine but when i look at it in 'remote view' the admin folder (which holds all the new files) doesnt look right, the folder appears as one file and is blank?
    ```

    Im not sure if it is that or if it has something to do with the code because this is what ive put in the connection/milesdata.php -
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_milesdata = "cust-mysql-123-12";
    $database_milesdata = "milesdata";
    $username_milesdata = "username";
    $password_milesdata = "password";
    $milesdata = mysql_pconnect($hostname_milesdata, $username_milesdata, $password_milesdata) or trigger_error(mysql_error(),E_USER_ERROR);
    ?>
    This is the code for the page i currently cant open (insert_donation.php) -
    <?php require_once('../Connections/milesdata.php'); ?>
    <?php
    $con=mysqli_connect("cust-mysql-123-12","milesdata","username","password");
    // Check connection
    if (mysqli_connect_errno())
       echo "Failed to connect to MySQL: " . mysqli_connect_error();
    mysqli_query($con,"DELETE FROM donation WHERE dateCreated < DATE_SUB(NOW(), INTERVAL 1 DAY");
    mysqli_close($con);
    ?>
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "index.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO donation (name, url) VALUES (%s, %s)",
                           GetSQLValueString($_POST['name'], "text"),
                           GetSQLValueString($_POST['url'], "text"));
      mysql_select_db($database_milesdata, $milesdata);
      $Result1 = mysql_query($insertSQL, $milesdata) or die(mysql_error());
      $insertGoTo = "insert_success.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Insert data</title>
    <style type="text/css">
    @import url("../Style sheet.css");
    a:link {
              color: #D91327;
    a:visited {
              color: #D91327;
    a:hover {
              color: #CEB239;
    a:active {
              color: #D91327;
    </style>
    </head>
    <body>
    <div id="container"><img src="../banner.jpg" width="1082" height="187" alt="banner" />
    <p> </p>
    <p class="admin_heading">Insert Record to Database</p>
    <p> </p>
    <form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
      <table align="center">
        <tr valign="baseline">
          <td height="25" align="right" nowrap="nowrap" bgcolor="#E6CC7F">Deceased Name:</td>
          <td height="25" bgcolor="#E6CC7F"><input type="text" name="name" value="" size="70" /></td>
        </tr>
        <tr valign="baseline">
          <td height="25" align="right" nowrap="nowrap" bgcolor="#F5E7B8">Deceased Unique Url:</td>
          <td height="25" bgcolor="#F5E7B8"><input type="text" name="url" value="" size="70" /></td>
        </tr>
        <tr valign="baseline">
          <td nowrap="nowrap" align="right"> </td>
          <td><input type="submit" class="submit" value="Insert record" /></td>
        </tr>
      </table>
      <input type="hidden" name="MM_insert" value="form1" />
    </form>
    <p> </p>
    <p class="maintext">If you wish to just update data in database please click <a href="update_donation.php">here</a></p>
    </div>
    </body>
    </html>
    The only difference between this page i cant open and the other page donation_2.php that i can open is that there is an extra piece of php code put in to delete the data after 1 day, which when i remove to see if it swill work without, loads and works fine?

  • AVMS - No Network settings to allow for remote viewing

    Hi,
    I've setup a new PC with the latest AVMS to test the app versus the old one. I setup the server component and it runs fine but when I try to access it remotely via the client app, I cannot contact the server.
    Checking the in documentation it says to go into the Main Console, and in the setup menu select Network Server to enable it. The problem is mine is greyed out.
    I am just using the basic license for less than 16 cameras.
    Did I miss something on install?
    Thanks in advance,
    Bob James

    I think I figured it out; I activated the Basic license, you need Basic Plus or Advanced to have these features.
    So I put it back to activating the trial and I get the network connection. I tested and Remote viewer works.
    Looking at pricing I almost fell off my chair; $1100 for Basic Plus licensing?!
    I mean I want to see the viewer from another computer, but for that much I'll just RDP into the box and watch the real viewer....
    Wow, what's up with the prices...
    Bob

  • How to create linux console/terminal using Java

    Please help, give some ideas or something...I would like to develop my own linux console/terminal to make connection to linux server.
    Please help me.
    Thanks

    That doesn't make any sense.
    Are you just trying to write output to the terminal, as you mentioned in this thread?
    http://forum.java.sun.com/thread.jspa?threadID=5287785

  • Dumb newbie question -- shell vrs linux console

    This is probably a dumb newbie question, but what is the difference between the shell screen and the linux console screen? I used another system before Arch and I believe there was only the shell screen! Does it matter which one is used?  Thanks -- Larry

    The console is the 2D text rendering thing. The shell is Bash, just a program that handles your input and has the console as output.
    If on the other hand you mean the console at startup, and you call that the console while you call xterm, etc. shells then the answer is different. It's just a matter of configuration if you automatically start X or not. A lot people use gdm or kdm to get a graphical login screen after bootup, others just type "startx" in the console when they want to start X.
    You can switch to the console with Ctrl+Alt+Fn where n is a number between 1 and 6. You can switch between consoles with Alt+Fn, X is on the last console, so to go back to X do Alt+F7.

  • [SOLVED] Linux Console / Terminus Startup Unicode Issues

    Hello!
    So I'm using the Linux Console (the kernel one, not really sure if this thing is going to get a window manager) and I've set it up to use Terminus as the default font.
    /etc/vconsole.conf:
    FONT=Lat2-Terminus16
    With this, on bootup, the font does change (so I know it's not that kernel hook that I always forget to put in ), but Unicode characters don't display properly. This wouldn't be a huge deal, but it really messes with ncurses.
    The odd part: if I do a
    setfont Lat2-Terminus16
    Then the font doesn't seem to change a bit, but now Unicode works fine. I suspect it's something going on with the font map or the unicode mapping, but I can't figure out any way to actually print out, e.g., where my unicode mapping is coming from.
    I'm willing to post any log files you need. Also, not 100% sure newbie corner is the place for this, but none of the other ones seemed to be any more appropriate, and this is definitely making me feel like a newbie . Mods, if this seems grossly inappropriate, feel free to move it.
    EDIT: it was indeed not having KMS loaded early enough. Thanks, all!
    Last edited by arek_menner (2013-11-17 17:27:20)

    karol wrote:Post your /etc/vconsole.conf. You can set font map there.
    What's the output of 'localectl'?
    My vconsole.conf is up there. Sorry, I should have made it more clear that that's what it was. It is, exactly, the one line:
    FONT=Lat2-Terminus16
    I remember trying to put a FONT_MAP in there, and it didn't help (although I don't know which one the correct mapping would be). I don't specify a font map when I do the bare 'setfont' once the system has already booted. That sort of makes me think that Terminus has the font map in the file?
    localectl output:
    System Locale: LANG=en_US.UTF-8
    VC Keymap: n/a
    X11 Layout: n/a
    And locale's output is basically a whole bunch of "en_US.UTF-8"s.
    WonderWoofy wrote:I have read somewhere that if you use the systemd-vonsole-setup.service to do anything more than the defaults, it is wise to also have early KMS setup as well.  Apparently the change in font or language depends on the KMS being properly in place before it happens, and this is only guaranteed if you set up KMS in the initramfs.
    I remember having a problem with that last install, but it just made the new font not show up, rather than not having Unicode support. I definitely haven't done anything regarding that this time, though, so I'll give it a try and report back to you

  • Remote Control and Remote View Problem

    Hi,
    I work at a High School running Netware 6.0 SP5 and Zen works 4.01 ir7.
    Remote Control and Remote View works great but I noticed one problem.
    We have a logo of the school that is forced down on to the desktop when a
    user logs in through group policies. This logo works perfect for the
    desktop wall paper and loads every time a user logs in.
    When I Remote Control or Remote View a computer the users desktop wall
    paper turns from the logo being forced down through group policies to the
    desktop to a blue desktop wall paper.
    I would prefer the desktop wall paper staying the schools logo when I
    Remote Control or Remote View because if the desktop wall paper changes to
    the blue color I mentioned above when I Remote Control or Remote View the
    users computer, they will know that someone is taking over their computer
    which sometimes we dont want them knowing.
    We have Windows 98SE computer running Novell Client 3.4 and we have some
    computers running Windows XP Professional SP1 and Windows XP Professional
    SP2 both running Novell Client 4.91 SP2.
    The Remote Control and Remote View problem of the desktop wall paper
    changing on the users computer occurs on all operating systems mentioned
    above.
    Is there a solution to my above problem? When Remote Controlling and
    Remote Viewing someone's computer I don't want the desktop wall paper to
    change.
    Thanks!

    Bpilon,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Can't view output for concurrent request

    I apologize if this is a common error - I tried to research this in the forums but didn't find anything that I haven't already tried. I checked the OPP - it is running with 3 processes - no error in the log that I can see. I checked the profile for the OPP timeout and have increased it....
    I have registered the data definition, registered and associated a template - created the concurrent program but when I try to run it completes with a warning and can't view output. The log states:
    XDO Data Engine Version No: 5.6.3
    Resp: 20420
    Org ID : 81
    Request ID: 2322744
    All Parameters: PO=5026930
    Data Template Code: GISDOSXML
    Data Template Application Short Name: XXGISD
    Debug Flag: N
    {PO=5026930}
    Calling XDO Data Engine...
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Unable to find an Output Post Processor service to post-process request 2322744.
    Check that the Output Post Processor service is running.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    --------------------------------------

    also - I found a note on using the XML Republish Report and I tried it with the report I ran and it erred completely. Here is the log for the republish:
    Oracle XML Publisher 5.6.3
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    --XDOException
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:683)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    Caused by: oracle.xdo.parser.v2.XMLParseException: '=' missing in attribute.
         at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:324)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttrValue(NonValidatingParser.java:1556)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttr(NonValidatingParser.java:1461)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttributes(NonValidatingParser.java:1394)
         at oracle.xdo.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1225)
         at oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:314)
         at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:281)
         at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:266)
         ... 17 more

  • View logfile or view output hangs in 3 node environment

    Hi All,
    Briefing the environment:
    Database -- ERPDB001
    Conc + admin -- APPS001
    Forms + web -- APPS002
    Some times when we try to see view log or view output after running the Concurrent requests. The system seems like hanging and it will display following error after. If you check in the next minute, it will show the output/logfile. looks like a strange behavior
    "An error occurred while attempting to establish an Application File Server connection with the node APPS001. There may be a network configuration problem, or the TNS listener on node APPS001 may not be running, Please contact your system administrator."
    Is this the Oracle Apps issue or the network issue between two node.
    Regards
    Vasu

    05-JUL-2008 09:51:56 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST
    =<APPS002IP>)(PORT=56065)) * establish * FNDFS * 0
    05-JUL-2008 09:51:59 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST
    =<APPS002IP>)(PORT=56070)) * establish * FNDFS * 0
    05-JUL-2008 09:52:16 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST
    =<APPS002IP>)(PORT=56087)) * establish * FNDFS * 0
    05-JUL-2008 10:20:28 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=<HostnameofAPPS001>)(US
    ER=applprod))(COMMAND=status)(ARGUMENTS=64)(SERVICE=APPS_PROD)(VERSION=134243072
    )) * status * 0
    05-JUL-2008 10:20:28 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=<HostnameofAPPS001>)(US
    ER=applprod))(COMMAND=stop)(ARGUMENTS=64)(SERVICE=APPS_PROD)(VERSION=134243072))
    * stop * 0
    05-JUL-2008 09:51:56 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=56065)) * establish * FNDFS * 0
    05-JUL-2008 09:51:59 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=56070)) * establish * FNDFS * 0
    05-JUL-2008 09:52:16 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=56087)) * establish * FNDFS * 0
    05-JUL-2008 10:20:28 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=<HostnameofAPPS001>)(USER=applprod))(COMMAND=status)(ARGUMENTS=64)(SERVICE=APPS_PROD)(VERSION=134243072)) * status * 0
    05-JUL-2008 10:20:28 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=<HostnameofAPPS001>)(USER=applprod))(COMMAND=stop)(ARGUMENTS=64)(SERVICE=APPS_PROD)(VERSION=134243072)) * stop * 0
    TNSLSNR for Solaris: Version 8.0.6.3.0 - Production on 05-JUL-2008 10:25:03
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Log messages written to /u02/applprod/prodora/8.0.6/network/admin/apps_prod.log
    Listening on: (ADDRESS=(PROTOCOL=tcp)(DEV=10)(HOST=<IPofAPPS001>)(PORT=1676))
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    05-JUL-2008 10:25:03 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=<HostnameofAPPS001>)(USER=applprod))(COMMAND=status)(ARGUMENTS=64)(SERVICE=APPS_PROD)(VERSION=134243072)) * status * 0
    05-JUL-2008 10:25:34 * ping * 0
    05-JUL-2008 10:25:35 * ping * 0
    05-JUL-2008 10:25:35 * (CONNECT_DATA=(SID=FNDSM)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<IPofAPPS001>)(PORT=37849)) * establish * FNDSM * 0
    05-JUL-2008 10:41:53 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=59076)) * establish * FNDFS * 0
    05-JUL-2008 10:47:52 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=59435)) * establish * FNDFS * 0
    05-JUL-2008 11:00:34 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=60186)) * establish * FNDFS * 0
    05-JUL-2008 11:16:33 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=61139)) * establish * FNDFS * 0
    05-JUL-2008 11:33:41 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=62210)) * establish * FNDFS * 0
    05-JUL-2008 11:34:06 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=62236)) * establish * FNDFS * 0
    05-JUL-2008 11:38:47 * 12502
    TNS-12502: TNS:listener received no CONNECT_DATA from client
    05-JUL-2008 11:46:32 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=62977)) * establish * FNDFS * 0
    05-JUL-2008 12:12:37 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=64546)) * establish * FNDFS * 0
    05-JUL-2008 12:12:39 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=64548)) * establish * FNDFS * 0
    05-JUL-2008 12:13:37 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=64609)) * establish * FNDFS * 0
    05-JUL-2008 12:26:42 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=65439)) * establish * FNDFS * 0
    05-JUL-2008 12:26:44 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=65444)) * establish * FNDFS * 0
    05-JUL-2008 12:27:22 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=65485)) * establish * FNDFS * 0
    05-JUL-2008 12:28:38 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=32810)) * establish * FNDFS * 0
    05-JUL-2008 12:30:14 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=32904)) * establish * FNDFS * 0
    05-JUL-2008 12:30:27 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=32918)) * establish * FNDFS * 0
    05-JUL-2008 12:51:17 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=34177)) * establish * FNDFS * 0
    05-JUL-2008 13:47:59 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=37909)) * establish * FNDFS * 0
    05-JUL-2008 13:48:02 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=37914)) * establish * FNDFS * 0
    05-JUL-2008 14:15:10 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=39543)) * establish * FNDFS * 0
    05-JUL-2008 14:15:12 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=39548)) * establish * FNDFS * 0
    05-JUL-2008 14:25:03 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=40157)) * establish * FNDFS * 0
    05-JUL-2008 14:25:07 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=40162)) * establish * FNDFS * 0
    05-JUL-2008 14:25:17 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=39984)) * establish * FNDFS * 0
    05-JUL-2008 14:26:19 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=40236)) * establish * FNDFS * 0
    05-JUL-2008 16:32:50 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=47917)) * establish * FNDFS * 0
    05-JUL-2008 16:32:55 * (CONNECT_DATA=(SID=FNDFS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=<APPS002IP>)(PORT=47925)) * establish * FNDFS * 0
    =========================
    We found not much errors.
    One time the error is
    "05-JUL-2008 11:38:47 * 12502
    TNS-12502: TNS:listener received no CONNECT_DATA from client"
    But I used to get above Original error (Core issue) lot of times in the Application.
    Even users are complaining about this.
    Thanks and Regards
    Vasu

  • User view output in IE and the output is in portrait but should be in landscape

    No issue create BI template.  Completed successfully run in oracle 11.5.10.2 and able to print it out in landscape as expected..  BUT when user click the "view output" button.  The IE pop up open the output file.  when user either save it or print it, it will save and print in Portrait even the BI template is landscape.  Anything I can do to "fix" it so user save and print the output from IE stay in landscape?
    Fushan

    First, I would try disabling any Add-ons like Adblock Plus, or NoScript.
    Second, possibly try disabling anti-virus
    Third, if that didn't do it, I would then Restart FF in Safe Mode, and see if that worked.
    Then, re-enable each individually, to see which is causing it.

  • Need formatted EXCEL output, from View Output,Oracle Applications

    To view the report(Normal RDF report,not XML Publisher Report) output in EXCEL, I changed the Profile Options.
    From: System Administrator Responsibility.
    Navigation: Install -> Viewer Options.
    Added the below entry.
    PDF application/vnd.ms-excel Microsoft Excel
    Now when I submit the report, after completing, when clicked to View Output, I can see the list showing Browser and Microsoft Excel.
    I saved the Excel Sheet,but its not formatted. How do I get the formatted Output. As columns are not in proper shape.
    Please do the needful.
    Thanks.

    Hi Abdul;
    Please check below thread's mention metalink note&advice:
    Open Text output of a Report in Excel - Bad format
    Re: Open Text output of a Report in Excel  - Bad format
    Hope it helps
    Regard
    Helios

Maybe you are looking for