Questions tagged [mysql-connection]
The mysql-connection tag has no summary.
34 questions
0
votes
0
answers
23
views
mariadb client connection settings
Computer with mariadb server was set up a long time ago and has 3 client-computers on LAN that work great.
I want to add another client.
Installed mariadb-client on latest linux mint 22.2. But,
...
0
votes
2
answers
1k
views
What is the correct "mysql-client" package to install in Debian 12?
In Debian Desktop 12 if I want to do a remote connection as client to a MySQL Server in other machine in the LAN I need use the mysql command, when it is executed happens the following:
manueljordan@...
1
vote
0
answers
175
views
mysqld thread count exceeds max_connections
As the question title suggests: I have set max_connections = 2 in my my.cnf file, but when I activate my mysql daemon, the thread count sits at 37. I am searching online but cannot find indication my ...
0
votes
0
answers
425
views
How to Fix "MySQL error message was : DBI connect failed : Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) ?"
I upgraded my VPS with the provider Contabo, and since then, I have been experiencing issues. Unfortunately, they have not been responsive or provided any support.
when i do command : service mysql ...
1
vote
0
answers
58
views
"Access Denied user root error code 1045 (28000)" after changing root passwords
I'm encountering an "Access Denied user root error code 1045 (28000)" error with user root. I'm facing this problem after changing passwords. It was working fine before, and I'm confused ...
0
votes
2
answers
310
views
Program starts from rc.local but doesn't do anything
I have a program which uses msqllib. It scans some hardware that I build and then updates a mysql database. This program has been running for a number of years but I have never been able to autostart ...
-1
votes
1
answer
586
views
error in installing mysql and connecting to it in wsl2 (Ubunto 22.04)
I am trying to install MySQL on Ubuntu 22.04 (WSL2) and these are the steps that I did:
1- Installing mysql server:
root@mans-pc:~# sudo apt-get update
Get:1 http://security.ubuntu.com/ubuntu jammy-...
0
votes
0
answers
50
views
wordpress can not find database, while mysql_client can
I am trying to prepare a WordPress site, on my public web server, running apache2. The database host, I am trying to use, for the WordPress installation, is another server.
While I can successfully ...
0
votes
1
answer
2k
views
How do you completely exit mysqld_safe or kill it?
I opened mysqld_safe for some reason in Linux but now I can't completely exit or kill it! Closing the terminal didn't help. Then I tried with kill -9 <process id(s)> and I killed 2 processes but ...
-2
votes
1
answer
2k
views
After installing Xampp correctly it's not open into browser in Kali Linux
Firstly I text the command on my terminal like sudo /opt/lampp/lampp start
sudo /opt/lampp/lampp start
[sudo] password for tayef:
Starting XAMPP for Linux 7.2.34-0...
XAMPP: Starting Apache...ok.
...
1
vote
0
answers
263
views
MariaDB connector (remote)
I'm new to databases and have some very basic how-to/where-to questions:
I have successfully setup a MariaDB + phpmyadmin on my raspberrypi zero (running the latest diet-pi), including a database ...
1
vote
2
answers
307
views
Removing commands from a specific user
I have a problem, I need to give an access to someone, but the only way to connect to the database is via SSH, so if I have understood everything correctly, I need to create him a linux account (on a ...
0
votes
0
answers
3k
views
ERROR 2002 (HY000): Can't connect to MySQL server on 'xx.xxx.xxx.xxx' (115)
I wanted to connect to memsql but when I try i wasn't able to connect , I get error as:
mysql -u root -h 127.0.0.1 -P 3306 --prompt="memsql> "
ERROR 2002 (HY000): Can't connect to MySQL server on '...
0
votes
0
answers
2k
views
MariaDB: ERROR 2006 (HY000): MySQL server has gone away
When i try to execute a query i got error:
MariaDB [suitecrm]> select * from waiter_log;
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
An error ...
1
vote
1
answer
1k
views
mysql database won't allow tcp connections on localhost at the default port
Trying to connect to a database with a c++ program. I am using the mysqlcppconnector with the connection strings tcp://localhost:3306 and tcp://127.0.0.1:3306. The program works on my local machine, ...