skip to Main Content

Laravel – MySQL docker container stuck reloading

My stack is win10/wsl2/ubuntu/docker desktop. I'm stuck on running a MySQL docker container. This is a part of my docker-compose.yml: mysql: hostname: a-mysql container_name: a-mysql image: mysql:8 restart: unless-stopped volumes: - ./mysql_data:/var/lib/mysql - ./mysql/my.cnf:/etc/mysql/conf.d/my.cnf - ./mysql/dump:/docker-entrypoint-initdb.d env_file: - .env ports:…

VIEW QUESTION

Ubuntu – Running cqlsh returns "ModuleNotFoundError: No module named 'six.moves'"

I have problem with running cqshl after install Appache Cassandra on Ubuntu 24.04 LTS: Traceback (most recent call last): File "/usr/bin/cqlsh.py", line 134, in <module> from cassandra.cluster import Cluster File "/usr/share/cassandra/lib/cassandra-driver-internal-only-3.25.0.zip/cassandra-driver-3.25.0/cassandra/cluster.py", line 33, in <module> ModuleNotFoundError: No module named 'six.moves'…

VIEW QUESTION
Back To Top
Search