When the Chat Blazer server is down, please proceed with the following steps.

Note: Proceed to (II) if you are running Chat Blazer for the very first time.

I. Shutting down existing Chat Blazer server process.
=====================================================
	1. Telnet into your account
	2. Enter the following at the prompt:
	   "ps aux | more" or "ps -u [loginname] | more"
	3. A list of processes will show. Take note of the row that contains
	   a program running from java. Take down its corresponding process ID.
	4. Enter the following at the prompt:
	   "kill [processID]"
	   This will effectively terminate the Chat Blazer server

II. Starting up the Chat Blazer server
======================================
	1. Go to your directory where the Chat Blazer class files are stored.
	   That directory should contain at least the following files:
	   a. chat.class
	   b. ThreadedChatHandler.class
		c. Room.class
	   d. LinkedList.class
	2. Enter the following at the prompt:
	   "nohup java chat [port number] [y|n] &"
      Port number = 7999 (default)
		y : enable chat log
	   n : disable chat log	
      If your system responded with a "command not found" message, please
      derive the full path of your java executable file.
      Usually, it is "/usr/java/bin/java"
      Then enter the following at the prompt:
      "nohup [Full java path] chat [port number] [y|n] &"
	3. Logout of your telnet session by typing "logout".