Jump to content

[Solved] java deploy 127.0.0.1:8080 problem


weweneh1

Recommended Posts

If I remember right, that issue is caused by a code error on your part. Check to make sure you didn't reference localhost or 127.0.0.1 explicitly anywhere in your war.

 

Krydos might know more, I have very little knowledge of how java works.

Link to comment
Share on other sites

That redirect is caused by your code. Most likely it's a conflict with our systems renaming your .war file from what it expects to be named. You are deploying login.war, but we need to append your username to the front of it to make weweneh1_login.war. If our system didn't do that anyone else who tried to deploy a login.war would overwrite your site. Most of the time this can be fixed by naming your file weweneh1_login.war when you create it.

Link to comment
Share on other sites

It looks like your application won't even start.

FAIL - Application at context path [/weweneh1_wekenche] could not be started
FAIL - Encountered exception [org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/weweneh1_wekenche]]]
Link to comment
Share on other sites


22-Nov-2018 04:58:14.062 SEVERE [localhost-startStop-23] org.apache.catalina.core.ContainerBase.addChildInternal ContainerBase.addChild: start:
org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/weweneh1_admin]]
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:752)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:728)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:734)
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:986)
at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1857)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: org.springframework.jmx.export.UnableToRegisterMBeanException: Unable to register MBean [HikariDataSource (HikariPool-6)] with key 'dataSource'; nested exception is javax.management.InstanceAlreadyExistsException: com.zaxxer.hikari:name=dataSource,type=HikariDataSource
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...