We are setting up OOD in our Protected Environment (PE) that may be having some extra quirks so we are having trouble getting the interactive apps work, that work fine in the general environment (GE).
One issue is the Jupyter server - fairly standard app setup with the Jupyter being launched via the view.html.erb POST as:
Connect to JupyterIs there a way to set up some more verbose logging on the server, or see something more in the Inspector so we see how the POST method is being executed?
In our case, in the GE, pushing the “Connect to Jupyter” button passes in the password and launches the Jupyter file viewer (“tree”) in another browser tab - the correct behavior.
In the PE, the password seems to not be accepted and we’re presented with Jupyter login screen, asking for password, which if we enter from the connection.yml in the app’s running directory, we get logged in the Jupyter.
We’re trying to see some logs that would show us if the password is being passed to the server in the PE. I don’t see anything of use in the /var/www/httpd24, in fact, I see the POST in the access_ssl log with some basic info when I push the “Connect to Jupyter”, button, but nothing in the error_ssl log.
In the Inspector view on the client web browser, we’re given a server response that JavaScript is missing, though it’s enabled in the browser, and, the server (on the compute node) has it installed and functional (nodejs). So, I am not sure about that response, especially since I need to push Reload of the Jupyter tab to see all the network traffic in the Inspector. I can’t seem to figure out how to enable the Inspector on the first push to the “Connect to Jupyter” button.
Even more bizzarre is, if I push the “Connect to Jupyter” again, the Jupyter gets launched. So, something is blocking the first push, but lets through the second.
In either case, if anyone has some extended logging/debugging tips, it’d be appreciated.
Martin