Hi Team,
Is there a way to find out who is currently logged in on Fusion. We have an auditing assignment in which we have to report the number of users logged in on Fusion on a regular basis.
Please let us know if the same can be found out from the Server as well.
RIDS I2MP Team
To Find how many users are logged in Fusion
To Find how many users are logged in Fusion
Thanks & Regards,
I2MP Team.
I2MP Team.
Re: To Find how many users are logged in Fusion
This is harder said than done. Many session files will stay around for quite some time after the user has disconnected, so you most likely want to look at unique ips connected to por t 80 and/or port 443:
Many have asked this in the past, so if you find a better way, please share.
Code: Select all
netstat -plan | grep ":80\|:443 " |awk '{print $4}' | grep -v "127.0.0.1\|:::80\|:::443" | uniq | wc -lFormer Nagios employee
"It is turtles. All. The. Way. Down. . . .and maybe an elephant or two."
VI VI VI - The editor of the Beast!
Come to the Dark Side.
"It is turtles. All. The. Way. Down. . . .and maybe an elephant or two."
VI VI VI - The editor of the Beast!
Come to the Dark Side.