Fully working demo - example in repository doesn't work
See original GitHub issueHi again!
I’ve been trying for a few days to just get a basic demo up and running. I was first trying with a Singularity container, and have defaulted back to using the Dockerfile you have under “demo.” I am following the instructions and for the life of me I can’t get it working. The start command seems to hang:
$ docker run -p 127.0.0.1:8081:80 -ti paraview ws://localhost:8081
Starting/Restarting Apache webserver
* Restarting Apache httpd web server apache2 AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
[ OK ]
Starting the wslink launcher
Then the mapping to 127.0.0.1 doesn’t work, but I can go to 172.17.0.2, but the links are all dead (permission denied)
Then I browse to visualizer, for example, and it waits for a bit that it’s loading paraview
but ultimately fails:
Can you please provide a clean set of commands to reproduce your working demo? Thank you!
Issue Analytics
- State:
- Created 5 years ago
- Comments:17
Top Results From Across the Web
Solving “Fatal: Not A Git Repository” (Or Any Of The Parent ...
1. You tried to run the command but did not navigate to the project folder where the git repository is located. 2. You...
Read more >Exception:Field studentRepository in com.example.demo ...
Here you defined repository class directly in controller which is completely wrong. Controller is just for controlling in coming request and ...
Read more >Git Error: "Does Not Appear To Be a Git Repository"
The Git error "Does not appear to be a Git repository" can be difficult to isolate, but this article will tell you exactly...
Read more >Git Push Command Explained With Demo - Simplilearn
The repository is created on the server, and the content is pushed into that repository. It links the master branch on the local...
Read more >Git Tutorial – A Comprehensive Beginner's Guide - Hostinger
Learn how to use Git commands and all the basics with our Git tutorial, including workflow on local machines and remote repositories.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
That’s not only helps, it’s exactly what I needed! I just produced a fully working Singularity container. Thanks for all your help @jourdain, closing issue.
Apache will try to write some log files: https://github.com/Kitware/paraviewweb/blob/master/tools/docker/paraviewweb/config/apache/001-pvw.conf#L5-L6
Then the launcher will do the same here: https://github.com/Kitware/paraviewweb/blob/master/tools/docker/demo/config/launcher/launcher-template.json#L7 https://github.com/Kitware/paraviewweb/blob/master/tools/docker/demo/config/launcher/launcher-template.json#L15
HTH