What is command to see logfile ?

Hi everyone,
I used to use this :
"tail -f /var/log/messages" to see what is going on in my unix box, but when i log in Mac OS X server as root then type that command , it doesn't work. Anyone know ? I'm newbie to this.
By the way, are there any pages about Mac OS X server command ? thanks.
  Mac OS X (10.4.4)  

Hi
In addition to what has already been added
cd /var/log
ls
more system.log [or any other log you are interested in]
Down arrow or return will keep on spooling the log until you are done. Control C followed by exit will get you out of it.
You can also get the Command Line Manual for 10.4 here:
http://manuals.info.apple.com/en/CommandLinev10.4.pdf
and also a lot more manuals from here:
http://www.apple.com/support/manuals/macosxserver/

Similar Messages

  • What is the command to see the database

    what is the command to see the database?iam using oracle express edition in that i tried to create a database but it showing database already created.
    i need to check which database is created.

    Probably you are thinking that Oracle database is a kind of file something like which we sees other files like .txt, .doc, .pdf etc which we sees by ls or dir commands.  Of course there are files for Oracle database, but they have their own nomenclature and setup which finds in C:\oraclexe\oradata\XE\ (For example in Windows) or /usr/lib/oracle/xe/oradata/XE/ (For example in Linux).
    By default, the database is started for you after installation and every time your computer is restarted. However, to reduce the overall performance load on the system, you can manually stop the database, and then manually restart it later.
    Oracle® Database Express Edition
    Ok, now if you wish to login to the database (we don't says "see" the database, because database is different thing than a picture or image ), you just open your command window and say :
    sqlplus sys/your_password_of_sys_user as sysdba
    If you get SQL> prompt, you have logged in the database as sys user and this is your database. 
    If you wish to login with different user then you can :
    1.login from command window by sqlplus username/password
    2.login from SQL> prompt by connect username/password
    Regards
    Girish Sharma

  • What is the command to see if there is any faults in an Aruba Controller.

    Q: What is the command to see if there is any faults in an Aruba Controller?
    A: The command in the below screen shot will tell us what are the active faults that occurred in an Aruba Controller.
    The output that is shown in above screen shot shows that active faults.

    Hi.
    I can suggest show call active voice or show voice call status or show sip-ua call brief in case of SIP TSP.
    HTH
    Regards.
    Carlo

  • What is command in terminal to see host in my LAN?

    I want to see all the host in my LAN with there IP address and MAC address. Is it possible using terminal command window? If it is, what is command in terminal to see it? If not, is there any other method to do this?

    If you want to a more detailed set of counters, the command is "sh controller ethernet <BLAH>".
    Please don't forget to rate our useful posts.  

  • Can i see logfile for oracle-xe on RHEL4  ( redhat OS ) ?

    Can i see logfile for oracle-xe on RHEL4 ( redhat OS ) ?
    Where the logfile store ?
    i want to see if i got problem like
    :can't connect oracle-xe
    :can't access htmldb
    :can't run complete
    and others.
    Thank you very much
    pratchaya

    Hello:
    What logfiles are you refering to?
    database logs (i.e.: alert.log... user dumps?)?
    Their location can be queried from sqplus:
    XE>show parameter dump_dest
    NAME                                 TYPE        VALUE
    background_dump_dest                 string      /usr/lib/oracle/xe/app/oracle/
                                                     admin/XE/bdump
    core_dump_dest                       string      /usr/lib/oracle/xe/app/oracle/
                                                     admin/XE/cdump
    user_dump_dest                       string      /usr/lib/oracle/xe/app/oracle/
                                                     admin/XE/udumpListener's log can be queried with 'lsnrctl status' command:
    $ lsnrctl status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Beta on 12-JAN-2006 09:07:15
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost.localdomain)(PORT=1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 10.2.0.1.0 - Beta
    Start Date                12-JAN-2006 08:10:45
    Uptime                    0 days 0 hr. 56 min. 30 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      ON
    Default Service           XE
    Listener Parameter File   /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Listener Log File         /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Listening Endpoints Summary...If your client can't connect, you should have a message with reason why (i.e.: TNS-xxxxx) and client side log.
    Do you have any specific issue?
    Let us know,
    Andrea

  • What hide command will do

    what hide command will do

    Here is the F1 help.....
    <i>HIDE
    Basic form
    HIDE f.
    In an ABAP Objects context, a more severe syntax check is performed that in other ABAP areas. See Constants not allowed in HIDE area.
    Effect
    Retains the contents of f related to the current output line. When the user selects the line from the list f is automatically filled with the retained value.
    The selection can occur in:
    AT LINE-SELECTION
    AT PFx
    AT USER-COMMAND
    READ LINE
    The contents of the field do not have to have been displayed using WRITE in order for you to retain them.
    The HIDE statement does not support deep structures (structures that contain internal tables).
    Useful system fields for interactive reporting are listed in the System Fields for Lists documentation.
    Note
    Lines or components of lines of an internal table that you address using a field symbol (see ASSIGNING addition to the READ and LOOP statements), cannot be retained using HIDE. You can store them using a global variable instead.
    Note
    Runtime errors:
    HIDE_FIELD_TOO_LARGE: The field is too long for HIDE.
    HIDE_ON_EMPTY_PAGE: HIDE not possible on an empty page.
    HIDE_NO_LOCAL: HIDE not possible for a local field.
    HIDE_ILLEGAL_ITAB_SYMBOL: HIDE not possible for a table line or component of a table line.</i>
    and also a sample program.
    report zrich_0003.
    data: begin of itab occurs 0,
          field type c,
          end of itab.
    itab-field = 'A'.  append itab.
    itab-field = 'B'.  append itab.
    itab-field = 'C'.  append itab.
    itab-field = 'D'.  append itab.
    itab-field = 'E'.  append itab.
    loop at itab.
      format hotspot on.
      write:/ itab-field.
      hide itab-field.
      format hotspot off.
    endloop.
    at line-selection.
      write:/ 'You clicked', itab-field.
    It kind of "remembers" what is written, so that when you click on it, it knows what the value is.
    Please remember to award points and mark as solved if  your question has been answered.  Thanks.
    Regards,
    Rich Heilman
    Message was edited by: Rich Heilman

  • HT1399 I was able to see the lyrics while playing the audio when my iOS was 6.1.4 now i do not know what to do to see the lyrics while playing the audio or a karaoke

    I was able to see the lyrics while playing the audio when my iOS was 6.1.4
    now i do not know what to do to see the lyrics while playing the audio or a karaoke after upgraded(?) to iOS 7
    Is there any chance to see the lyrics in iOS 7 or i want to degrade it to 6.1.4?

    Thank you for responding. I'm not sure if my complete original message came through. It was just today that an automatic update notice came through, and I installed the update that was offered. So I have to guess that version — 10.1.10 — is the latest version that's available to me. My OS is 10.6.8. Again (in case the complete message isn't appearing), I'm on an older Mac, specifically MacBook 2.1. Perhaps this is the problem, and I never should have updated a few years ago. If so, I wonder if there's any way I can go back to that earlier version that worked well for me, rather than the last few versions, which have not.

  • What is command for full screen preview?

    Hello guys,
    could please anyone just remind me? Because I haven't use it for a while, I have completely forget what the command is.
    When I go to
    View>Video Playback>Digital Cinema Desktop Preview
    then there is some command which brings Canvas to full screen. Which one is it?
    Thank you.

    view > external video > all frames
    or
    command + F12

  • What is command line in smartform?

    Hi
    Can anybody tell me what is command line in smartform?
    <MOVED TO CORRECT FORUM BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Jun 20, 2008 8:43 AM

    A command node is a special type of node in smartforms which can be used to trigger page-breaks etc:
    http://help.sap.com/saphelp_nw04/helpdata/en/70/e17a37dec511d3b575006094192fe3/content.htm
    Regards,
    Ravi

  • What T.code to see the development server logos?

    Hi,
    What T.code to see the development server logos?
    thanks in advance
    raja

    u mean to say the logos present in ur developemt server ..
    t-code SE78.
    GOTO THE NAMES COLUMN ,
    Choose tge radio button
    black and white
    color
    and f4 in the name field .
    and execute ,,
    this will list the lsit of logos in the server .
    regards,
    VIjay

  • Tell me the COMMAND to see the Explain Plain in Oracle SQL * Plus

    HI all,
    Tell me the COMMAND to see the Explain Plain in Oracle SQL * Plus?
    Regards,
    Balaji.C

    SET AUTOT TRACE EXPor EXPLAIN PLAN ... and @?/rdbms/admin/utlxpls
    SCOTT@lsc01> explain plan for select * from dept where deptno=10;
    Explained.
    SCOTT@lsc01> @?/rdbms/admin/utlxpls
    PLAN_TABLE_OUTPUT
    Plan hash value: 2852011669
    | Id  | Operation                   | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |         |     1 |    20 |     1   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| DEPT    |     1 |    20 |     1   (0)| 00:00:01 |
    |*  2 |   INDEX UNIQUE SCAN         | PK_DEPT |     1 |       |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("DEPTNO"=10)

  • What is command to bring back the standby database to primary database?

    what is command to bring back the standby database to primary database?
    Please reply soon....

    Mariappan wrote:
    no i am not using dgbroker...Please don't make me drag everything out of you. If you only answer one question at a time, this is going to take much longer and I'm going to find better things to do with my time.
    One more time: Have you read the documentation - http://download.oracle.com/docs/cd/B10501_01/server.920/a96653/role_management.htm#1033701

  • What is command to open desk top of damaged screen macbook on another screen via firewire?

    what is command to open desk top of damaged screen macbook on another screen via firewire?

    How to use and troubleshoot FireWire target disk mode
    http://support.apple.com/kb/ht1661
    MacBook Pro, Mac OS X (10.6.7), 2.4GHz IntelCore i5 320 HD 8GB RAM

  • Command to see the memory ,cpu etc.

    Anyone can tell me the command to see the memoery usage ,cpu usage etc ,like the 'top ' command in unix.
    Please reply.

    Assuming you're using Solaris 8 or above try prstat
    prstat -am will show more or less the same output as TOP.
    There's also commands such as swap -l and swap -s, vmstat, mpstat, iostat which can be used to monitor performance as well.

  • What does command  U do when Macintosh is selected

    What does command + U do when Macintosh is selected.

    If pressed in the Finder, nothing. The computer will just beep.
    (121468)

Maybe you are looking for

  • After updating to 10.6 ATV only offers to sync photos

    I did a clean install of 10.6 on my imac, and now the only syncing option that comes up in itunes for my ATV is for photos. Do I really need to erase everything on the ATV to sync it to the new computer? The itunes library is the same... I thought it

  • Vat code to be changed

    i need to change vat code related to my account, how do i do it? Massimo

  • Virus scan during file check-in or upload

    Is there any option available for doing virus scan on file being check-in in UCM? Is there any UCM service/ webservice available to do virus scan? If we've implement custom logic for same, what's the best practice or approach to be followed from UCM

  • SHD0 Maintain Screen Variant in Variant Transaction

    Hi all, I would like to know how tom maintain screen variant in variant transaction ? I created a variant of MM01 using SHD0, the recording gived me as much screen variant as screen maintained during record session, this works perfectly. The problem

  • Audio Skimming is not working ?

    Can someone please help me ?!   I started using IMovie on my new MacBook Pro about 3 weeks ago at the time I could use the audio skimming feature with no issues.  I just went to play around with the program today and noticed that there is no Audio wh