无法在Windows 7计算机上启动MySql作为服务

时间:2013-10-20 04:13:04

标签: mysql

我是MYsql的新手并已下载mysql-installer-community-5.6.14.0并尝试安装。     但是此过程在配置步骤中停止。我尝试谷歌搜索2天,但无法找到解决方案。我已将mysql作为Windows服务运行为本地系统服务,当我尝试启动它时,pc.err文件中出现以下错误

2013-10-20 09:28:40 3312 [Note] Plugin 'FEDERATED' is disabled.
2013-10-20 09:28:40 3312 [Warning] option 'innodb-autoextend-increment': unsigned value 67108864 adjusted to 1000
2013-10-20 09:28:40 1974 InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases, together with the option innodb_use_sys_malloc and with the InnoDB's internal memory allocator.
2013-10-20 09:28:40 3312 [Note] InnoDB: The InnoDB memory heap is disabled
2013-10-20 09:28:40 3312 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2013-10-20 09:28:40 3312 [Note] InnoDB: Compressed tables use zlib 1.2.3
2013-10-20 09:28:40 3312 [Note] InnoDB: Not using CPU crc32 instructions
2013-10-20 09:28:40 3312 [Note] InnoDB: Initializing buffer pool, size = 200.0M
2013-10-20 09:28:40 3312 [Note] InnoDB: Completed initialization of buffer pool
2013-10-20 09:28:40 3312 [Note] InnoDB: Highest supported file format is Barracuda.
2013-10-20 09:28:41 3312 [Note] InnoDB: 128 rollback segment(s) are active.
2013-10-20 09:28:41 3312 [Note] InnoDB: Waiting for purge to start
2013-10-20 09:28:41 3312 [Note] InnoDB: 5.6.14 started; log sequence number 1626017
2013-10-20 09:28:41 3312 [Note] Server hostname (bind-address): '*'; port: 3306
2013-10-20 09:28:41 3312 [Note] IPv6 is available.
2013-10-20 09:28:41 3312 [Note]   - '::' resolves to '::';
2013-10-20 09:28:41 3312 [Note] Server socket created on IP: '::'.
**2013-10-20 09:28:41 3312 [ERROR] Can't start server: listen() on TCP/IP port: No such file or directory
2013-10-20 09:28:41 3312 [ERROR] listen() on TCP/IP failed with error 0
2013-10-20 09:28:41 3312 [ERROR] Aborting**
Please help as I am a newbie am not able to get anything.
Thanks in advance
Raghu dev

1 个答案:

答案 0 :(得分:3)

打开命令提示符并键入“netstat -an ”,不带引号。

您可以查看已打开的端口列表。如果某个其他进程使用了​​端口3306,则将 my.ini 中的端口修改为端口 3307 或其他没有其他服务使用的端口,然后重新启动<强> MySQL 服务,它应该接受改变。