从远程PC连接Mysql

时间:2011-05-23 10:25:17

标签: mysql connection

我需要在my.ini中启用哪些选项才能从远程PC连接我的数据库。

这是my.ini文件内容

[client]
port=3306
[mysql]
default-character-set=latin1
[mysqld]
# The TCP/IP Port the MySQL Server will listen on
port=3306
#Path to installation directory. All paths are usually resolved relative to this.
basedir = "C:/MySQL/"
#Path to the database root
datadir = "Z:/MySQL/Data/"
character-set-server=latin1
default-storage-engine = MyISAM
sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
max_connections=100
query_cache_size=0
table_cache=256
tmp_table_size=33M
thread_cache_size=8
myisam_max_sort_file_size=100G
myisam_sort_buffer_size=66M
key_buffer_size=53M
read_buffer_size=64K
read_rnd_buffer_size=256K
sort_buffer_size=256K
innodb_buffer_pool_size=102M
innodb_thread_concurrency=8
innodb_additional_mem_pool_size=3M
innodb_flush_log_at_trx_commit=1
innodb_log_buffer_size=2M
skip-ssl

my.ini还需要什么?我必须重新启动MYSQL服务器吗? 我不需要SSL连接,因为这是一个本地网络。

1 个答案:

答案 0 :(得分:2)

你的my.ini看起来很好。连接到mysql服务器有任何实际问题吗?你能用mysql命令行客户端连接到服务器吗?如果没有,你得到什么消息?您无法连接的两个原因我可以想到:

  • 端口3306被防火墙阻止(在您或服务器端)
  • 您尝试使用只能从本地计算机连接的用户/密码进行连接。尝试添加可以从任何位置连接的用户(请参阅GRANT syntax,查找'%'通配符)