risdenk commented on PR #1223:
URL: https://github.com/apache/solr/pull/1223#issuecomment-1351628578

   Well I dug through the Jetty code and found ShutdownMonitor - which has a 
separate DEBUG property to actually do logging - 7aa80ee
   
   Locally testing in 
`./solr/packaging/build/solr-10.0.0-SNAPSHOT/server/logs/solr-7574-console.log` 
I found the following:
   
   ```
   [ShutdownMonitor] command=stop
   [ShutdownMonitor] Performing stop command
   java.security.AccessControlException: access denied 
("java.io.FilePermission" 
"/private/var/folders/_9/1c1gx5717xqc4vpbtkx2k12h0000gn/T/jetty-127_0_0_1-7574-webapp-_solr-any-10834318635653572205"
 "read")
        at 
java.base/java.security.AccessControlContext.checkPermission(AccessControlContext.java:485)
        at 
java.base/java.security.AccessController.checkPermission(AccessController.java:1068)
        at 
java.base/java.lang.SecurityManager.checkPermission(SecurityManager.java:416)
        at 
java.base/java.lang.SecurityManager.checkRead(SecurityManager.java:756)
        at java.base/java.io.File.exists(File.java:829)
        at org.eclipse.jetty.util.IO.delete(IO.java:363)
        at 
org.eclipse.jetty.webapp.WebInfConfiguration.deconfigure(WebInfConfiguration.java:87)
        at 
org.eclipse.jetty.webapp.WebAppContext.stopContext(WebAppContext.java:1316)
        at 
org.eclipse.jetty.server.handler.ContextHandler.doStop(ContextHandler.java:1086)
        at 
org.eclipse.jetty.servlet.ServletContextHandler.doStop(ServletContextHandler.java:312)
        at 
org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:132)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:182)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:205)
        at 
org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:97)
        at 
org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:132)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:182)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:205)
        at 
org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:97)
        at 
org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:132)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:182)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:205)
        at 
org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:97)
        at 
org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:132)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:182)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:205)
        at 
org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:97)
        at 
org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:132)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:182)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:205)
        at 
org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:97)
        at 
org.eclipse.jetty.server.handler.gzip.GzipHandler.doStop(GzipHandler.java:227)
        at 
org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:132)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:182)
        at 
org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:205)
        at 
org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:97)
        at org.eclipse.jetty.server.Server.doStop(Server.java:517)
        at 
org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:132)
        at 
org.eclipse.jetty.server.ShutdownMonitor$ShutdownMonitorRunnable.stopLifeCycles(ShutdownMonitor.java:456)
        at 
org.eclipse.jetty.server.ShutdownMonitor$ShutdownMonitorRunnable.run(ShutdownMonitor.java:363)
        at java.base/java.lang.Thread.run(Thread.java:833)
   [ShutdownMonitor] Informing client that we are stopped
   [ShutdownMonitor] Killing JVM
   java.security.AccessControlException: access denied 
("java.lang.RuntimePermission" "exitVM.0")
        at 
java.base/java.security.AccessControlContext.checkPermission(AccessControlContext.java:485)
        at 
java.base/java.security.AccessController.checkPermission(AccessController.java:1068)
        at 
java.base/java.lang.SecurityManager.checkPermission(SecurityManager.java:416)
        at 
java.base/java.lang.SecurityManager.checkExit(SecurityManager.java:629)
        at java.base/java.lang.Runtime.exit(Runtime.java:113)
        at java.base/java.lang.System.exit(System.java:1860)
        at 
org.eclipse.jetty.server.ShutdownMonitor$ShutdownMonitorRunnable.run(ShutdownMonitor.java:374)
        at java.base/java.lang.Thread.run(Thread.java:833)
   ```
   
   which is the missing logs I was looking for. I'm not surprised that the JVM 
can't be killed. The security manager seems to be taking care of that... I just 
don't know how this ever worked...


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to