How to monitor connected users on filesharing in OS 10.9.1

I'm trying to identify connected users to my  Mac running OS 10.9.1.  I know there are users logged on via filesharing since I get a message saying that there are (e.g. 2) users logged on when I try to restart.  In the past I used AFPstatus 1.5, but doesn't seem to provide information on connected users like it did in earlier OS's.
Is there a simple terminal command since netstat command gives a long list of stuff which is mostly gibberish to me.
thanks

My Mac IT guru here called Apple Support and their only recommendation was to buy Mavericks Server, which is now only $20, and use as a utility to monitor logged-on users.  Seems like overkill plus our IT doesn't like us to run our own server.  I suspect this could be done through the terminal?
I hope AFPstatus is updated.

Similar Messages

  • How to monitor end user response times?

    Hi everyone.
    I'm using Oracle Enterprise Manager 10.2.0.5.0 for monitoring our development environment. We have many products but my focus is on a web application that is running on an Oracle Application Server. I need to monitor the reponse time of every HTTP request to check if this time is in the range of our SLAs.
    I've seen that OHS monitoring shows the mean response time, resource consumption, etc. But I haven't found any that lets me do more detailed monitoring (at the level o HTTP request).
    I'm reading right now 3 books about it but it does't mention this feature (just in case):
    - Middleware Management with Oracle Enterprise Manager Grid Control 10gR5
    - Oracle Enterprise Manager Administration 10.2.0.5 (from Oracle Library)
    - Oracle Enterprise Manager Grid Contro lInstallation And Configuration 10.2.0.5.0
    ¿Does anybody knows if Enterprise Manager have this feature?
    Thanks in advance.

    Hi.
    Sorry for a long delay.
    The answer was so generic and didn't help too much. But today, after several days of research I found how to monitor the user perceived performance by using "End-User Performance Monitoring". In theory this feature lets me register a Web Server and monitor its access log and also create a SLAs monitor based on it.
    Right now I'm reading a lot about it just and trying of enable it to an OHS. I did it for an Oracle Web Cache.
    Anyway, thanks a lot for your interest and if someone find it useful, when I get more functionality working, I'll post something here.
    Best regards.

  • How to monitor a user

    Hello every-one, I have been told to monitor a particular database user? Can you please tell me in details how to put that user under monitoring without letting him know? thanks heaps

    Hi,
    If you want to set tracing on for a particular session, you can use dbms_session.set_trace_in_session package after get get SID and SERIAL# from v$session view for that user that is connected ... Otherwise, if you want to audit the database objects activity for a specific user, then you can take a look at documentation about AUDIT command or take a look at these links below:
    http://www.oracle-base.com/articles/8i/Auditing.php
    http://www.oracle-base.com/articles/9i/CompleteDataAudit.php
    Cheers

  • How to monitor connection pools using wlsd

    Hi
    i need to monitor connectionpools , i dont know that much about wlsd, how can we configure wlsd to monitor connection pools.
    Cheers
    Raghu

    U can use a Simple Java Code for that: http://jaysensharma.wordpress.com/2010/02/19/jdbcconnectionpool-parameters-using-jmx/
    In the above program you need to just change the following 4-lines:
    int port = 7001; // AdminServer Port
    String hostname = “localhost”; // AdminSewrver HostName
    h.put(Context.SECURITY_PRINCIPAL, “weblogic”); // AdminUserName
    h.put(Context.SECURITY_CREDENTIALS, “weblogic”); // Admin Paassword...
    ====================================
    Using WLST if you want to do it then you need to edit the following Script a Bit : http://jaysensharma.wordpress.com/2010/03/23/testing-datasource-status-using-wlst/

  • How to monitor DROP USER

    Hi Guys,
    Would anybody suggest me how to monitor the DROP USER command?
    OS: AIX, Oracle: 11.2.0.2
    CSM

    CSM.DBA wrote:
    I'm extremely sorry for not framing the question properly.
    I mean, Is there any way I can monitor the progress of the DROP USER command.
    To give more details, I have a schema with 500G+ data and I want to drop that schema. No doubt it'll take significant time but how to monitor how it's progressing?
    Using v$session_longops ?
    Aman....

  • How to trace connect user ?

    Hi,
    How can I trace all user connection in a file ?
    I would like to know who connected (user oracle) and when.
    Thanks for your help,
    gnom92.

    You can see the figure how many connection made since the db starts up quering v$sysstat;
    select name,value from v$sysstat where name like '%logon%';
    NAME VALUE
    logons cumulative 132671
    logons current 175
    Generally, Oracle doesn't keep this information. You have to enable audit to keep this info.

  • How to Use  Connected-User DBLink in a trigger??

    In the trigger body,I need to call a remote procedure through a Connected-User dblink.But error occurs when the trigger is compiled.
    ORA-01005:null password given;logon denied
    Can't a Connected-User dblink be used in a trigger?
    Thanks.

    Hi,
    I don't know if this helps, but you can create a DBLink with the username and password and the SID to connect to. Then try using this DBLink in trigger.

  • How to monitor Database Users who ever is doing bulk transactions

    Hi All,
    We need to produce a report (daily basis ) which will provide User and Bulk Transaction details in Database to track the system.
    How to state a script to perform this monitoring ?
    RDBMS: 10.2.0.5.0 (64 bit)
    OS: RHEL-5.2
    Thanks,
    Tusar

    Hi;
    AFAIK there is no specific query for your issue. You can enable audit than can see what happen on your system
    Regard
    Helios

  • How to monitor Apps user

    I have an application user (login as apps owner) hammering the apps/db..using 100% CPU and 19.2% of memory.
    I can get the sid,pid etc from the unix server as shown below from TOP.
    I log into the application and query the Monitor Users form and can see all users and the Oracle process column.
    PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
    10526 applmgr 16 0 1136m 356m 351m R 100 19.2 17:09.88 oracle
    How are the data above from the server and the applications related?
    Is there any other way I can get the resp and what the user is running?
    Thanks

    As you said, you can get the OS PID from top. With that you can feed the following query to get the SID:
    set linesize 120
    column SID format 99999
    column status format a8
    column osuser format a8
    column username format a8
    column COMMAND format 999999
    column MACHINE format a6
    column MODULE format a10
    column SCHEMANAME format a5
    column action format a8
    column LOCKWAIT format a8
    column action format a8
    select s.sid,p.spid os_pid,s.status, s.osuser,s.username,s.COMMAND,s.MACHINE,s.MODULE,s.SERIAL#, s.SCHEMANAME, s.LOCKWAIT,s.action
    from v$session s, v$process p WHERE s.paddr = p.addr and p.spid = 'your_PID_here';
    With the SID sucked from the last request, you can feed the following query:
    select pid, v$session.sid, v$session.serial#, v$session.username, v$session.program, to_char(logon_time,'dd-mon-yyyy hh:mm:ss'), machine from v$session, v$process where sid = 'your_SID_here' and addr=paddr;
    This should give you the PID of the user which you will hopefully see from the Monitor Users screen.
    You can also do this via Grid Control and its an awful lot easier.
    DA

  • How to monitor connections to RAC (SOADataSource-RAC0/RAC1) ?

    Hello
    I work on an enterprise environment with 2 Oracle DB RAC (0/1).
    Is there any way to monitor the connections to the RAC DB from Entreprise Manager 11g (Oracle Fusion Middleware) ?
    Thanks

    My answer is here :
    http://docs.oracle.com/cd/E27559_01/doc.1112/e28391/dbac.htm#BHCFFAJF

  • How to monitor connections?

    Greetings,
    How can you see who is connected to your router network? I am using a Linksys E2000.
    Thanks

    dhcp client table.

  • How can I handle user's action on UIStatusBar area

    Hi all.
    My program needs to hide the UIStatusbar at the top of area, so I set the UIStatusBarHidden property YES.
    But I can't handle any user action on this area.
    How can I control the user's action on UIStatusbar area.
    If anybody knows , please help me.
    Message was edited by: anti RMB
    Message was edited by: anti RMB

    Aashil,
    have a look at the Forms product section on otn. There is a java bean "getClientInfo" that can give you the name and ip address of the connected client.
    The serverside pid of the Forms process is out of reach (on Unix you may be able to do a host command to get the Unix process).
    Check the database documentation on how to find connected users.
    Frank

  • How can I specific user's right ?

    I have studied ACS4 working flow from sample shop and document. But I still have some question about right to download ebook.
    After sample shop generate GBLink and user download acsm file. Is it possible to specific that acsm file can only open
    by specific user or device ID ? If yes how can I do ?
    I have read on document but don't understand yet because in technical document it's only have xml structure but don't have
    any sample value. And where is value come from.

    Aashil,
    have a look at the Forms product section on otn. There is a java bean "getClientInfo" that can give you the name and ip address of the connected client.
    The serverside pid of the Forms process is out of reach (on Unix you may be able to do a host command to get the Unix process).
    Check the database documentation on how to find connected users.
    Frank

  • Disconnect Connected Users

    Dear
    How to kill the connected users' session.
    I need to do some activities on Production System and need to disconnet all connected users.
    I used SM10 to lock all users but this will disallow new connection.
    however, some users are also connected.
    kindly advice, I am following the correct steps and how to disconnect connected users.
    Regards:

    Dear
    When I select any user and click on Session, there would be a popup I click on end Session. I got a error "Make a Selection".
    what does it mean????????
    regards:

  • Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work. Please help. Thanks.

    Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work. Please help. I am getting lots of spelling errors as the MacBook laptop screen is too small. Thank you so much! .

    Contentmom6 wrote:
    Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work.
    Normally, you just connect the monitor to the MacBook using a VGA adaptor that you can buy from an Apple Store.  Now try System Preferences > Displays > Detect Displays.  You should now be able to select a display mode for the monitor.  If it still doesn't work, then I'd check that everything is properly connected.  I've had problems with colours disappearing due to a faulty connection in the VGA adaptor.
    Bob

Maybe you are looking for