Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Avaya IQ Current users

Status
Not open for further replies.

Sinkiller

Technical User
May 13, 2008
90
CA
We have a customer with AVAYA IQ. Getting a list of current supervisors logged in on CMS was easy. Is there a way of seeing who is logged in at any one time. My customer is running into a licensing issues.

The brain is a wonderful organ; it starts working the moment you get up in the morning, and does not stop until you get to the office.
 

What platform is Avaya IQ run on? If it's Solaris/Linux/Unix and the logins are similar to CMS then simply log onto the server and run the command: who

This will show you every user logged into the system.

To list user logins and last login date/time, IP address:

finger `sort /etc/passwd | cut -f1 -d":"` | grep -i log | more ----This command will display the logins on screen

finger `sort /etc/passwd | cut -f1 -d":"` | grep -i log > /userlist.txt ----This command will save output as a text file on the root directory




- Stinney

I love learning and passing on knowledge. "Because knowing is half the battle".... GI JOOOOOE!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top