Error installing weblogic: Unable to access or modify the system registry

0

I try to install weblogic but I get this error, I download it from oracle and it is a .jar file, I also try to execute it with cmd and I get the same thing

How can I install it correctly? or what other server do you recommend ?? I'm going to start working with JSF

    
asked by Root93 13.12.2016 в 04:51
source

2 answers

0

Your error may be related to setting the MW_HOME in the environment variables, I may be wrong but I have seen problems with this variable, the following link has a step by step Oracle directly for the installation of WebLogic Server, it may be useful.

As for other JavaEE application servers, there are several:

  • Glassfish
  • Jboss | WildFly (newer)
  • TomEE
  • In my opinion, Glassfish has made it easy for me, compared to Jboss, I have not used TomEE, but I know it is a "version" of Tomcat that supports the technologies of the JavaEE specification as they are EJB, JMS, CDI, JTA thing that Tomcat does not do, it is only a servlet container, so it allows to use only JSP and its respective library JSTL and obviously Servlets as such.

    Netbeans for example, comes with Glassfish in its installation as an option and it is very intuitive to start, of course any application server is quite easy to implement but when it comes to configurations, it seems to me that Jboss is a bit more confusing.

        
    answered by 13.12.2016 в 05:24
    0

    Good afternoon,

    In general I recommend, if you are going to install Weblogic in Windows, it is done in a folder / directory outside the system folders, that is, outside of Program Files and outside of Users. That means that it is not a default installation. The error it shows is precisely that, which does not have permissions to modify the registry and finish installing correctly. Run the cmd with administrator permissions and launch "java -jar blablabla.jar" (it can be wls1036_generic.jar or fmw_12.1.3.0.0_wls.jar etc ... depending on the package you have downloaded from oracle).

    If you launch the installation like this, I'm almost sure it will work correctly.

        
    answered by 06.02.2017 в 16:19