无法使用Navicat连接到MySQL

时间:2019-07-12 11:01:20

标签: mysql macos homebrew navicat

请,我最近刚从Windows迁移到Mac。我在Mac上安装了XAMPP,并在Mac上使用Homebrew安装了PHP和MySQL。如果我使用命令import pandas_gbq from pyspark.context import SparkContext from pyspark.sql.session import SparkSession project_id = "<your-project-id>" query = """ SELECT * from testSchema.testTable""" athletes = pandas_gbq.read_gbq(query=query, project_id=project_id,dialect = 'standard') # Get a reference to the Spark Session sc = SparkContext() spark = SparkSession(sc) # convert from Pandas to Spark sparkDF = spark.createDataFrame(athletes) # perform an operation on the DataFrame print(sparkDF.count()) sparkDF.show()

进行启动,则可以使用Navicat从homebrew轻松连接到MySQL。

但是,问题是,如果我停止brew服务并启动XAMPP,则无法连接到MySQL。我可以轻松连接到phpMyAdmin网站,但是使用Navicat时,它会不断抛出无法连接到brew services start mysql的错误。

我尝试查找MySQL正在运行的localhost,它是port。但是使用3306host=localhostusername=rootpassword=<empty>,但仍然会收到错误消息。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我知道这个帖子很旧,但是我仍然认为提出解决方案很有用。我正在使用MAMP,但我遇到了配置问题,以允许访问MySQL。

当我选中“允许网络访问MySQL”时,对我来说还可以。

希望它对某人有帮助。

enter image description here