更改mysql配置文件

时间:2015-01-13 12:26:04

标签: mysql my.cnf dedicated-server

我有专门的服务器有centos 5,我已经安装了mysql。现在的问题是我无法在一个数据库中创建超过250个表。我知道可以通过更改my.cnf文件来增加它,但我不知道需要更改哪些代码。我如何连接并获取my.cnf文件。我不知道,但我已经使用端口22和命令

在ssh中获得了它
vi my.cnf

请帮帮我。以下是我使用上述方法获得的内容。

datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1

# To allow mysqld to connect to a MySQL Cluster management daemon, uncomment
# these lines and adjust the connectstring as needed.
#ndbcluster
#ndb-connectstring="nodeid=4;host=localhost:1186"

[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

[ndbd]
# If you are running a MySQL Cluster storage daemon (ndbd) on this machine,
# adjust its connection to the management daemon here.
# Note: ndbd init script requires this to include nodeid!
connect-string="nodeid=2;host=localhost:1186"

2 个答案:

答案 0 :(得分:0)

MySQL没有一个数据库中表的数量限制。你得到什么错误?

http://dev.mysql.com/doc/refman/5.5/en/database-count-limit.html

答案 1 :(得分:0)

我尝试了很多方法,最后得到了答案。它不需要编辑my.cnf文件。它可以使用config.inc.php文件来完成,该文件位于专用服务器的phymyadmin文件夹中,我们可以在下面的行中插入:

$cfg['MaxTableList'] = 250;

在这里,您可以在一个数据库中设置所需的最大表数。