Closed carmat88 closed 6 years ago
Hi,
looks like it could not connect to the zone beta.onedata.org
. Can you enter your VM and check:
curl
is enough, you should get 200 and some XML data.
Hi Łukasz. Thanks for replying. Yes, we can reach it. Here are the curl's outputs:
ubuntu@carmat-onedata-test1:~$ curl https://beta.onedata.org/nagios
<?xml version="1.0"?><healthdata date="2018/05/22 12:30:46" status="ok"><oz_worker name="oz_worker@node1.onezone.local" status="ok"><node_manager status="ok"/><request_dispatcher status="ok"/><datastore_worker status="ok"/><gs_worker status="ok"/><tp_router status="ok"/><gui_listener status="ok"/><nagios_listener status="ok"/><oz_redirector_listener status="ok"/></oz_worker></healthdata>
and
ubuntu@carmat-onedata-test1:~$ docker run -it ubuntu bash
root@eff9782d876d:/# curl https://beta.onedata.org/nagios
<?xml version="1.0"?><healthdata date="2018/05/22 12:33:00" status="ok"><oz_worker name="oz_worker@node1.onezone.local" status="ok"><node_manager status="ok"/><request_dispatcher status="ok"/><datastore_worker status="ok"/><gs_worker status="ok"/><tp_router status="ok"/><gui_listener status="ok"/><nagios_listener status="ok"/><oz_redirector_listener status="ok"/></oz_worker></healthdata>
What else do you think we may be overlooking here? Thanks.
Just to be sure, please also check if the curl works from the oneprovider-1
docker after you run getting started. You should have enough time before it reports a failure.
Also, you could try changing the Oneprovider version in the compose to onedata/oneprovider:18.02.0-rc2
and see if it works. AFAIR, around the beta1
release we had an issue with SSL certs validation, this might be the cause why it won't work even if Onezone is reachable.
Sure, also from the oneprovider-1
docker the curl test was successful:
ubuntu@carmat-onedata-test1:~$ docker exec -it oneprovider-1 curl "https://beta.onedata.org/nagios"
<?xml version="1.0"?><healthdata date="2018/05/22 13:26:49" status="ok"><oz_worker name="oz_worker@node1.onezone.local" status="ok"><node_manager status="ok"/><request_dispatcher status="ok"/><datastore_worker status="ok"/><gs_worker status="ok"/><tp_router status="ok"/><gui_listener status="ok"/><nagios_listener status="ok"/><oz_redirector_listener status="ok"/></oz_worker></healthdata>
And good news. Changing the Oneprovider version in the compose to onedata/oneprovider:18.02.0-rc2
solved the issue. Maybe you wanna mention it in the guidelines, or update the compose so to use 8.02.0-rc2 by default.
Anyway, thanks for your help!
Great, glad to help :)
We will soon update the compose files to use a newer version.
Hello guys. We are trying to follow your Getting Started instructions in order to learn a bit more about your project. However already during scenario 1.0 we are struggling with the documentation and thus hitting some errors (maybe due to us misreading the guidelines).
We have spawned up a VM (Ubuntu 16.04) with a public IP, made sure to install docker and docker compose and above all to open the ports as mentioned in your documentation here.
When we run the command:
./run_onedata.sh --provider --zone-fqdn beta.onedata.org --provider-fqdn <vm-public-ip>
The process fails at the step
check_oz_availability
stating:These are the error logs from
/var/log/op_panel
and/var/log/op_worker
and
Unfortunately we are not sure how to solve this error. Maybe because we skipped the step where it says (given that it's unclear):
Could you help us? Thanks.