Sponsored Content
Operating Systems Linux Red Hat Logged in users on a Linux server are counted twice Post 302933083 by walterthered on Tuesday 27th of January 2015 11:58:06 AM
Old 01-27-2015
Logged in users on a Linux server are counted twice

Scenario:
1. Log into a linux server interface as root.
2. Inititiate an SSH session with the server using Putty and a valid user account (e.g. fakeuser).
3. Log into TTY2 of the linux server interface using another valid user account (e.g. faketester).

Issue:
With these three login sessions, the linux server reports that there are five (5) users logged into the server and lists the users as:
faketester
fakeuser
fakeuser
faketester
root
The TTY2 and SSH sessions are counted twice.
I am testing this on a RHEL6.5
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Migrating all users from one linux server to another...

Hello, I've been tasked with migrating users from one linux server to another new linux server. This is how I was thinking of doing it: 1.) Open up an NFS connection between the two servers, cp -Rp /home/ to the new server and then append the old /etc/group & /etc/passwd to the existing... (2 Replies)
Discussion started by: vancouver_joe
2 Replies

2. IP Networking

All tcp/ip users are logged out

I have an RS6000 server running AIX and on occasion all users are logged out of the server "connection closed by foreign host" is the error message. Normally a user can press enter and get a Login prompt, but they get the message "connection refused" and then the users can wait a minute or so and... (2 Replies)
Discussion started by: Docboyeee
2 Replies

3. IP Networking

Users logged in through which NIC

We have two NIC cards in our IBM RS/6000 F50 running AIX 4.3.3 We are trying to make sure we have moved all users to log in through the new NIC. 10.22.x.y (old) 10.22.x.z (new) How can I tell which users are still using the old address for logging in so I can update their work station to... (5 Replies)
Discussion started by: cburtgo
5 Replies

4. Shell Programming and Scripting

how many users logged

in unix what is the syntax to find out how many users are currently logged in (4 Replies)
Discussion started by: trichyselva
4 Replies

5. Post Here to Contact Site Administrators and Moderators

logged out users

how to find out users who logged out within 5 minutes (1 Reply)
Discussion started by: roshni
1 Replies

6. Shell Programming and Scripting

Users Not Logged in

I have searched the forums but have not mangaed to quite find what im looking for. I have used to /etc/passwd command to present me a list of all users the who command to present all users currently logged on, but what i want to know is what command can i use to display users that are registered... (12 Replies)
Discussion started by: warlock129
12 Replies

7. UNIX for Dummies Questions & Answers

How many users are logged in?

How do I find this out? I have a feeling its a simple command such as who, but I just don't know what it is. I've had a search on here but either I can't put it into the right search criteria or there isn't a topic on it. Thanks. EDIT: Delete this thread, as I posted it I noticed the... (0 Replies)
Discussion started by: chris_rabz
0 Replies

8. Red Hat

Current logged in users

I have 2 systems. (1) RHEL5 and (2) winXP pro from xpPRO putty i ssh into rhel5 : user root from xpPRO i ftp into rhel5 : user abc123 when i run #uptime it only shows 1 user when i do #ps -u abc123 : it shows vsftpd deamon PID is there a command that can be used to show all currently... (4 Replies)
Discussion started by: dplinux
4 Replies

9. Shell Programming and Scripting

Total number of users logged in a server from uptime

how to find out total number of users logged in a server from uptime . i mean to say i need the total output of unix command . who gives the out put at a particular time . I need at all time from which machine who has connected , (3 Replies)
Discussion started by: amiya.te@gmail
3 Replies

10. Linux

Logged in users on a Linux server are counted twice

Scenario: Log into a linux server interface as root. Inititiate an SSH session with the server using Putty and a valid user account (e.g. fakeuser). Log into TTY2 of the linux server interface using another valid user account (e.g. faketester). Issue: With these three login sessions,... (8 Replies)
Discussion started by: walterthered
8 Replies
Net::Jabber::Log(3pm)					User Contributed Perl Documentation				     Net::Jabber::Log(3pm)

NAME
Net::Jabber::Log - Jabber Log Module SYNOPSIS
Net::Jabber::Log is a companion to the Net::Jabber module. It provides the user a simple interface to set and retrieve all parts of a Jabber Log. DESCRIPTION
To initialize the Log with a Jabber <log/> you must pass it the XML::Parser Tree array. For example: my $log = new Net::Jabber::Log(@tree); There has been a change from the old way of handling the callbacks. You no longer have to do the above, a Net::Jabber::Log object is passed to the callback function for the log: use Net::Jabber; sub log { my ($Log) = @_; . . . } You now have access to all of the retrieval functions available. To create a new log to send to the server: use Net::Jabber; $Log = new Net::Jabber::Log(); Now you can call the creation functions below to populate the tag before sending it. For more information about the array format being passed to the CallBack please read the Net::Jabber::Client documentation. Retrieval functions $from = $Log->GetFrom(); $fromJID = $Log->GetFrom("jid"); $type = $Log->GetType(); $data = $Log->GetData(); $str = $Log->GetXML(); @log = $Log->GetTree(); Creation functions $Log->SetLog(type=>"error", from=>"users.jabber.org", data=>"The moon is full... I can't run anymore."); $Log->SetFrom("foo.jabber.org"); $Log->SetType("warn"); $Log->SetData("I can't find a config file. Using defaults."); Test functions $test = $Log->DefinedFrom(); $test = $Log->DefinedType(); METHODS
Retrieval functions GetFrom() - returns either a string with the Jabber Identifier, GetFrom("jid") or a Net::Jabber::JID object for the person who sent the <log/>. To get the JID object set the string to "jid", otherwise leave blank for the text string. GetType() - returns a string with the type <log/> this is. GetData() - returns a string with the cdata of the <log/>. GetXML() - returns the XML string that represents the <log/>. This is used by the Send() function in Client.pm to send this object as a Jabber Log. GetTree() - returns an array that contains the <log/> tag in XML::Parser Tree format. Creation functions SetLog(from=>string|JID, - set multiple fields in the <log/> type=>string, at one time. This is a cumulative data=>string) and over writing action. If you set the "from" attribute twice, the second setting is what is used. If you set the type, and then set the data then both will be in the <log/> tag. For valid settings read the specific Set functions below. SetFrom(string) - sets the from attribute. You can either pass a string SetFrom(JID) or a JID object. They must be valid Jabber Identifiers or the server will return an error log. (ie. jabber:bob@jabber.org/Silent Bob, etc...) SetType(string) - sets the type attribute. Valid settings are: notice general logging warn warning alert critical error (can still run but not correctly) error fatal error (cannot run anymore) SetData(string) - sets the cdata of the <log/>. Test functions DefinedFrom() - returns 1 if the from attribute is defined in the <log/>, 0 otherwise. DefinedType() - returns 1 if the type attribute is defined in the <log/>, 0 otherwise. AUTHOR
By Ryan Eatmon in May of 2000 for http://jabber.org.. COPYRIGHT
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2004-08-17 Net::Jabber::Log(3pm)
All times are GMT -4. The time now is 01:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy