090929 18:14:02 [Note] Plugin 'FEDERATED' is disabled.
090929 18:14:02 [Note] Plugin 'InnoDB' is disabled.
D:\mysql5.1\bin\mysqld: Too many arguments (first extra is 'd:/mysql5.1/my.ini').
Use --verbose --help to get a list of available options
090929 18:14:02 [ERROR] Aborting090929 18:14:02 [Warning] Forcing shutdown of 2 plugins
090929 18:14:02 [Note] D:\mysql5.1\bin\mysqld: Shutdown complete在Google上搜mysqld: Too many arguments (first extra  my.ini
居然第一个是mysql主页的bug页面。大概看了下,并没给出解决办法,希望高手帮忙

解决方案 »

  1.   

    你是如何启动的?另外贴一你的 my.ini 文件的内容
      

  2.   

    试过n个,一个是复制安装版的my.ini,然后改了mysql路径和data路径。一个复制my-small,一个复制medium,皆只修改了路径,均报此错
      

  3.   

    那你就直接下个ZIP版的MYSQL,UNZIP一下,就可以直接用了。
      

  4.   

    不明白你什么意思~
    我要制作一个mysql与java的集成安装包,所以只能通过批处理来对mysql进行安装。出现了这个问题现在很伤脑筋
      

  5.   

    现在有两个思路。1。 找出你现在的MYSQL系统为什么无法启动。
               请贴出你的my.ini 内容,然后根据你的my.ini进行下步步测试。这个已经要求过一次,但你好象不方便贴出来就算了。
    2。 直接用ZIP版,然后做个启动。
               这个你可以直接使用,至于用户端,你可以通过JAVA在用户的WINDOWS注册表中添加一个MYSQL的服务。
      

  6.   

    下载的mysql是损坏的在官方重新下载个  
      

  7.   

    全是官方下的非安装版,不可能有错的
    这是my.ini文件# Example MySQL config file for medium systems.
    #
    # This is for a system with little memory (32M - 64M) where MySQL plays
    # an important part, or systems up to 128M where MySQL is used together with
    # other programs (such as a web server)
    #
    # You can copy this file to
    # /etc/my.cnf to set global options,
    # mysql-data-dir/my.cnf to set server-specific options (in this
    # installation this directory is C:\mysql\data) or
    # ~/.my.cnf to set user-specific options.
    #
    # In this file, you can use all long options that a program supports.
    # If you want to know which options a program supports, run the program
    # with the "--help" option.# The following options will be passed to all MySQL clients
    [client]
    #password = your_password
    port = 3306
    socket = /tmp/mysql.sock# Here follows entries for some specific programs# The MySQL server
    [mysqld]
    skip-innodb 
    port = 3306
    socket = /tmp/mysql.sock
    skip-locking
    key_buffer_size = 16M
    max_allowed_packet = 1M
    table_open_cache = 64
    sort_buffer_size = 512K
    net_buffer_length = 8K
    read_buffer_size = 256K
    read_rnd_buffer_size = 512K
    myisam_sort_buffer_size = 8M
    #Path to installation directory. All paths are usually resolved relative to this.
    basedir=D:/mysql5.1/
    #Path to the database root
    datadir=D:/mysql5.1/Data/# Don't listen on a TCP/IP port at all. This can be a security enhancement,
    # if all processes that need to connect to mysqld run on the same host.
    # All interaction with mysqld must be made via Unix sockets or named pipes.
    # Note that using this option without enabling named pipes on Windows
    # (via the "enable-named-pipe" option) will render mysqld useless!

    #skip-networking# Replication Master Server (default)
    # binary logging is required for replication
    log-bin=mysql-bin# binary logging format - mixed recommended
    binlog_format=mixed# required unique id between 1 and 2^32 - 1
    # defaults to 1 if master-host is not set
    # but will not function as a master if omitted
    server-id = 1# Replication Slave (comment out master section to use this)
    #
    # To configure this host as a replication slave, you can choose between
    # two methods :
    #
    # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
    #    the syntax is:
    #
    #    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
    #    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
    #
    #    where you replace <host>, <user>, <password> by quoted strings and
    #    <port> by the master's port number (3306 by default).
    #
    #    Example:
    #
    #    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
    #    MASTER_USER='joe', MASTER_PASSWORD='secret';
    #
    # OR
    #
    # 2) Set the variables below. However, in case you choose this method, then
    #    start replication for the first time (even unsuccessfully, for example
    #    if you mistyped the password in master-password and the slave fails to
    #    connect), the slave will create a master.info file, and any later
    #    change in this file to the variables' values below will be ignored and
    #    overridden by the content of the master.info file, unless you shutdown
    #    the slave server, delete master.info and restart the slaver server.
    #    For that reason, you may want to leave the lines below untouched
    #    (commented) and instead use CHANGE MASTER TO (see above)
    #
    # required unique id between 2 and 2^32 - 1
    # (and different from the master)
    # defaults to 2 if master-host is set
    # but will not function as a slave if omitted
    #server-id       = 2
    #
    # The replication master for this slave - required
    #master-host     =   <hostname>
    #
    # The username the slave will use for authentication when connecting
    # to the master - required
    #master-user     =   <username>
    #
    # The password the slave will authenticate with when connecting to
    # the master - required
    #master-password =   <password>
    #
    # The port the master is listening on.
    # optional - defaults to 3306
    #master-port     =  <port>
    #
    # binary logging - not required for slaves, but recommended
    #log-bin=mysql-bin# Point the following paths to different dedicated disks
    #tmpdir = /tmp/
    #log-update  = /path-to-dedicated-directory/hostname# Uncomment the following if you are using InnoDB tables
    #innodb_data_home_dir = C:\mysql\data/
    #innodb_data_file_path = ibdata1:10M:autoextend
    #innodb_log_group_home_dir = C:\mysql\data/
    # You can set .._buffer_pool_size up to 50 - 80 %
    # of RAM but beware of setting memory usage too high
    #innodb_buffer_pool_size = 16M
    #innodb_additional_mem_pool_size = 2M
    # Set .._log_file_size to 25 % of buffer pool size
    #innodb_log_file_size = 5M
    #innodb_log_buffer_size = 8M
    #innodb_flush_log_at_trx_commit = 1
    #innodb_lock_wait_timeout = 50[mysqldump]
    quick
    max_allowed_packet = 16M[mysql]
    no-auto-rehash
    # Remove the next comment character if you are not familiar with SQL
    #safe-updates[myisamchk]
    key_buffer_size = 20M
    sort_buffer_size = 20M
    read_buffer = 2M
    write_buffer = 2M[mysqlhotcopy]
    interactive-timeout
      

  8.   

    skip-innodb 
    port = 3306 
    socket = /tmp/mysql.sock 
    skip-locking 
    key_buffer_size = 16M 
    max_allowed_packet = 1M 
    table_open_cache = 64 
    sort_buffer_size = 512K 
    net_buffer_length = 8K 
    read_buffer_size = 256K 
    read_rnd_buffer_size = 512K 
    myisam_sort_buffer_size = 8M 
    #Path to installation directory. All paths are usually resolved relative to this. 
    basedir=D:/mysql5.1/ 
    #Path to the database root 
    datadir=D:/mysql5.1/Data/ 删除一部分参数试试
      

  9.   

      最简单的办法是重新安装一遍,不过首先要把MYSQl卸载干净,特别是C:\Documents and Settings\All Users\Application Data目录下的mysql文件夹删掉(有时是隐藏的),另外最好装在C盘。
      

  10.   

    D:\mysql5.1\bin\mysqld: Too many arguments (first extra is 'd:/mysql5.1/my.ini'). 觉得不是my.ini的问题,而是启动脚本的问题。看看你的bat文件?
      

  11.   

    批处理我指定了my.ini的位置
    mysqld --install mysql5.1 --defaults-file="D:/mysql5.1/my.ini"
      

  12.   

    试一下这个,注意\的方向。mysqld  --defaults-file="D:\mysql5.1\my.ini"
      

  13.   


    改为:mysqld --install mysql5.1 --defaults-file="D:\mysql5.1\my.ini"
      

  14.   

    结果貌似是一样的,只是报错里面的斜线也反过来了
    091001 11:17:04 [Note] Plugin 'FEDERATED' is disabled.
    091001 11:17:04 [Note] Plugin 'InnoDB' is disabled.
    D:\mysql5.1\bin\mysqld: Too many arguments (first extra is 'D:\mysql5.1\my.ini').
    Use --verbose --help to get a list of available options
    091001 11:17:04 [ERROR] Aborting091001 11:17:04 [Warning] Forcing shutdown of 2 plugins
    091001 11:17:04 [Note] D:\mysql5.1\bin\mysqld: Shutdown complete其实我开始也考虑过是因为这个,但我发现那样写,它也能找到data目录(datadir=D:/mysql5.1/Data/)
    也就是说它找到了D:\mysql5.1\my.ini的位置
      

  15.   

    你确认是5.1么?貌似5.0的某些版本不支持--install后面带--defaults-file。
      

  16.   

    下了官方的5.1zip,一切工作正常。猜想——换个位置试试,会不会你没有覆盖以前的下载/安装?另外手工执行一下,防止你的批处理文件里面有什么异常。