All Questions
4 questions
0
votes
1
answer
353
views
Lost connection error when trying to connect to proxy SQL on VM with Container Optimised OS
For a project with Data Fusion I need to create a Virtual Machine with Proxy SQL. In order to test this proxy I've created a second instance with MariaBD but I'm not able to establish the connection ...
0
votes
1
answer
3k
views
Docker Basic Proxysql with mysql that logs all queries
I am looking to setup proxysql and mysql locally with Docker so I can stream all outgoing logs (including any failed logs) with something like
docker logs -f proxysql
This is so I can debug queries ...
2
votes
1
answer
33k
views
yum install not working from Dockerfile
I was trying to create a Docker Image for ProxySQL . Following is my DockerFile
FROM rhel7:latest
USER root
MAINTAINER Ques Zama
# Update the image with the latest packages (recommended)
RUN yum ...
0
votes
2
answers
3k
views
How to connect to ProxySQL with default config on Docker
I installed docker, got the most popular box with proxySQL.
docker run -d -p 6032:6032 --name proxysql prima/proxysql:latest
then I tried to connect to it from my local mysql like so:
mysql -u admin ...