Sponsored Content
Top Forums UNIX for Dummies Questions & Answers how to view my own process in a multiuser envrionment Post 302096364 by !_30 on Wednesday 15th of November 2006 07:51:28 AM
Old 11-15-2006
Have you tryied :

Code:
ps --user <user>

Smilie
 

9 More Discussions You Might Find Interesting

1. Programming

multiuser chat server closes when one client closes. code included

I have been trying to write a very basic chat program but at the moment I am having problems getting it to be multiuser as it closes all connections when one client shutsdown. I have also been having problems trying to get the program to display a list of usernames to the clients. I have tried... (0 Replies)
Discussion started by: dooker
0 Replies

2. UNIX for Dummies Questions & Answers

How to view my IP

I run Ubuntu server 7.04, to learn some *nix. I set up LAMP, DNS and FTP but I don't know how to view my ip. now I tried ifconfig but that didnt tell me what I wanted to know. so by what way can I do this without a gui and a website like ipchicken? (14 Replies)
Discussion started by: blowFish@ubuntu
14 Replies

3. UNIX for Dummies Questions & Answers

How to secure PHP in multiuser environment?

Hello. Could you please suggest the ways, by which one can prevent PHP users from reading other webroots? So far I know two ways: Apache mod_suexec and suphp. But it seems, they both require running PHP as a CGI, right? In this case I will be unable to benefit from APC (php opcache). I am... (4 Replies)
Discussion started by: FractalizeR
4 Replies

4. UNIX for Dummies Questions & Answers

view others process

Hello, I hope this is an easy question. I have a few users who login through SSH and some times their bash session is using 100% cpu even though its been "idle" according to who for several days. I would like to know what command the user ran in their bash session to peg the cpu out but am... (6 Replies)
Discussion started by: taheri6
6 Replies

5. UNIX for Advanced & Expert Users

View process history

Hi, Is there any way to view process history. Suppose I had killed a few procs yesterday and now I want to see what were the procs that were running yesterday? (2 Replies)
Discussion started by: King Nothing
2 Replies

6. UNIX for Advanced & Expert Users

How to view Ramdisk Initialization Process

Dear all, I read some articles about initrd, but how to view this process in my computer :(? Is there anyway to display to the screen or write to the log file? (3 Replies)
Discussion started by: Hannibal2010
3 Replies

7. Shell Programming and Scripting

command history of a particular user in a multiuser environment

Is it possible to find out the history of recently typed in commands of a particular user in a multi user system? the history command expects a numeric argument with it. is it possible to find out the history o commands of a particular user say John_smith for example? (2 Replies)
Discussion started by: arindamlive
2 Replies

8. UNIX for Dummies Questions & Answers

View User Mode Call Stack of Hung Process

I have a multithreaded usermode program(actually a daemon) which is in hanged state. To debug it I tried attaching the process to gdb, but the gdb hangs. gstack also gets hanged. I peeped into the proc file system and saw the process to be in sleeping state. /proc/sysrq-trigger I guess... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

9. What is on Your Mind?

Moving from Desktop View to Mobile View

See attached video for a demo on how to move back and forth from the desktop view to the mobile view. Currently this only works for the home page, but I will work on some new PHP code in the future to make this work with the page we are currently on. Edit: The issue with making every page ... (2 Replies)
Discussion started by: Neo
2 Replies
WebKDC::WebKDCException(3pm)				User Contributed Perl Documentation			      WebKDC::WebKDCException(3pm)

NAME
WebKDC::WebKDCException - exceptions for WebKDC SYNOPSIS
use WebKDC; use WebKDC::WebKDCException; eval { ... WebKDC::request_token_request($req, $resp); ... }; if (WebKDC::WebKDCException::match($@)) { my $e = $@; # you can call the following methods on a WebKDCException object: # $e->status() # $e->message() # $e->error_code() # $e->verbose_message() } DESCRIPTION
The various WebKDC functions can all throw WebKDCException if something wrong happens. EXPORT
The following constants are exported: WK_SUCCESS WK_ERR_USER_AND_PASS_REQUIRED WK_ERR_LOGIN_FAILED WK_ERR_UNRECOVERABLE_ERROR WK_ERR_REQUEST_TOKEN_STATLE WK_ERR_WEBAUTH_SERVER_ERROR WK_ERR_LOGIN_FORCED WK_ERR_USER_REJECTED WK_ERR_CREDS_EXPIRED WK_ERR_MULTIFACTOR_REQUIRED WK_ERR_MULTIFACTOR_UNAVAILABLE WK_ERR_LOGIN_REJECTED WK_ERR_LOA_UNAVAILABLE WK_SUCCESS This status code never comes back as part of an exception, though it might be returned by a function that uses these status codes as return values. WK_ERR_USER_AND_PASS_REQUIRED This status code indicates that a function was called that required a username and password. The user should be prompted for their username and the function should be called again. WK_ERR_LOGIN_FAILED This status code indicates that a function was called that attempted to validate the username and password and could not, due to an invalid user or password. The user should be re-prompted for their username/password and the function should be called again. WK_ERR_UNRECOVERABLE_ERROR This status code indicates that a function was called and an error occured that can not be recovered from. If you are in the process of attempting to log a user in, you have no choice but to display an error message to the user and not prompt again. WK_ERR_REQUEST_TOKEN_STALE This status code indicates the user took too long to login, and the the request token is too old to be used. WK_ERR_WEBAUTH_SERVER_ERROR This status code indicates something happened that most likely indicates the webauth server that made the request is mis-configured and/or unauthorized to make the request. It is similar to WK_ERR_UNRECOVERABLE_ERROR except that the error message to the user should indicate that the problem is most likely with the server that redirected them. WK_ERR_LOGIN_FORCED This status code indicates that a function was called that required a username and password even if single sign-on credentials were available. The user should be prompted for their username and password and the function should be called again with that data. WK_ERR_USER_REJECTED This status code indicates that the authenticated principal was rejected by the WebKDC configuration (usually because WebKdcPermittedRealms was set and the realm of the principal wasn't in that list). WK_ERR_CREDS_EXPIRED This status code indicates that the principal we attempted to authenticate to has an expired password. WK_ERR_MULTIFACTOR_REQUIRED This status code indicates that authentication was successful but that authentication with a second factor is also required. The user should be prompted for their second factor and then the login reattempted with that information plus the returned proxy tokens. WK_ERR_MULTIFACTOR_UNAVAILABLE This status code indicates that the desired site requires multifactor, but the user does not have multifactor configured or does not have the correct second factor to authenticate to that site. WK_ERR_LOGIN_REJECT This status code indicates that this user is not allowed to log on to that site at this time for security reasons. This is a transitory error; the user may be permitted to authenticate later, or from a different location. This error message is used for rejected logins from particular locations, logins that appear to be from a compromised account, or accounts that have been locked out due to too many failed logins. WK_ERR_LOA_UNAVAILABLE This status code indicates that the site requested a Level of Assurance for the user's authentication that is higher than this user can provide, either because of insufficient proof of identity available to the system or due to an insufficiently strong configured authentication method. METHODS and FUNCTIONS match($exception[, $status]) This class function (not a method) returns true if the given $exception is a WebKDC::WebKDCException. If $status is specified, then $exception->status() will also be compared to $status. new(status, message, wrapped_exception) This method is used to created new WebKDC::WebKDCException objects. status() This method returns the WebKDC::WebKDCException status code for the exception, which will be one of the WK_ERR_* codes. message() This method returns the error message that was used in the constructor. error_code() This method returns the WebKDC errorCode (if there was one). verbose_message() This method returns a verbose error message, which consists of the status code, message, and any error code. The verbose_message method is also called if the exception is used as a string. AUTHOR
Roland Schemers (schemers@stanford.edu) SEE ALSO
WebKDC. perl v5.14.2 2012-04-25 WebKDC::WebKDCException(3pm)
All times are GMT -4. The time now is 02:18 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy