-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to use my data #16
Comments
Nathan,
Any idea what’s going on here?
Thanks,
James
… On Dec 10, 2019, at 7:56 AM, zwergon ***@***.***> wrote:
Hello,
I'm trying to use docker image as described in the readme.
I successfully built the docker image and when i use the data provided by the container, it works perfectly.
docker build -t hyrax_image --build-arg USE_NCWMS=true --no-cache hyrax
As soon as i try to mount another volume,
docker run \
--name hyrax_container \
--publish 8080:8080 \
**--volume /home/jef/HyraxData:/usr/share/hyrax**
hyrax_image \
-e ***@***.*** \
-s \
-n http://localhost:8080
It doesn't work anymore. I am always able to navigate at the url : http://localhost:8080/opendap <http://localhost:8080/opendap> but as soon as i try to click on a file stored in /home/jef/HyraxData i get a server error.
If i look in /var/log/bes i obtain the following error message
2019-12-10T15:11:06GMT|&|123|&|get.ddx,dap2,/usr/share/hyrax/coads_climatology.nc
2019-12-10T15:11:06GMT|&|123|&|ERROR: BES Internal Error: Could not open /usr/share/hyrax/coads_climatology.nc. (NCRequestHandler.cc:406)
I really don't understand what is going wrong.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#16?email_source=notifications&email_token=AB7Q4KWTQ6WO256RTYUINEDQX63ZPA5CNFSM4JZAZAHKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4H7P7QEA>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AB7Q4KQODGLQW5PDHPO6TPTQX63ZPANCNFSM4JZAZAHA>.
|
Hi,
Can you point a browser at the sever and see the html pages it generates?
…--
James Gallagher
jgallagher at opendap.org
On Dec 10, 2019, at 07:56, zwergon ***@***.***> wrote:
Hello,
I'm trying to use docker image as described in the readme.
I successfully built the docker image and when i use the data provided by the container, it works perfectly.
docker build -t hyrax_image --build-arg USE_NCWMS=true --no-cache hyrax
As soon as i try to mount another volume,
docker run \
--name hyrax_container \
--publish 8080:8080 \
**--volume /home/jef/HyraxData:/usr/share/hyrax**
hyrax_image \
-e ***@***.*** \
-s \
-n http://localhost:8080
It doesn't work anymore. I am always able to navigate at the url : http://localhost:8080/opendap but as soon as i try to click on a file stored in /home/jef/HyraxData i get a server error.
If i look in /var/log/bes i obtain the following error message
2019-12-10T15:11:06GMT|&|123|&|get.ddx,dap2,/usr/share/hyrax/coads_climatology.nc
2019-12-10T15:11:06GMT|&|123|&|ERROR: BES Internal Error: Could not open /usr/share/hyrax/coads_climatology.nc. (NCRequestHandler.cc:406)
I really don't understand what is going wrong.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
The problem may be that the user that runs bed in the container does not
have read access to the content (but can list the content). You could start
a shell in the running container and poke about. docker exec- it...
Gareth
On Thu, 12 Dec. 2019, 12:59 pm James Gallagher, <notifications@github.com>
wrote:
…
Hi,
Can you point a browser at the sever and see the html pages it generates?
--
James Gallagher
jgallagher at opendap.org
> On Dec 10, 2019, at 07:56, zwergon ***@***.***> wrote:
>
>
> Hello,
>
> I'm trying to use docker image as described in the readme.
>
> I successfully built the docker image and when i use the data provided
by the container, it works perfectly.
>
> docker build -t hyrax_image --build-arg USE_NCWMS=true --no-cache hyrax
>
> As soon as i try to mount another volume,
>
> docker run \
> --name hyrax_container \
> --publish 8080:8080 \
> **--volume /home/jef/HyraxData:/usr/share/hyrax**
> hyrax_image \
> -e ***@***.*** \
> -s \
> -n http://localhost:8080
> It doesn't work anymore. I am always able to navigate at the url :
http://localhost:8080/opendap but as soon as i try to click on a file
stored in /home/jef/HyraxData i get a server error.
>
> If i look in /var/log/bes i obtain the following error message
>
> 2019-12-10T15:11:06GMT|&|123|&|get.ddx,dap2,/usr/share/hyrax/
coads_climatology.nc
> 2019-12-10T15:11:06GMT|&|123|&|ERROR: BES Internal Error: Could not open
/usr/share/hyrax/coads_climatology.nc. (NCRequestHandler.cc:406)
> I really don't understand what is going wrong.
>
> —
> You are receiving this because you are subscribed to this thread.
> Reply to this email directly, view it on GitHub, or unsubscribe.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#16?email_source=notifications&email_token=AAUSKFI5JAOGAO4AZKTGPMDQYGLITA5CNFSM4JZAZAHKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEGVGMVY#issuecomment-564815447>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAUSKFJ6TSMDZXCOCYB6I2DQYGLITANCNFSM4JZAZAHA>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I'm trying to use docker image as described in the readme.
I successfully built the docker image and when i use the data provided by the container, it works perfectly.
docker build -t hyrax_image --build-arg USE_NCWMS=true --no-cache hyrax
As soon as i try to mount another volume,
It doesn't work anymore. I am always able to navigate at the url : http://localhost:8080/opendap but as soon as i try to click on a file stored in /home/jef/HyraxData i get a server error.
If i look in /var/log/bes i obtain the following error message
I really don't understand what is going wrong.
The text was updated successfully, but these errors were encountered: