nickdomnin edited a comment on issue #11082:
URL:
https://github.com/apache/incubator-superset/issues/11082#issuecomment-711933114
@alirezas Hey, i caught similar issues a few days ago installing version
0.37.2 on fresh Fedora machine.
Whitelisting docker in firewall helps me to run superset. I used next
commands for it:
```
sudo firewall-cmd --permanent --zone=trusted --add-interface=docker0
sudo firewall-cmd --permanent --zone=FedoraWorkstation --add-masquerade
```
Without it docker have some strange issues with networking. Such as failures
in resolving some external hosts from global DNS and problems with
intercommunications between containers.
Also i see another issue in your logs:
```
superset_init | pkg_resources.ContextualVersionConflict: (pyarrow
0.17.1 (/usr/local/lib/python3.6/site-packages),
Requirement.parse('pyarrow<1.1,>=1.0.1'), {'apache-superset'})
```
It's appeared due to changed process of building superset docker images for
development. As for now they depends on preset/superset:dev image from docker
hub, but this image correlates with master branch (as I understand), but you
have older version with different requirements specification for some packages.
Just change dependency in docker-compose.yml from Dockerfile-dev to
Dockerfile to build images from scratch on every deploy or delete
preset/superset:dev image and build it locally to resolve that issue using next
commands:
```
docker rmi preset/superset:dev
docker build -t preset/superset:dev .
```
Hope it will help you.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]