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

推荐订阅源

W
WeLiveSecurity
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
IT之家
IT之家
Cloudbric
Cloudbric
The Register - Security
The Register - Security
小众软件
小众软件
PCI Perspectives
PCI Perspectives
G
Google Developers Blog
AI
AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
Google DeepMind News
Google DeepMind News
宝玉的分享
宝玉的分享
Recent Commits to openclaw:main
Recent Commits to openclaw:main
量子位
TaoSecurity Blog
TaoSecurity Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
F
Full Disclosure
N
Netflix TechBlog - Medium
博客园_首页
Last Week in AI
Last Week in AI
A
Arctic Wolf
B
Blog RSS Feed
J
Java Code Geeks
C
Cybersecurity and Infrastructure Security Agency CISA
I
InfoQ
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
NISL@THU
NISL@THU
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Jina AI
Jina AI
有赞技术团队
有赞技术团队
S
Schneier on Security
L
Lohrmann on Cybersecurity
P
Privacy & Cybersecurity Law Blog
T
Threat Research - Cisco Blogs
P
Palo Alto Networks Blog
S
Security @ Cisco Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
Security Latest
Security Latest
Vercel News
Vercel News
博客园 - 司徒正美
Webroot Blog
Webroot Blog
Hacker News: Ask HN
Hacker News: Ask HN
A
About on SuperTechFans

博客园 - 两耳不闻窗外事、一心只做程序员

CentOS 安装 jdk1.8 转:MyBatis 日志打印 转:APP开发浅谈-Fiddler抓包详解 C#中用DateTime的ParseExact方法解析日期时间(excel中使用系统默认的日期格式) java程序中的乱码方案 转: 解决Setting property 'source' to 'org.eclipse.jst.jee.server的问题 转:Eclipse中web项目部署至Tomcat步骤 google chrome 浏览器去掉 XHR finished loading.... [转]AJAX POST请求中参数以form data和request payload形式在servlet中的获取方式 SpringMVC Controller接收前台ajax的GET或POST请求返回各种参数 下载Tomcat时Tomcat网站上的core和deployer的区别 vmware 修改IP 提示子网掩码错误~ android ImageView 中的ScaleType vs文件属性(生成操作)各选项功能(发布Web项目时使用) 导入 RecyclerView 控件 的过程(Android 6.0) Android RelativeLayout用到的一些重要的属性 Andriod中textview垂直水平居中及LinearLayout内组件的垂直布局 requestWindowFeature(Window.FEATURE_NO_TITLE)无效解决方法 使用VS2013逆向生成UML类图
转发 关于Windows安装解压版MySQL出现服务正在启动-服务无法启动的问题
两耳不闻窗外事、一心只做程序员 · 2021-02-22 · via 博客园 - 两耳不闻窗外事、一心只做程序员

部分转自 :https://blog.csdn.net/u013901768/article/details/80707307

我是从服务器上复制了mysql的整个目录,到本地,然后怎么也不好用,看了上面的文档,按顺序执行

1.配置好my.ini文件(在mysql目录下)

 basedir 和 datadir 的 "\" 请写  双斜杠"\\"

1.初始化,   语句如下 (命令行请使用管理员账户登录)

mysqld --initialize(随机密码)
mysqld --initialize-insecure(无密码)
2.安装 : 如下命令
mysqld -install
3.启动 :如下命令
net start mysql
4. 停止:如下命令
net stop mysql(停止MySQL服务)
5.登录 :如下命令
mysql -uroot -p密码