Mysql数据库突然无法在我的Mac中启动。我已经尝试运行sudo /Applications/XAMPP/xamppfiles/bin/mysql.server start,但它显示错误../Applications/XAMPP/xamppfiles/bin/mysql.server: line 264: kill: (9346) - No such process ERROR!。有没有人知道怎么解这个题?我已经尝试了sudo killall mysqld,但仍然无法启动。
我已经在XAMPP中运行了MySQL,我还安装了用于python的MySQLdb。然而,我无法找到一种使用XAMPP的MySQL用于Python的方法。每次执行python manage.py runserver时,都会显示一个错误:
..2.4c1-py2.7-win32.egg.tmp\MySQLdb\connections.py", line 187, in __init__ _mysql_exceptions.OperationalError: (2003, "Can't connect to MySQL server on 'localhost'
因此,难点在于如何使用ODBC连接到远程数据库。我遵循了我在互联网上找到的指南。他们告诉我建立一个SSH隧道,因为我的主机不允许直接连接,而我使用PLink (Putty console)建立了一个隧道。我甚至可以使用控制台登录到数据库(我有一个屏幕截图,但由于声誉限制,我无法发布它)。
但是,当我尝试在MySQL驱动程序中设置ODBC连接器/ODBC数据源配置时,我得到
[08S01] [MySQL][ODBC 3.51 Driver]Lost connection to MySQL server at
'reading initial communication packet&
7:43:04 PM [mysql] Error: MySQL shutdown unexpectedly.
7:43:04 PM [mysql] This may be due to a blocked port, missing dependencies,
7:43:04 PM [mysql] improper privileges, a crash, or a shutdown by another method.
7:43:04 PM [mysql] Press the Logs button to view error logs and ch
我已经用Ubuntu设置了一个树莓派4。Apache、PHP、mysql和phpmyadmin已安装,并且工作正常。因此,当我试图通过MySQL工作台从另一个网络连接我的windows设备时,出现了一个错误。 error 选中:端口80上的端口转发已打开。当我尝试将此配置文件中的端口更改为80并重新启动"sudo service mysql restart“时,检查了mysqld.conf中的绑定ip (可能是我犯了一个错误)。此错误发生在”mysql.service的作业失败,因为控制进程退出时返回错误代码“。 所以也许mysql没有监听端口80。我已经检查了sudo lsof -
检测到问题!
Port 3306 in use by ""C:\Program Files\MySQL\MySQL Server 5.6\bin\mysqld.exe" --defaults-file="C:\ProgramData\MySQL\MySQL Server 5.6\my.ini" MySQL56"!
如果没有配置的空闲端口,MySQL将无法启动!您需要卸载/禁用/重新配置阻止应用程序,或者重新配置MySQL和控制面板以侦听其他端口
我试图通过专用服务器上的本地主机连接到我的mySQL服务器,但是我一直收到错误:
Lost connection to MySQL server at 'reading initial communication packet', system error: 110
代码:
<?php
$link = mysql_connect('localhost', '****', '****');
if (!$link) {
die('Could not connect: ' . mysql_error(
error connecting: Error: Connection lost: The server closed the connection.
at Protocol.end (C:\Users\Tony\Documents\TestServer\node_modules\mysql\lib\protocol\Protocol.js:109:13)
at Socket.<anonymous> (C:\Users\Tony\Documents\TestServer\node_modules\mysql\lib\Connection.js:109:28)
at emitNone