erik-rnbt
erik-rnbt
This is what Log-Level finest says when you enter the ui and it shows "Loading" ``` 10:04:50.068 DEBUG [RequestConverter.channelRead0] - Incoming message: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1) GET /ui HTTP/1.1 Host:...
I tried setting up a secure grid to get rid of the dependency on Apache, but I'm getting an error: ``` 2022-11-02 10:36:49,129 INFO Included extra file "/etc/supervisor/conf.d/selenium-grid-hub.conf" during parsing...
Thanks for the info. I tried mounting it to the container with: ``` docker run -p 4442-4444:4442-4444 \ -v /root/cert.cer:/cert.cer \ -v /root/key.pem:/key.pem \ -e SE_OPTS="--https-certificate cert.cer --https-private-key key.pem" \...
You mean change this line `-e SE_OPTS="--https-certificate cert.cer --https-private-key key.pem" \` to `-e SE_OPTS="--https-certificate /cert.cer --https-private-key /key.pem" \` ? This also wont work. But thats where the files are, arent...
This is the error ``` java.lang.reflect.InvocationTargetException at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.openqa.selenium.grid.Bootstrap.runMain(Bootstrap.java:77) at org.openqa.selenium.grid.Bootstrap.main(Bootstrap.java:70) Caused by: org.openqa.selenium.grid.config.ConfigException: java.lang.reflect.InvocationTargetException at org.openqa.selenium.grid.config.MemoizedConfig.getClass(MemoizedConfig.java:115) at org.openqa.selenium.grid.server.EventBusOptions.createBus(EventBusOptions.java:51) at org.openqa.selenium.grid.server.EventBusOptions.getEventBus(EventBusOptions.java:41) at...
The files were currupted. I created a new cert and key file with: ``` openssl req -newkey rsa:2048 -nodes -keyout key.key -out cert.csr openssl x509 -signkey key.key -in cert.csr -req...
The hub still shows me the error when i try to start it with the cert and key. I just made sure i have a valid certificate and key. They...
Thanks @krmahadevan Changing the permission and mounting them with :z to the container worked. The hub is running. But when trying to add a node it shows this: ``` javax.net.ssl|ERROR|21|nioEventLoopGroup-3-5|2022-11-21...
@krmahadevan > * Now when running `docker-compose up` I noticed the below exception at the grid side > > ```shell > selenium-hub | javax.net.ssl|ERROR|1C|HttpClient-1-Worker-0|2022-11-13 08:39:42.468 UTC|TransportContext.java:345|Fatal (CERTIFICATE_UNKNOWN): No subject alternative...
At first you have to add a SAN to your csr and cert by using your own openssl.cnf. For example openssl.cnf: ``` [req] distinguished_name = req_distinguished_name req_extensions = v3_req [req_distinguished_name]...