Starting server 8.1 -- How? No error messages.

Installed WebLogic 8.1 on a Linux RHAS 4u4 machine
(Linux xxx.xxx 2.6.9-42.ELsmp #1 SMP Wed Jul 12 23:27:17 EDT 2006 i686 i686 i386 GNU/Linux)
Workshop comes up okay but when I click "Start Weblogic Server", the fuel gauge comes up and it grinds for a few minutes (maybe 8 mins), then the fuel gauge goes away and the server is still not started. (This is just the default install).
I'm just trying to poke my way around and discover WebLogic. I can find no logs which have been updated, no error messages, no hint of what's going on.
Any tips?

Hi Frank,
Here is a sample:
import java.io.Serializable;
public enum AddressType implements Serializable {
* Mail Address.
MAIL("Mail Address"),
* Residential Address.
RES("Residential Address");
* Description for each of the enum constants.
private String description;
* Default constructor that allows for a textual description.
* @param description
* Descriptive text for this <code>Enum</code> constant
AddressType(final String description) {
this.description = description;
* Retrieve the description associated with this enum.
* @return the textual description related to the
* <code>AddressType</code>
public String getDescription() {
return description;
Thank you for your assistance.
Regards,
Graeme.

Similar Messages

Maybe you are looking for