You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use openrefine client on my local refine instance (OR 3.5.2 on M1 Mac) to get a list of all the projects. However, the command
docker run --rm --platform linux/amd64 --network=host -v ${PWD}:/data:z felixlohmeier/openrefine-client:v0.3.10 --list
result in the following error:
Traceback (most recent call last):
File "/app/refine.py", line 35, in <module>
__main__.main()
File "/app/google/refine/__main__.py", line 237, in main
cli.ls()
File "/app/google/refine/cli.py", line 211, in ls
projects = refine.Refine(refine.RefineServer()).list_projects().items()
File "/app/google/refine/refine.py", line 154, in list_projects
return self.server.urlopen_json('get-all-project-metadata')['projects']
File "/app/google/refine/refine.py", line 114, in urlopen_json
response = json.loads(self.urlopen(*args, **kwargs).read())
File "/app/google/refine/refine.py", line 104, in urlopen
(e.reason, self.server))
urllib2.URLError: <urlopen error [Errno 111] Connection refused for http://127.0.0.1:3333. No Refine server reachable/running; ENV set?>
Important to notice:
Openrefine is running and it is functional!
If I use the command with an instance of OpenRefine running on a server, everything works fine.
I am trying to use openrefine client on my local refine instance (OR 3.5.2 on M1 Mac) to get a list of all the projects. However, the command
result in the following error:
Important to notice:
Any ideas?