[Solved] How to see the VSFTPD's logs

I need to see the connections log: When a user logs in or logs out, its IP address, etc.
Using
journalctl -u vsftpd
The only thing  can see are the connection fails.
Any idea about how to see the connection logs?
uname -a
Linux darkBit 3.19.2-1-ARCH #1 SMP PREEMPT Wed Mar 18 16:21:02 CET 2015 x86_64 GNU/Linux
Last edited by ninioArg (2015-04-12 22:08:45)

Not a Sysadmin issue, moving to NC.
Please remember to mark your thread as [Solved] by editing your first post and prepending it to the title.

Similar Messages

  • How to see the marketing planneru00B4s log?

    Hi Everyone;
    We have implemented the CRM_MKT_EXP_CAMP_DAT badi with the EXPORT_CAMPAIGN_DATA method for the campaign creation, and the documentation says that there is an output for the method ET_RETURN where we can save the generated messages during the execution.
    Where can I see this marketing planner´s log?
    Neither in the SM37 or the SLG1 are the log details.
    Here is what the documentation says:-----
    "Export of Campaign Data: Further Processing Using Ext.Tools
    Functionality
    This method is used to transport campaign data to external tools. It is called from the Marketing Planner when a communication channel is selected which
    sends the relevant data to the open channel. The communication channel itself is defined in the IMG activity Define Communication Medium.
    Result
    If the export and any subsequent further processing of the campaign data was successful, then EV_RETURN_CODE must be set to 0. If EV_RETURN_CODE has a value other than 0, the calling function assumes an error has occurred during export, and displays a message to this effect in the application log.
    If EV_RETURN_CODE is set to '1', this means that batch processing should be stopped. This value can be set if there are serious errors
    For less serious errors processing continues within the batch report. The relevant error messages are noted down in the Application Log Handle. EV_RETURN_CODE is set to a value > 1.
    Parameters
    ET_RETURN
    Category: BAPIRET2_TAB
    These messages are copied to the application log for campaign execution. Only messages of category I, W(Prio 1) and E are displayed in the marketing planner's log. All other messages can be viewed in transaction SLG1.
    Thanks.
    Edited by: Georgina Mastache Benitez on Jun 2, 2011 6:28 PM

    Hello,
    Please follow instruction in note 672599 to resolve your issue.
    thanks
    Willie

  • How to see the change logs for billing document

    Dears,
    Could you please how to see the change logs for billing document.
    My client is using ECC 6.0 & if i use VF03 > Environment > changes > does not show the changes i had made.
    Thanks in advance
    Ranjan

    hello, friend.
    you should be able to see changes done after the initial creation and saving, by going thru Environment > Changes.  try it again, and this time make sure that changes were done to the billing document prior to posting to accounting.
    normally, when configuration of Billing is done correctly, there will be little or no instances of changing anything in the Billing document,  as saving the document after creation will post this to Accounting.  of course, inclusion of a posting block in the billing type will provide you the opportunity for changes. 
    regards.

  • How to see the Container log for debugging in netbeans 4.1

    Hi All
    I am using the netbeans 4.1 with sun applicaion server 81. as my applicaion server. I have developed one ejb module and deployed it in server. Now I want to see the EJB container log for knowing how my beans methods are being called at the time of execution. Can any one please help me on this.
    Thanks
    Ranjan Rashmi Sahoo.
    Mphasis BFL Ltd, Bangalore.
    India

    Could you tell me how to see the logger?Search for Log4J. It has a good documentation IMO.

  • How to see the pass folios when log in to another cell phone or iPad

    how to see the pass folios when log in to another cell phone or iPad

    You need to log into the content viewer with the same Adobe ID you used to create the folio. Note: iPad folios will not appear on the iPhone but should be available on all other devices.

  • How to take the cron job log in HP UX?

    Hi,
    How to take the cron job log in HP UX
    I need to run a backup and other stuff everyday. How do I check and start cron service under HP-UX UNIX operating system? How do I write cron jobs?
    A. Cron service is required to run jobs and tasks such as backup.
    You must login as the root to run following commands. Each user that is using the cron service must have a cron configuration file in the /var/spool/cron/crontab directory. Also users are permitted if their name appeared in /var/adm/cron/cron.allow file
    Task: Find out if cron is running under HP-UX
    Type the following command at a shell prompt
    # ps -ef | grep cron
    Open /etc/rc.config.d/cron file
    vi /etc/rc.config.d/cron
    Set control variable to 1 to enable cron: CRON=1
    Set control variable to 0 to disable: CRON=0
    Close and save the file. To start or stop cron you can type the following command:
    # /sbin/init.d/cron start <-- start cron
    # /sbin/init.d/cron stop <-- stop cron
    Task: HP-UX Start cron service
    If cron is not running, simply type:
    # cron
    Task: Edit / create cron jobs
    Type the following command to submit a cron job:
    # crontab -e
    List your cron file:
    # crontab -l
    Backup all your cron jobs:
    # crontab -l > ~/backup.cron.jobs
    Remove ALL cron job:
    # crontab -r
    Task: Crontab file format
    Cron file format is as follows:
    MIN HOUR DATE MONTH DAY /PATH/TO/COMMAND
    0-59 0-23 1-31 1-12 0-6 /root/scripts/backup2tape.shEasy to remember crontab file format:
    * * * * * command to be executed
    | | | | |
    | | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
    | | | ------- Month (1 - 12)
    | | --------- Day of month (1 - 31)
    | ----------- Hour (0 - 23)
    ------------- Minute (0 - 59)To run /root/script/backup at 23:00, every day, enter:
    # crontab -e
    Append following
    0 23 * * * /root/script/backupRun foo job very weekday (MON-Fri) at 6am, enter:
    0 6 * * 1-5 /root/script/backupFor more information refer to cron and crontab man pages.
    Subscribe to our free e-mail newsletter or RSS feed to get all updates. You can Email this page to a friend.
    Related Other Helpful FAQs:
    What is Cron?
    Linux Start and stop the cron or crond service
    Run crontab Every 10 Minutes
    Linux / UNIX Setup and run php script as a cron job
    Stop Ubuntu / Debian Linux From Deleting /tmp Files on Boot
    Discussion on This FAQDavid Says:
    January 15th, 2008 at 12:21 am
    You might note that all files normally found in /etc/init.d, /etc/rc*.d, and others are all in /sbin in HP-UX 10.20 and up.
    Note too that your formatting is off in the description of the /etc/rc.config.d/cron file. Also, if you run /usr/bin/cron instead of /sbin/init.d/cron start, the /etc/rc.config.d/cron file is not used.
    Regards,
    Satya

    I guess it would :)
    btw, how did this piece miss from the contents pasted by the OP ?
    The doc has given all details of CRON and missed where to see the logfiles. :)
    ****Added****
    I tried man crontab in windows, i dont see it.i overlook most of the things, i would have done the same ;)
    Edited by: Bobcatalog on Oct 23, 2008 9:40 AM

  • How to see the portal runtime errors and exception

    Hi friends,
    I am new to the EP. Can you plz let me know how to see the logs of the error occurs during the runtime.
    I have got the following error "Error occurs during the rendering of jsp component"
    But I am not able to see the logs.
    can you plz tell me the exact path to see the error logs
    Thanks and regards,
    Kuldeep Verma

    HI Kuldeep
    Yoiu can check the portal Logs and traces in link as the bellow.
    http://your_url:portno/nwa
    The JSP logs you can trace there.
    Just follow the following path after loged in to NWA.
    Monitoring -> Logs and Traces ->
    Then in the dropdown menu select the Default Trace
    Cheers
    Chinmaya
    Reward for helpful answers

  • How to see the alerts

    Hi,
    in OEM 9.2.0 , how to see the alerts ( or the errors indicated in alertlog) and the problems and errors if any on the databases ?
    Many thanks.

    If you want to check quickly, you find the alert log in the BACKGROUND_DUMP_DEST location specified in the initialisation parameter of the database.
    e.g D:\oracle\admin\ugonicdb\bdump.

  • Unexpected Signal : 11 occurred. How to see the reason??

    Hi,
    I saw there where other questions about this, but I didn't get how to see the differences between the possible causes of this error
    I see at the bottom of the following trace that some part of the heap is running over (from space of new generation) is this a correct assumption of the reason for this error?
    If this is the reason I'll have to find a way to increase the heapsize. The problem doing this is, that the app is started by a precompiled binary. Is there a way not to pass the heapsize by the -Xmx param but to write it in some VM config file, so it will be used, even when I can't pass params??
    Thanks a lot for replies,
    Regards
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_06-b03 mixed mode)
    # An error report file has been saved as hs_err_pid9125.log.
    # Please refer to the file for further information.
    ./convrpt_lib.sh: line 7:  9125 Abgebrochen             rwconverter.sh userid=$CONNECT batch=yes overwrite=yes stype=PLLFILE dtype=PLLFILE source=$f.pll dest=$f.pll
    Converting report
    Report Builder: Release 10.1.2.0.2 - Production on Tue Sep 16 20:22:13 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    REP-25200: Converting 'report.pll' to 'report.pll'...
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x3527A39
    Function=kpchtcd+0x91
    Library=/fapp/oracle/product/frs/lib/libclntsh.so.10.1
    Current Java thread:
    Dynamic libraries:
    00110000-006c2000 r-xp 00000000 fd:00 18784214   /fapp/oracle/product/frs/jdk/jre/lib/i386/server/libjvm.so
    006c2000-0071c000 rwxp 005b1000 fd:00 18784214   /fapp/oracle/product/frs/jdk/jre/lib/i386/server/libjvm.so
    0072f000-0073f000 r-xp 00000000 fd:00 18785980   /fapp/oracle/product/frs/lib/libnn.so.0
    0073f000-00740000 rwxp 0000f000 fd:00 18785980   /fapp/oracle/product/frs/lib/libnn.so.0
    00741000-00770000 r-xp 00000000 fd:00 18785916   /fapp/oracle/product/frs/lib/librws.so.0
    00770000-00772000 rwxp 0002e000 fd:00 18785916   /fapp/oracle/product/frs/lib/librws.so.0
    00772000-00796000 r-xp 00000000 fd:00 18785994   /fapp/oracle/product/frs/lib/libucol.so.0
    00796000-00798000 rwxp 00023000 fd:00 18785994   /fapp/oracle/product/frs/lib/libucol.so.0
    00798000-007aa000 r-xp 00000000 fd:00 18785944   /fapp/oracle/product/frs/lib/libuicc.so.0
    007aa000-007ab000 rwxp 00011000 fd:00 18785944   /fapp/oracle/product/frs/lib/libuicc.so.0
    007ac000-007e9000 r-xp 00000000 fd:00 18785989   /fapp/oracle/product/frs/lib/libca.so.0
    007e9000-007f0000 rwxp 0003c000 fd:00 18785989   /fapp/oracle/product/frs/lib/libca.so.0
    007f0000-007f7000 r-xp 00000000 fd:00 18786017   /fapp/oracle/product/frs/lib/libmma.so.0
    007f7000-007fa000 rwxp 00006000 fd:00 18786017   /fapp/oracle/product/frs/lib/libmma.so.0
    007fa000-007fc000 r-xp 00000000 fd:00 18786025   /fapp/oracle/product/frs/lib/libmmov.so.0
    007fc000-007fd000 rwxp 00001000 fd:00 18786025   /fapp/oracle/product/frs/lib/libmmov.so.0
    007fd000-007fe000 r-xp 00000000 fd:00 18786020   /fapp/oracle/product/frs/lib/libmmia.so.0
    007fe000-007ff000 rwxp 00000000 fd:00 18786020   /fapp/oracle/product/frs/lib/libmmia.so.0
    007ff000-00803000 r-xp 00000000 fd:00 18786019   /fapp/oracle/product/frs/lib/libmmft.so.0
    00803000-00804000 rwxp 00003000 fd:00 18786019   /fapp/oracle/product/frs/lib/libmmft.so.0
    00804000-00806000 r-xp 00000000 fd:00 18785943   /fapp/oracle/product/frs/lib/libuihx.so.0
    00806000-00807000 rwxp 00001000 fd:00 18785943   /fapp/oracle/product/frs/lib/libuihx.so.0
    00809000-00814000 r-xp 00000000 fd:00 18785940   /fapp/oracle/product/frs/lib/librec.so.0
    00814000-00816000 rwxp 0000a000 fd:00 18785940   /fapp/oracle/product/frs/lib/librec.so.0
    00818000-0083b000 r-xp 00000000 fd:00 18786022   /fapp/oracle/product/frs/lib/libmmiw.so.0
    0083b000-0083d000 rwxp 00022000 fd:00 18786022   /fapp/oracle/product/frs/lib/libmmiw.so.0
    0083d000-0083e000 r-xp 00000000 fd:00 18785946   /fapp/oracle/product/frs/lib/libtknqap.so.0
    0083e000-0083f000 rwxp 00000000 fd:00 18785946   /fapp/oracle/product/frs/lib/libtknqap.so.0
    00840000-00842000 r-xp 00000000 fd:00 18786052   /fapp/oracle/product/frs/lib/libdfc.so.0
    00842000-00843000 rwxp 00001000 fd:00 18786052   /fapp/oracle/product/frs/lib/libdfc.so.0
    00844000-00846000 r-xp 00000000 fd:00 2721278    /lib/libdl-2.5.so
    00846000-00847000 r-xp 00001000 fd:00 2721278    /lib/libdl-2.5.so
    00847000-00848000 rwxp 00002000 fd:00 2721278    /lib/libdl-2.5.so
    00849000-0084a000 r-xp 00849000 00:00 0          [vdso]
    0084a000-00873000 r-xp 00000000 fd:00 18786023   /fapp/oracle/product/frs/lib/libmmoi.so.0
    00873000-00876000 rwxp 00028000 fd:00 18786023   /fapp/oracle/product/frs/lib/libmmoi.so.0
    00876000-00890000 r-xp 00000000 fd:00 18786018   /fapp/oracle/product/frs/lib/libmmcm.so.0
    00890000-00896000 rwxp 00019000 fd:00 18786018   /fapp/oracle/product/frs/lib/libmmcm.so.0
    00896000-008b5000 r-xp 00000000 fd:00 18785948   /fapp/oracle/product/frs/lib/libot.so.0
    008b5000-008b8000 rwxp 0001e000 fd:00 18785948   /fapp/oracle/product/frs/lib/libot.so.0
    008b8000-008c1000 r-xp 00000000 fd:00 18785925   /fapp/oracle/product/frs/lib/libixd.so
    008c1000-008c2000 rwxp 00008000 fd:00 18785925   /fapp/oracle/product/frs/lib/libixd.so
    008c5000-008db000 r-xp 00000000 fd:00 18786024   /fapp/oracle/product/frs/lib/libmmos.so.0
    008db000-008dd000 rwxp 00015000 fd:00 18786024   /fapp/oracle/product/frs/lib/libmmos.so.0
    008dd000-0099e000 r-xp 00000000 fd:00 18785984   /fapp/oracle/product/frs/lib/libvgs.so.0
    0099e000-009a6000 rwxp 000c0000 fd:00 18785984   /fapp/oracle/product/frs/lib/libvgs.so.0
    009a6000-009fa000 r-xp 00000000 fd:00 18785947   /fapp/oracle/product/frs/lib/libuc.so.0
    009fa000-009ff000 rwxp 00053000 fd:00 18785947   /fapp/oracle/product/frs/lib/libuc.so.0
    009ff000-00a0e000 r-xp 00000000 fd:00 18785935   /fapp/oracle/product/frs/lib/libuiimg.so.0
    00a0e000-00a10000 rwxp 0000e000 fd:00 18785935   /fapp/oracle/product/frs/lib/libuiimg.so.0
    00a10000-00a1d000 r-xp 00000000 fd:00 18785936   /fapp/oracle/product/frs/lib/libutt.so.0
    00a1d000-00a1f000 rwxp 0000c000 fd:00 18785936   /fapp/oracle/product/frs/lib/libutt.so.0
    00a1f000-00a25000 r-xp 00000000 fd:00 18786000   /fapp/oracle/product/frs/lib/libutc.so.0
    00a25000-00a27000 rwxp 00005000 fd:00 18786000   /fapp/oracle/product/frs/lib/libutc.so.0
    00a27000-00a28000 r-xp 00000000 fd:00 18784208   /fapp/oracle/product/frs/jdk/jre/lib/i386/libjawt.so
    00a28000-00a29000 rwxp 00000000 fd:00 18784208   /fapp/oracle/product/frs/jdk/jre/lib/i386/libjawt.so
    00a29000-00a2b000 r-xp 00000000 fd:00 9563238    /usr/lib/libXau.so.6.0.0
    00a2b000-00a2c000 rwxp 00001000 fd:00 9563238    /usr/lib/libXau.so.6.0.0
    00a2c000-00a46000 r-xp 00000000 fd:00 2721276    /lib/ld-2.5.so
    00a46000-00a47000 r-xp 00019000 fd:00 2721276    /lib/ld-2.5.so
    00a47000-00a48000 rwxp 0001a000 fd:00 2721276    /lib/ld-2.5.so
    00a48000-00a8d000 r-xp 00000000 fd:00 18785942   /fapp/oracle/product/frs/lib/libuipr.so.0
    00a8d000-00a9e000 rwxp 00044000 fd:00 18785942   /fapp/oracle/product/frs/lib/libuipr.so.0
    00a9e000-00ad5000 r-xp 00000000 fd:00 18785938   /fapp/oracle/product/frs/lib/librem.so.0
    00ad5000-00ad9000 rwxp 00036000 fd:00 18785938   /fapp/oracle/product/frs/lib/librem.so.0
    00ad9000-00afb000 r-xp 00000000 fd:00 18785937   /fapp/oracle/product/frs/lib/libuia.so.0
    00afb000-00b04000 rwxp 00021000 fd:00 18785937   /fapp/oracle/product/frs/lib/libuia.so.0
    00b04000-00b0c000 r-xp 00000000 fd:00 18786002   /fapp/oracle/product/frs/lib/libutj.so.0
    00b0c000-00b0e000 rwxp 00007000 fd:00 18786002   /fapp/oracle/product/frs/lib/libutj.so.0
    00b11000-00b61000 r-xp 00000000 fd:00 18785939   /fapp/oracle/product/frs/lib/libree.so.0
    00b61000-00b68000 rwxp 0004f000 fd:00 18785939   /fapp/oracle/product/frs/lib/libree.so.0
    00b68000-00b78000 r-xp 00000000 fd:00 18786040   /fapp/oracle/product/frs/lib/librod.so.0
    00b78000-00b7c000 rwxp 0000f000 fd:00 18786040   /fapp/oracle/product/frs/lib/librod.so.0
    00b7c000-00b8c000 r-xp 00000000 fd:00 18786039   /fapp/oracle/product/frs/lib/libror.so.0
    00b8c000-00b8f000 rwxp 0000f000 fd:00 18786039   /fapp/oracle/product/frs/lib/libror.so.0
    00b91000-015b1000 r-xp 00000000 fd:00 16580614   /fapp/oracle/product/frs/lib/librw.so
    015b1000-01787000 rwxp 00a20000 fd:00 16580614   /fapp/oracle/product/frs/lib/librw.so
    01790000-019aa000 r-xp 00000000 fd:00 18786466   /fapp/oracle/product/frs/lib/libobx.so.0
    019aa000-019df000 rwxp 00219000 fd:00 18786466   /fapp/oracle/product/frs/lib/libobx.so.0
    019e1000-019f4000 r-xp 00000000 fd:00 2721291    /lib/libnsl-2.5.so
    019f4000-019f5000 r-xp 00012000 fd:00 2721291    /lib/libnsl-2.5.so
    019f5000-019f6000 rwxp 00013000 fd:00 2721291    /lib/libnsl-2.5.so
    019f8000-01af7000 r-xp 00000000 fd:00 9563240    /usr/lib/libX11.so.6.2.0
    01af7000-01afb000 rwxp 000ff000 fd:00 9563240    /usr/lib/libX11.so.6.2.0
    01afb000-01b0a000 r-xp 00000000 fd:00 9563245    /usr/lib/libXext.so.6.4.0
    01b0a000-01b0b000 rwxp 0000e000 fd:00 9563245    /usr/lib/libXext.so.6.4.0
    01b0b000-01b2d000 r-xp 00000000 fd:00 18786069   /fapp/oracle/product/frs/lib/libcxa.so.3
    01b2d000-01b3e000 rwxp 00021000 fd:00 18786069   /fapp/oracle/product/frs/lib/libcxa.so.3
    01b3e000-01b46000 r-xp 00000000 fd:00 9563255    /usr/lib/libSM.so.6.0.0
    01b46000-01b47000 rwxp 00007000 fd:00 9563255    /usr/lib/libSM.so.6.0.0
    01b47000-01b5e000 r-xp 00000000 fd:00 9563254    /usr/lib/libICE.so.6.3.0
    01b5e000-01b5f000 rwxp 00016000 fd:00 9563254    /usr/lib/libICE.so.6.3.0
    01b61000-01b71000 r-xp 00000000 fd:00 18784188   /fapp/oracle/product/frs/jdk/jre/lib/i386/libverify.so
    01b71000-01b73000 rwxp 0000f000 fd:00 18784188   /fapp/oracle/product/frs/jdk/jre/lib/i386/libverify.so
    01ba6000-01baa000 rwxs 00000000 fd:00 15794184   /tmp/hsperfdata_oracleias/9150
    01baa000-01bbb000 r-xs 00000000 fd:00 18784139   /fapp/oracle/product/frs/jdk/jre/lib/jce.jar
    01bbb000-01be1000 r-xs 00000000 fd:00 18785674   /fapp/oracle/product/frs/jdk/jre/lib/ext/mailapi.jar
    01be1000-01be8000 r-xp 00000000 fd:00 9563404    /usr/lib/libXp.so.6.2.0
    01be8000-01be9000 rwxp 00006000 fd:00 9563404    /usr/lib/libXp.so.6.2.0
    01be9000-01cc6000 r-xs 00000000 fd:00 18784184   /fapp/oracle/product/frs/jdk/jre/lib/jsse.jar
    01cc6000-01ccc000 r-xs 00000000 fd:00 18778615   /fapp/oracle/product/frs/jdk/jre/lib/ext/ojmisc.jar
    01ccc000-01ccf000 r-xs 00000000 fd:00 18784221   /fapp/oracle/product/frs/jdk/jre/lib/ext/dnsns.jar
    01ccf000-01ceb000 r-xs 00000000 fd:00 18784220   /fapp/oracle/product/frs/jdk/jre/lib/ext/sunjce_provider.jar
    01ceb000-01d04000 r-xs 00000000 fd:00 18781266   /fapp/oracle/product/frs/j2ee/home/lib/jndi.jar
    01d04000-01e7e000 r-xp 00000000 fd:00 18785919   /fapp/oracle/product/frs/lib/libde.so.0
    01e7e000-01eee000 rwxp 00179000 fd:00 18785919   /fapp/oracle/product/frs/lib/libde.so.0
    01eef000-0202c000 r-xp 00000000 fd:00 2721277    /lib/libc-2.5.so
    0202c000-0202e000 r-xp 0013d000 fd:00 2721277    /lib/libc-2.5.so
    0202e000-0202f000 rwxp 0013f000 fd:00 2721277    /lib/libc-2.5.so
    02032000-02303000 r-xp 00000000 fd:00 18784199   /fapp/oracle/product/frs/jdk/jre/lib/i386/libawt.so
    02303000-02319000 rwxp 002d0000 fd:00 18784199   /fapp/oracle/product/frs/jdk/jre/lib/i386/libawt.so
    024b1000-024b3000 r-xs 00000000 fd:00 18781260   /fapp/oracle/product/frs/j2ee/home/lib/jdbc.jar
    024b3000-024b7000 r-xs 00000000 fd:00 18781256   /fapp/oracle/product/frs/j2ee/home/lib/javax77.jar
    024b7000-024bf000 r-xs 00000000 fd:00 18781257   /fapp/oracle/product/frs/j2ee/home/lib/javax88.jar
    024bf000-024c9000 r-xs 00000000 fd:00 18941626   /fapp/oracle/product/frs/opmn/lib/ons.jar
    024c9000-024d3000 r-xs 00000000 fd:00 18941937   /fapp/oracle/product/frs/opmn/lib/optic.jar
    024d3000-024d8000 r-xs 00000000 fd:00 18779026   /fapp/oracle/product/frs/jlib/javax-ssl-1_1.jar
    024d8000-024da000 r-xs 00000000 fd:00 18781267   /fapp/oracle/product/frs/j2ee/home/lib/jnet.jar
    024da000-024e3000 r-xp 00000000 fd:00 2719785    /lib/libnss_files-2.5.so
    024e3000-024e4000 r-xp 00008000 fd:00 2719785    /lib/libnss_files-2.5.so
    024e4000-024e5000 rwxp 00009000 fd:00 2719785    /lib/libnss_files-2.5.so
    024e5000-0253c000 r-xs 00000000 fd:00 18781264   /fapp/oracle/product/frs/j2ee/home/lib/jmxri.jar
    0253c000-02548000 r-xs 00000000 fd:00 18779027   /fapp/oracle/product/frs/jlib/jssl-1_1.jar
    02548000-0254b000 r-xs 00000000 fd:00 18781259   /fapp/oracle/product/frs/j2ee/home/lib/jcert.jar
    0254b000-02552000 r-xs 00000000 fd:00 18781258   /fapp/oracle/product/frs/j2ee/home/lib/jaxp.jar
    028fd000-0293f000 r-xs 00000000 fd:00 18783050   /fapp/oracle/product/frs/diagnostics/lib/ojdl.jar
    0293f000-0295b000 r-xs 00000000 fd:00 18778950   /fapp/oracle/product/frs/jlib/oraclepki.jar
    0295b000-02964000 r-xs 00000000 fd:00 18781407   /fapp/oracle/product/frs/jlib/ojpcs.jar
    02965000-0296d000 r-xp 00000000 fd:00 18784213   /fapp/oracle/product/frs/jdk/jre/lib/i386/native_threads/libhpi.so
    0296d000-0296e000 rwxp 00007000 fd:00 18784213   /fapp/oracle/product/frs/jdk/jre/lib/i386/native_threads/libhpi.so
    0296e000-02a2a000 r-xs 00000000 fd:00 18784223   /fapp/oracle/product/frs/jdk/jre/lib/ext/localedata.jar
    02a2a000-02a36000 r-xs 00000000 fd:00 18781248   /fapp/oracle/product/frs/j2ee/home/lib/activation.jar
    02a36000-02a3f000 r-xp 00000000 fd:00 9563250    /usr/lib/libXcursor.so.1.0.2
    02a3f000-02a40000 rwxp 00008000 fd:00 9563250    /usr/lib/libXcursor.so.1.0.2
    02a40000-02a44000 r-xp 00000000 fd:00 9563249    /usr/lib/libXfixes.so.3.1.0
    02a44000-02a45000 rwxp 00003000 fd:00 9563249    /usr/lib/libXfixes.so.3.1.0
    02a45000-02a58000 r-xp 00000000 fd:00 2721279    /lib/libpthread-2.5.so
    02a58000-02a59000 r-xp 00012000 fd:00 2721279    /lib/libpthread-2.5.so
    02a59000-02a5a000 rwxp 00013000 fd:00 2721279    /lib/libpthread-2.5.so
    02a5c000-02ab0000 r-xs 00000000 fd:00 18781406   /fapp/oracle/product/frs/jlib/ojpse.jar
    02cda000-02d82000 r-xs 00000000 fd:00 18781271   /fapp/oracle/product/frs/j2ee/home/lib/ojsp.jar
    02d82000-02dca000 r-xs 00000000 fd:00 18779031   /fapp/oracle/product/frs/jlib/netcfg.jar
    02dca000-02ddc000 r-xs 00000000 fd:00 18783237   /fapp/oracle/product/frs/jlib/repository.jar
    02ddc000-02df0000 r-xp 00000000 fd:00 18786041   /fapp/oracle/product/frs/lib/libros.so.0
    02df0000-02df3000 rwxp 00013000 fd:00 18786041   /fapp/oracle/product/frs/lib/libros.so.0
    02df3000-02fd7000 r-xs 00000000 fd:00 18783111   /fapp/oracle/product/frs/jlib/jewt4.jar
    02fd7000-03a66000 r-xp 00000000 fd:00 18779783   /fapp/oracle/product/frs/lib/libclntsh.so.10.1
    03a66000-03b6c000 rwxp 00a8f000 fd:00 18779783   /fapp/oracle/product/frs/lib/libclntsh.so.10.1
    03b81000-040da000 r-xs 00000000 fd:00 18784185   /fapp/oracle/product/frs/jdk/jre/lib/charsets.jar
    040da000-042fd000 r-xs 00000000 fd:00 18777722   /fapp/oracle/product/frs/reports/jlib/rwrun.jar
    042fd000-04460000 r-xs 00000000 fd:00 18783201   /fapp/oracle/product/frs/jdbc/lib/classes12.zip
    04460000-044a5000 r-xs 00000000 fd:00 18781270   /fapp/oracle/product/frs/j2ee/home/lib/mail.jar
    044a5000-044bf000 r-xs 00000000 fd:00 18781255   /fapp/oracle/product/frs/j2ee/home/lib/jaas.jar
    044bf000-044c7000 r-xp 00000000 fd:00 9563241    /usr/lib/libXrender.so.1.3.0
    044c7000-044c8000 rwxp 00007000 fd:00 9563241    /usr/lib/libXrender.so.1.3.0
    046cf000-046e8000 r-xs 00000000 fd:00 18781409   /fapp/oracle/product/frs/jlib/ojpcms.jar
    046ea000-046eb000 r-xs 00000000 fd:00 18786726   /fapp/oracle/product/frs/jdk/jre/lib/ext/sslqueries.jar
    046eb000-0470a000 r-xs 00000000 fd:00 18783214   /fapp/oracle/product/frs/lib/xschema.jar
    0470e000-04711000 r-xs 00000000 fd:00 18785672   /fapp/oracle/product/frs/jdk/jre/lib/ext/jta.jar
    04711000-04754000 r-xs 00000000 fd:00 18781238   /fapp/oracle/product/frs/j2ee/home/jazn.jar
    04754000-0475b000 r-xs 00000000 fd:00 9634052    /usr/lib/gconv/gconv-modules.cache
    04761000-04786000 r-xp 00000000 fd:00 2721284    /lib/libm-2.5.so
    04786000-04787000 r-xp 00024000 fd:00 2721284    /lib/libm-2.5.so
    04787000-04788000 rwxp 00025000 fd:00 2721284    /lib/libm-2.5.so
    04788000-04a21000 r-xs 00000000 fd:00 18785991   /fapp/oracle/product/frs/jlib/bigraphbean.jar
    04a21000-04aa5000 r-xs 00000000 fd:00 18783046   /fapp/oracle/product/frs/lib/dms.jar
    04aa5000-04aee000 r-xs 00000000 fd:00 18974456   /fapp/oracle/product/frs/soap/lib/soap.jar
    04b04000-04c3f000 r-xs 00000000 fd:00 18781235   /fapp/oracle/product/frs/j2ee/home/iiop.jar
    04c3f000-04cda000 r-xs 00000000 fd:00 18785697   /fapp/oracle/product/frs/jlib/ldapjclnt10.jar
    04cda000-04d85000 r-xs 00000000 fd:00 18778949   /fapp/oracle/product/frs/owm/jlib/owm-3_0.jar
    04d85000-04e03000 r-xs 00000000 fd:00 18781249   /fapp/oracle/product/frs/j2ee/home/lib/bcel.jar
    04e03000-04e81000 r-xs 00000000 fd:00 18781268   /fapp/oracle/product/frs/j2ee/home/lib/jsse.jar
    04e81000-04eaa000 r-xs 00000000 fd:00 18783073   /fapp/oracle/product/frs/webservices/lib/wsserver.jar
    04ec0000-04ed5000 r-xp 00000000 fd:00 18786047   /fapp/oracle/product/frs/lib/libuat.so.0
    04ed5000-04ed9000 rwxp 00014000 fd:00 18786047   /fapp/oracle/product/frs/lib/libuat.so.0
    04ed9000-04efd000 r-xs 00000000 fd:00 18783078   /fapp/oracle/product/frs/webservices/lib/wsdl.jar
    04efe000-04f03000 r-xs 00000000 fd:00 18781250   /fapp/oracle/product/frs/j2ee/home/lib/connector.jar
    04f03000-04f3d000 r-xs 00000000 fd:00 18781254   /fapp/oracle/product/frs/j2ee/home/lib/http_client.jar
    04f3f000-04f43000 r-xp 00000000 fd:00 18786003   /fapp/oracle/product/frs/lib/libutsl.so.0
    04f43000-04f45000 rwxp 00003000 fd:00 18786003   /fapp/oracle/product/frs/lib/libutsl.so.0
    04f45000-04f78000 r-xs 00000000 fd:00 18781252   /fapp/oracle/product/frs/j2ee/home/lib/crimson.jar
    05028000-05030000 r-xs 00000000 fd:00 18781447   /fapp/oracle/product/frs/jlib/rts2.jar
    05038000-0503e000 r-xs 00000000 fd:00 18781404   /fapp/oracle/product/frs/jlib/ojmisc.jar
    0509a000-050a8000 r-xs 00000000 fd:00 18781273   /fapp/oracle/product/frs/j2ee/home/lib/servlet.jar
    050a8000-0513c000 r-xs 00000000 fd:00 18941642   /fapp/oracle/product/frs/javacache/lib/cache.jar
    0513f000-05150000 r-xp 00000000 fd:00 18786001   /fapp/oracle/product/frs/lib/libutl.so.0
    05150000-05155000 rwxp 00010000 fd:00 18786001   /fapp/oracle/product/frs/lib/libutl.so.0
    05155000-0525a000 r-xs 00000000 fd:00 18783089   /fapp/oracle/product/frs/javavm/lib/jasper.zip
    0525a000-052cf000 r-xs 00000000 fd:00 18781429   /fapp/oracle/product/frs/sqlj/lib/runtime12ee.jar
    052ee000-052ef000 r-xp 0163c000 fd:00 9539696    /usr/lib/locale/locale-archive
    0530c000-05312000 r-xp 0157f000 fd:00 9539696    /usr/lib/locale/locale-archive
    05312000-053ed000 r-xs 00000000 fd:00 18783215   /fapp/oracle/product/frs/lib/xmlparserv2.jar
    05420000-05454000 r-xp 01605000 fd:00 9539696    /usr/lib/locale/locale-archive
    05454000-054f8000 r-xs 00000000 fd:00 18781243   /fapp/oracle/product/frs/j2ee/home/jazncore.jar
    05556000-0555b000 r-xp 00000000 fd:00 9563239    /usr/lib/libXdmcp.so.6.0.0
    0555b000-0555c000 rwxp 00004000 fd:00 9563239    /usr/lib/libXdmcp.so.6.0.0
    055ad000-055bc000 r-xs 00000000 fd:00 18781251   /fapp/oracle/product/frs/j2ee/home/lib/cos.jar
    0560c000-0577b000 r-xp 00000000 fd:00 18783224   /fapp/oracle/product/frs/lib/libnnz10.so
    0577b000-0579f000 rwxp 0016e000 fd:00 18783224   /fapp/oracle/product/frs/lib/libnnz10.so
    057a0000-05841000 r-xs 00000000 fd:00 18779765   /fapp/oracle/product/frs/jlib/srvm.jar
    058a1000-058a5000 r-xs 00000000 fd:00 18781253   /fapp/oracle/product/frs/j2ee/home/lib/ejb.jar
    058a5000-0596f000 r-xs 00000000 fd:00 18783066   /fapp/oracle/product/frs/rdbms/jlib/aqapi.jar
    0596f000-059e2000 r-xs 00000000 fd:00 18779830   /fapp/oracle/product/frs/jlib/zrclient.jar
    05a02000-05a07000 r-xp 00000000 fd:00 9563303    /usr/lib/libXtst.so.6.1.0
    05a07000-05a08000 rwxp 00004000 fd:00 9563303    /usr/lib/libXtst.so.6.1.0
    05ba6000-05bc6000 r-xp 00000000 fd:00 18784189   /fapp/oracle/product/frs/jdk/jre/lib/i386/libjava.so
    05bc6000-05bc8000 rwxp 0001f000 fd:00 18784189   /fapp/oracle/product/frs/jdk/jre/lib/i386/libjava.so
    05c1a000-05c1d000 r-xs 00000000 fd:00 18781269   /fapp/oracle/product/frs/j2ee/home/lib/jta.jar
    05c65000-05c81000 r-xs 00000000 fd:00 18785686   /fapp/oracle/product/frs/jlib/infratool.jar
    05d37000-05d4b000 r-xp 00000000 fd:00 18784191   /fapp/oracle/product/frs/jdk/jre/lib/i386/libzip.so
    05d4b000-05d4e000 rwxp 00013000 fd:00 18784191   /fapp/oracle/product/frs/jdk/jre/lib/i386/libzip.so
    05e94000-05ee7000 r-xp 00000000 fd:00 18784198   /fapp/oracle/product/frs/jdk/jre/lib/i386/libmlib_image.so
    05ee7000-05ee8000 rwxp 00052000 fd:00 18784198   /fapp/oracle/product/frs/jdk/jre/lib/i386/libmlib_image.so
    05ee8000-060e8000 r-xp 00000000 fd:00 9539696    /usr/lib/locale/locale-archive
    060e8000-06249000 r-xs 00000000 fd:00 18783203   /fapp/oracle/product/frs/jdbc/lib/classes12dms.jar
    06249000-063a9000 r-xs 00000000 fd:00 18783202   /fapp/oracle/product/frs/jdbc/lib/classes12.jar
    06423000-06431000 r-xs 00000000 fd:00 18785676   /fapp/oracle/product/frs/jdk/jre/lib/ext/activation.jar
    064e8000-064f5000 r-xs 00000000 fd:00 18784222   /fapp/oracle/product/frs/jdk/jre/lib/ext/ldapsec.jar
    06840000-069a5000 r-xp 00000000 fd:00 18785941   /fapp/oracle/product/frs/lib/libuimotif.so.0
    069a5000-069da000 rwxp 00164000 fd:00 18785941   /fapp/oracle/product/frs/lib/libuimotif.so.0
    069e4000-06a03000 r-xp 00000000 fd:00 18785924   /fapp/oracle/product/frs/lib/libix.so
    06a03000-06a08000 rwxp 0001e000 fd:00 18785924   /fapp/oracle/product/frs/lib/libix.so
    06bb0000-06bf5000 r-xs 00000000 fd:00 18785673   /fapp/oracle/product/frs/jdk/jre/lib/ext/mail.jar
    06bf5000-06fdb000 r-xs 00000000 fd:00 18781430   /fapp/oracle/product/frs/sqlj/lib/translator.jar
    07074000-07082000 r-xs 00000000 fd:00 18783135   /fapp/oracle/product/frs/jlib/share.jar
    0718f000-071f7000 r-xs 00000000 fd:00 18781261   /fapp/oracle/product/frs/j2ee/home/lib/jem.jar
    0727a000-072ce000 r-xp 00000000 fd:00 9552588    /usr/lib/libXt.so.6.0.0
    072ce000-072d2000 rwxp 00054000 fd:00 9552588    /usr/lib/libXt.so.6.0.0
    072e6000-073c5000 r-xs 00000000 fd:00 18785992   /fapp/oracle/product/frs/jlib/bigraphbean-nls.zip
    0744b000-0744c000 r-xp 00000000 fd:00 9633975    /usr/lib/gconv/ISO8859-1.so
    0744c000-0744e000 rwxp 00000000 fd:00 9633975    /usr/lib/gconv/ISO8859-1.so
    07515000-076b2000 r-xp 00000000 fd:00 10000903   /usr/X11R6/lib/libXm.so.2.1
    076b2000-076c6000 rwxp 0019d000 fd:00 10000903   /usr/X11R6/lib/libXm.so.2.1
    079e9000-079ff000 r-xs 00000000 fd:00 18784138   /fapp/oracle/product/frs/jdk/jre/lib/sunrsasign.jar
    07a32000-07a39000 r-xs 00000000 fd:00 18781262   /fapp/oracle/product/frs/j2ee/home/lib/jms.jar
    07a59000-07a63000 r-xs 00000000 fd:00 18781236   /fapp/oracle/product/frs/j2ee/home/iiop_gen_bin.jar
    07d2f000-07d32000 r-xs 00000000 fd:00 18785675   /fapp/oracle/product/frs/jdk/jre/lib/ext/smtp.jar
    07f8d000-07fc1000 r-xs 00000000 fd:00 18781408   /fapp/oracle/product/frs/jlib/ojpcp.jar
    08048000-08062000 r-xp 00000000 fd:00 18777598   /fapp/oracle/product/frs/bin/rwconverter
    08062000-080a4000 rwxp 00019000 fd:00 18777598   /fapp/oracle/product/frs/bin/rwconverter
    9f65b000-9fb3a000 r-xs 00000000 fd:00 18783204   /fapp/oracle/product/frs/jdbc/lib/nls_charset12.jar
    9fb3a000-a0019000 r-xs 00000000 fd:00 18779125   /fapp/oracle/product/frs/jlib/orai18n.jar
    a0019000-a05a0000 r-xs 00000000 fd:00 18781276   /fapp/oracle/product/frs/j2ee/home/oc4j.jar
    b65a6000-b7f4d000 r-xs 00000000 fd:00 18784183   /fapp/oracle/product/frs/jdk/jre/lib/rt.jar
    bfa47000-bfa5d000 rwxp bfa47000 00:00 0          [stack]
    Heap at VM Abort:
    Heap
    def new generation   total 576K, used 100K [0xa05a0000, 0xa0640000, 0xa2210000)
      eden space 512K,   7% used [0xa05a0000, 0xa05a9230, 0xa0620000)
      from space 64K, 100% used [0xa0620000, 0xa0630000, 0xa0630000)
      to   space 64K,   0% used [0xa0630000, 0xa0630000, 0xa0640000)
    tenured generation   total 1408K, used 1132K [0xa2210000, 0xa2370000, 0xb05a0000)
       the space 1408K,  80% used [0xa2210000, 0xa232b288, 0xa232b400, 0xa2370000)
    compacting perm gen  total 16384K, used 1677K [0xb05a0000, 0xb15a0000, 0xb45a0000)
       the space 16384K,  10% used [0xb05a0000, 0xb0743708, 0xb0743800, 0xb15a0000)
    Local Time = Tue Sep 16 20:22:14 2008
    Elapsed Time = 2
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_06-b03 mixed mode)
    # An error report file has been saved as hs_err_pid9150.log.
    # Please refer to the file for further information.
    ./convrpt_lib.sh: line 7:  9150 Abgebrochen             rwconverter.sh userid=$CONNECT batch=yes overwrite=yes stype=PLLFILE dtype=PLLFILE source=$f.pll dest=$f.pll

    Hi Gabriel,
    Yes if I am doing this I can see at the top the document partner.
    But normally in the 2 bottom Window "Detail for SPL" it does show the
    the details the matched term.
    But here it does not show me the match terms. It shows only
    empty window Detail for SPL".
    So the question remains where can I see the matched terms?
    Any suggestions?
    Thanks
    Regards

  • How to see the Open PO Qty in Mass

    Dear Experts,
                        How to see the Open Qty in PO in mass, is there any report available..Please help 
    Regards
    karthik

    use the Txn ME2N
    Enter the follwoing details . Scope of list - ALV, Selection parameters- WE101, Plant- XXXX, Enter the document dates From and TO and execute ( F8), You will get all the details, If you want to adjust the format use cntrl+F8 to get the POP_up for selection of fields and use as you wish.

  • How to see the balance under different balance if special ledgers exist???

    Some of the company using special ledgers. I need to teach user how to see the balance under different balance.
    I will focus on
    1. display voucher
    2. check GL balance
    Anyone have idea (detailed flow)/template (preferred) on these issues?
    Thanks a lot for your help in advance

    hi,
    /n----
    > acccounting -
    >financial accounting -
    >GL acccounts -
    > information system -
    > gl reports
    here in this path u can get all the gl list and gl balances list ....
    u can check what ever reports u want.....
    if useful assign points...
    regards,
    santosh kumar

  • How to see the print preview of outgoing excise invoice.

    Hi Experts,
    How to see the print preview of outgoing excise invoice.
    Thanks,
    srinivas.

    Dear Sreeni,
    Just go to J1IIN, click on "Exc.inv for delivery -- Display" where you input delivery reference and execute. If you have generated excise invoice, you can see the corresponding excise invoice for that delivery / billing document.
    Preethi.

  • How to see the object while moving on the artboard?

    hello everyone;
    maybe a silly question; how to see the object while moving on the artboard? i dont wanna see only the objects bounding box(outline of the object). i wanna see the object it self. thank you.

    What have they gone and messed up now?
    When I drag an object (with bounding boxes turned on), the object moves and the bounding box stays still until I stop dragging, upon which it snaps to the object’s new position.
    If I don’t have bounding boxes turned on (as I usually work), the object moves when dragged.
    If what Bedri says is right, they’ve gone and mended something that wasn’t busted.

  • How to see the ouput of a purchase order on screen??

    Hi all , how to see the output of a purchase order (ME23) on screen?
    Points will be awarded!!!!
    Thanks & Regards
    John

    Hi,
    If any output tye is associated to PO and it is been triggered then User ME9F tocde to view the output.
    To check thise first Use: ME23 and click on Messages, if any outputs are triggered and they are in Yellow status then Use ME9f. Once you execute you will get Outputs in the screen, then choose the output and click on Display Message button. Your output will be displayed on the screen.
    Regards,
    Ashok

  • How to see the result

    hi every body...
    i want to get the result of any table..
    for ex: select * from dept;
    the o/p should be like(10~Accounts~new york)
    for this i wrote this code.... it run sucessfully;
    my prob is how to see the Result..
    declare
    tn varchar2(35);
    sqlstmt varchar2(2000);
    rc sys_refcursor;
    begin
    tn := '&tn';
    sqlstmt := 'select * from '||tn;
    open rc for sqlstmt;
    end;
    post u r comments,Hints and suggestion...

    post u r comments,Hints and suggestion...
    SQL> var rc refcursor
    SQL> begin
      2     open :rc for  'select * from &tn';
      3  end;
      4  /
    Enter value for tn: emp
    old   2:    open :rc for  'select * from &tn';
    new   2:    open :rc for  'select * from emp';
    PL/SQL procedure successfully completed.
    SQL> print rc
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SPENCER    CLERK           7902 17-DEC-80        800                    20
          7499 VERREYNNE  SALESMAN        7698 20-FEB-81       1600        300         30
          7521 VAN WIJK   SALESMAN        7698 22-FEB-81       1250        500         30
          7566 MAINGUY    MANAGER         7839 02-APR-81       2975                    20
          7654 KISHORE    SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BARRY      MANAGER         7839 01-MAY-81       2850                    30
          7782 BOEHMER    MANAGER         7839 09-JUN-81       2695                    10
          7788 PADFIELD   ANALYST         7566 09-DEC-82       3000                    20
          7839 SCHNEIDER  PRESIDENT            17-NOV-81       5500                    10
          7844 GASPAROTTO SALESMAN        7698 08-SEP-81       1500          0         30
          7876 CAVE       CLERK           7788 12-JAN-83       1100                    20
          7900 CLARKE     CLERK           7698 03-DEC-81        950                    30
          7902 JAFFAR     ANALYST         7566 03-DEC-81       3000                    20
          7934 ROBERTSON  CLERK           7782 23-JAN-82       1430                    10
           109 JOMAR                                                                   30
          8800 VISWARAYAR INTERN          7934 03-OCT-82          0                    10
    16 rows selected.
    SQL> Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

Maybe you are looking for

  • No images are shown in the Gallery

    Hi Everyone, It looks like all the picture i am taking with the camera are stored in the memory card, moreover the gallery is not showing any of them. Does anyone know how to make the pictures appear in the gallery again. regards,

  • An old time Windows user in a Mac world ...

    As you can guess, I just got my first iMac, and wow, what a beauty! The interface and new way of doing things took me about ... 5 hours to get use to, but I find the simplest tasks in Apple to be the hardest. I know some of these questions may be dup

  • ITunes : mind of it's own

    I've just noticed that itunes opens by itself on my computer. I'll quit the application and then a few minues later it opens up unpromted. What am I missing here?

  • WCCP GRE Redirection multiple hops

    When using GRE redirection and negotiated return, is it possible to place the WAEs on a segment that is not directly attached to the routers? I have seen some documentation state, "It allows the WCCP clients to be separate from the router via multipl

  • Showing Images on webpart - Performance issues

    HI, I have a custom webpart page, which is heavily loaded with webparts/rotating banner/images. Is there any performance improvements which can be done to improve page load. Rotating banner images are taken from a Image library and is shown in a visu