Sponsored Content
Contact Us Forum Support Area for Unregistered Users & Account Problems Two Login's - Remember only one. Post 302137943 by reborg on Thursday 27th of September 2007 06:40:19 PM
Old 09-27-2007
If you can PM me or Perderabo who is also online now your original email address we can merge the two accounts. In case you have forgotten it I will give you the first four letters of the domain.

XXXXXXX@poweXXXXXXX
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

It's been awhile...help me remember

Well it's been a long time since I have used any OS besides apples and windows (raising my son). My principal would like our teachers to use UNIX as their mail system. That's not a problem, the mail system is like riding a bike you never forget. Here's my problem. She wants me to write a script... (2 Replies)
Discussion started by: catbad
2 Replies

2. Shell Programming and Scripting

AWK--does anyone remember it

I am trying to run awk on a 55 page Word document. I wanted to delete every occurrence of <company>, <script>, </scripts> from the file then cut & paste all of the appropriate fields to an Excel spreadsheet. Also the code is suppose to replace the dates in a new format such as "xxxx-xx-xx" ... (2 Replies)
Discussion started by: cnitadesigner
2 Replies

3. UNIX for Dummies Questions & Answers

remember last visited line in vim

hi, I know we can do this; but dont know how.. I open a file using vim..browse thru it and then say :wq after reaching some line; The next time I open the same file, I want vim to position the cursor on the line where I left last time; anyone? (2 Replies)
Discussion started by: spopuri
2 Replies

4. UNIX for Dummies Questions & Answers

scripts remember the previous parameter???

I have a simple script. I have tried this in Bourne, Korn and C shells in my AIX ...no luck unset STARTQUEUE # Check parameters if then echo "*E* Batch Queue parameter is missing" else $BATCHQ/bin/setup.sh STARTQUEUE=$1 # If the queue doesn't exist, create it ... (3 Replies)
Discussion started by: KenL
3 Replies

5. Shell Programming and Scripting

remember processed files

Hello dear community! I have the following task to accomplish: there is a directory with approximately 2 thousand files. I have to write a script which would randomly extract 200 files on the first run. On the second run it should extract again 200 files but that files mustn't intersect with... (5 Replies)
Discussion started by: sidorenko
5 Replies

6. UNIX for Dummies Questions & Answers

Grep that I should know but I can't remember!

I have a master list of hosts, and a list of bad hosts. I want to filter out the bad hosts from the master list. I was trying a few for loops but it's not providing the desired result: for i in $(cat master_host_list);do grep -iv $i bad_host_list;done | sort | uniq # won't work because it... (5 Replies)
Discussion started by: MaindotC
5 Replies

7. What is on Your Mind?

Anyone remember this cute unix ad?

It showed a cleaning woman (probably in the evening, after most of the other employees had left work) happily typing commands on a dot matrix terminal (could've been a DEC LA120, IIRC) just because "unix is so easy to use, even a cleaning woman can use it!". If you know where to find a scanned... (2 Replies)
Discussion started by: mathiasbage
2 Replies

8. Post Here to Contact Site Administrators and Moderators

Log Out vs Remember Me

Howdy, I clicked the rememberer me when I log in, and evidently I really do not understand what that means. I had hoped that at least it would remember my user name for the next time that I log in. However, when I log out, I see a message about cookies being removed and one other thing that I... (1 Reply)
Discussion started by: danuke
1 Replies

9. UNIX for Beginners Questions & Answers

What is the best way to remember UNIX / Linux Commands?

Hi all, I'm new to UNIX world and new to this forum. As I observed there are lot of commands that needs to be remembered in UNIX programming. I'm into DevOps and can anyone please tell me what are all the important commands that are useful for DevOps Engineer. NOTE: Please correct me if my... (3 Replies)
Discussion started by: maxlink
3 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 10:56 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy