[Bug]: MainProcess ERROR mindsdb: ERROR: http API cant start on 47334 in Ubuntu WSL #9455
Description
Short description of current behavior
I am installing Docker for Mindsdb in Ubuntu WSL using the docs in https://docs.mindsdb.com/setup/self-hosted/docker?utm_medium=referral&utm_source=partner&utm_campaign=23q2-airbyte-intercom-article. I get the error command "2024-07-06 06:27:51,844 MainProcess ERROR mindsdb: ERROR: http API cant start on 47334" while running the command "docker run --name mindsdb_container -p 47334:47334 -p 47335:47335 mindsdb/mindsdb
"
Video or screenshots
Expected behavior
Mindsdb image successful installation and accessing mindsdb editor in the browser
How to reproduce the error
Install ubuntu Docker Engine :
Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
Add the repository to Apt sources:
echo
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" |
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
Install Docker for MindsDB:
docker run --name mindsdb_container -p 47334:47334 -p 47335:47335 mindsdb/mindsdb
Obeserve the error
Anything else?
No response