User Guide

LOGIN Messages 237
System Messages
103-000150-001
August 29, 2001
Novell Confidential
Manual 99a38 July 17, 2001
LOGIN-X-530: The line contains no end quote.
Source: LOGIN.EXE
Possible Cause: A line in the login script does not contain an end quote. For example, WRITE
Hello World! is missing the second double quote mark.
Action: Put the end quote in the login script at the end of the specified line.
LOGIN-X-550: The maximum number of connections allowed on this server has been
reached. Wait until another user logs out.
Source: LOGIN.EXE
Possible Cause: The user is trying to log in to or attach to a server via the login script, but too
many users are already logged in to the server. The servers come with 5, 10,
1000, or other programmed number of user versions.
Action: Wait until a user logs out (thus freeing a connection that will allow the user to
log in), or, if this is a recurring problem, upgrade to a server with a greater
number of user connections.
LOGIN-X-560: This utility could not find the label label.
Source: LOGIN.EXE
Explanation: The label used in the GOTO command was not found.
Possible Cause: A common cause of this problem is shown in the following example:
IF FILE_SERVER = 911 THEN GOTO need_help
........
need_hep:
.......
.......
ENDIF
Note that need_help and the label need_hep are spelled differently; therefore,
LOGIN cannot find the label specified by the GOTO command. Also, if the
colon is left off the label name, LOGIN will not know that it is a label and will
not find it.
Action: Edit the login script. Make sure that the label is spelled correctly and that a
colon follows the label name.