You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I followed the guide to deploy the docker images. I have both (griffin and es running). Then I enter the griffin container in interactive mode and I execute
java -jar service/service.jar
But I obtain the follow:
APPLICATION FAILED TO START
Description:
The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.
So, I change the port as follow:
java -jar service/service.jar --server.port=8181
Then I obtain the follow:
2017-11-10 16:12:18.535 INFO 4845 --- [ main] oConfiguration$WelcomePageHandlerMapping : Adding welcome page: class path resource [public/index.html]
2017-11-10 16:12:19.013 INFO 4845 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-11-10 16:12:19.026 INFO 4845 --- [ main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147483647
2017-11-10 16:12:19.026 INFO 4845 --- [ main] o.s.s.quartz.SchedulerFactoryBean : Starting Quartz Scheduler now
2017-11-10 16:12:19.076 INFO 4845 --- [ main] org.quartz.core.QuartzScheduler : Scheduler schedulerFactoryBean_$_griffin1510330337340 started.
2017-11-10 16:12:19.087 INFO 4845 --- [ main] s.a.ScheduledAnnotationBeanPostProcessor : No TaskScheduler/ScheduledExecutorService bean found for scheduled processing
2017-11-10 16:12:19.147 INFO 4845 --- [pool-3-thread-1] o.a.griffin.core.common.CacheEvictor : Evict hive cache
2017-11-10 16:12:19.165 INFO 4845 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8181 (http)
2017-11-10 16:12:19.171 INFO 4845 --- [ main] o.a.griffin.core.GriffinWebApplication : Started GriffinWebApplication in 8.062 seconds (JVM running for 8.683)
2017-11-10 16:12:19.261 INFO 4845 --- [pool-3-thread-1] o.a.griffin.core.common.CacheEvictor : After evict hive cache,automatically refresh hive tables cache.
Hibernate: select distinct jobinstanc0_.group_name as col_0_0_, jobinstanc0_.job_name as col_1_0_ from job_instance jobinstanc0_
Hibernate: select distinct jobinstanc0_.group_name as col_0_0_, jobinstanc0_.job_name as col_1_0_ from job_instance jobinstanc0_
Hi,
I followed the guide to deploy the docker images. I have both (griffin and es running). Then I enter the griffin container in interactive mode and I execute
java -jar service/service.jarBut I obtain the follow:
So, I change the port as follow:
java -jar service/service.jar --server.port=8181Then I obtain the follow:
and I cannot access to the :8181 address.