Tagged Questions
0
votes
3answers
195 views
Force MySQL to use only unix socket
I want my MySQL server to only use unix socket, and ignore the TCP networking, so I added this line to my configuration /etc/my.cnf:
skip-networking
But netstat show me that MySQL still using TCP ...
4
votes
5answers
4k views
Unix socket connection to MySql with Java to avoid JDBC's TCP/IP overhead?
Is it possible to make a Unix socket connection to MySql with Java to avoid JDBC's TCP/IP overhead?
Does anyone know a library (or a few libraries, perhaps) that makes this possible?
2
votes
3answers
2k views
How can I map a local unix socket to an inet socket?
I'm curious if it is possible to map a UNIX socket on to an INET socket. The situation is simply that I'd like to connect to a MySQL server. Unfortunately it has INET sockets disabled and therefore I ...