惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
云风的 BLOG
云风的 BLOG
G
Google Developers Blog
S
SegmentFault 最新的问题
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
DataBreaches.Net
F
Fortinet All Blogs
TaoSecurity Blog
TaoSecurity Blog
D
Docker
C
Cybersecurity and Infrastructure Security Agency CISA
K
Kaspersky official blog
宝玉的分享
宝玉的分享
腾讯CDC
Google Online Security Blog
Google Online Security Blog
Recorded Future
Recorded Future
T
The Exploit Database - CXSecurity.com
T
The Blog of Author Tim Ferriss
V
V2EX
S
Securelist
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
C
CERT Recently Published Vulnerability Notes
A
Arctic Wolf
Scott Helme
Scott Helme
L
LINUX DO - 热门话题
Y
Y Combinator Blog
P
Proofpoint News Feed
T
Tor Project blog
AWS News Blog
AWS News Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
The Last Watchdog
The Last Watchdog
博客园 - 聂微东
T
Threat Research - Cisco Blogs
B
Blog
Attack and Defense Labs
Attack and Defense Labs
L
Lohrmann on Cybersecurity
C
CXSECURITY Database RSS Feed - CXSecurity.com
阮一峰的网络日志
阮一峰的网络日志
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
IT之家
IT之家
N
News and Events Feed by Topic
博客园 - 司徒正美
H
Help Net Security
C
Cisco Blogs
C
Check Point Blog
S
Secure Thoughts

博客园 - 路人

IE/Firefox每次刷新时自动检查网页更新,无需手动清空缓存的设置方法 如何在VS2010中使用Async功能? 转_关于图片的预加载 检索 COM 类工厂中 CLSID 为{}的组件时失败,原因是出现以下错误: 8007007e 在catch块中throw new Exception的意义 在线取色器-转 数据库查询优化-转 由于代码已经过优化或者本机框架位于调用堆栈之上,无法计算表达式 ... - 路人 - 博客园 SQLSERVER中日期显示样式(网络收集) DVD-RAM 格式化失败及视频文件分割软件 制作VCD/DVD方法 如何在oracle中导入dmp数据库文件 提高ASP.NET效率的几个方面 注册DLL的两种方法 InnerHtml and InnerText chr(10) chr(13) chr(32) vs2003错误求救 不能上网修复网络协议 存储过程1
如何解决MySQLAdministrator 启动报错
路人 · 2014-02-27 · via 博客园 - 路人

运行环境:
MySQL 5.1.41 win32 ZIP 非安装版
MySQL GUI Tools 5.0(版本1.2.17.0)

运行MySQLAdministrator时提示:
服务器服务或配置文件不能找到。启动参数和服务节因此不可用。
Either the server service or the configuration file could not be found. Startup variables and service section are therefore disabled

解决办法如下:

C:/mysql-5.1.41-win32/bin>mysqld --install MySQL --defaults-file=c:/my.ini
Service successfully installed.

C:/mysql-5.1.41-win32/bin>net start MySQL
MySQL 服务正在启动 .
MySQL 服务已经启动成功。


C:/mysql-5.1.41-win32/bin>

1、通过执行mysqld --install命令可以安装MySQL服务,同时指定配置文件my.ini的位置
2、通过执行net start 命令,启动MySQL服务
这时你再运行MySQLAdministrator时,就不会再报错了。

参考资料

mysqld --verbose --help 查看帮助
删除MySQL服务

C:/mysql-5.1.41-win32/bin>mysqld --remove MySQL
停止MySQL服务
net stop MySQL

参考:http://blog.csdn.net/joeduke/article/details/4938556