Hello all, I am trying to upgrade to v0.8.45. Howe...
# all-things-deployment
a
Hello all, I am trying to upgrade to v0.8.45. However, the frontend pod is restarting and the error message is, any ideas? :
Copy code
Oops, cannot start the server.
java.nio.file.AccessDeniedException: /RUNNING_PID
	at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:90)
	at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111)
	at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:116)
	at java.base/sun.nio.fs.UnixFileSystemProvider.newByteChannel(UnixFileSystemProvider.java:219)
	at java.base/java.nio.file.spi.FileSystemProvider.newOutputStream(FileSystemProvider.java:478)
	at java.base/java.nio.file.Files.newOutputStream(Files.java:220)
	at play.core.server.ProdServerStart$.createPidFile(ProdServerStart.scala:162)
	at play.core.server.ProdServerStart$.start(ProdServerStart.scala:48)
	at play.core.server.ProdServerStart$.main(ProdServerStart.scala:30)
	at play.core.server.ProdServerStart.main(ProdServerStart.scala)
m
Good afternoon @agreeable-belgium-70840, I think that error is probably due to an error or not being able to capture the following config:
Copy code
- JAVA_OPTS=-Xms2g -Xmx2g -Dhttp.port=9002 -Dconfig.file=datahub-frontend/conf/application.conf
        -Djava.security.auth.login.config=datahub-frontend/conf/jaas.conf -Dlogback.configurationFile=datahub-frontend/conf/logback.xml
        -Dlogback.debug=false -Dpidfile.path=/dev/null
The path that it is not "capturing" correctly (if I am not mistaken) is the one specified in the
pidfile.path
a
that's right, solved. thanks