search
HomeDatabaseMysql TutorialMariaDB绿色版windows下服务注册及密码修改

搞了一个多小时者在网上查阅总结的实践成功MariaDB绿色版的服务注册及密码的修改,下面分享出来,请大家勿喷。 MySQL Maria MariaDB 1、初始化与创建WINDOWS服务 mysql_install_db.exe --datadir=D:\mariadb-10.0.16-win32 --service=MySql --password=dsidea

搞了一个多小时者在网上查阅总结的实践成功MariaDB绿色版的服务注册及密码的修改,下面分享出来,请大家勿喷。 MySQL Maria MariaDB
1、初始化与创建WINDOWS服务
   mysql_install_db.exe --datadir=D:\mariadb-10.0.16-win32 --service=MySql --password=dsideal
2、启动服务
   sc start MySql
3、删除服务
   sc stop MySql
   sc delete MySql
   rmdir /s /q D:\mariadb-10.0.16-win32
4、修改默认登录密码
   1)在windows下的对应目录找到my.ini文件,键入内容skip-grant-tables保存。
   2)重启服务
      net stop MySql
      net start MySql
   3)登录数据库:mysql -uroot -p ,出现“Enter password:”时直接回车。
   4)在MariaDB数据库,进入时需要切换用户:use mysql;
   5)修改密码:update user set password=PASSWORD("newpass")where user="root";注:这里修改的是localhost下root用户的密码,在数据库管理工具中,数据库/IP这一项填写localhost.
   6)更新权限:flush privileges;
   7)退出:quit;
   8)修改my.ini文件,去掉内容skip-grant-tables后保存。
   9)重启服务
      net stop MySql
      net start MySql
5、登录数据库:
   mysql -uroot -p     Enter password:sy31214
   use mysql         切换用户(myqql表示自带的数据库)
   select * from user;    调试是否能正确查询
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
使用PHP连接MariaDB数据库使用PHP连接MariaDB数据库May 17, 2023 am 08:24 AM

MariaDB是一种开源的关系型数据库管理系统,它是MySQL的一个分支。PHP作为一种开源的服务器端脚本语言,被广泛应用于Web开发中。在很多Web开发项目中,需要使用PHP连接到MariaDB数据库,以便在Web应用程序中存储和检索数据。这篇文章将介绍如何使用PHP编写代码来连接MariaDB数据库。一、安装MariaDB服务器在使用PHP连接Maria

如何使用PDO连接到MariaDB数据库如何使用PDO连接到MariaDB数据库Jul 28, 2023 pm 02:49 PM

如何使用PDO连接到MariaDB数据库一、简介PDO(PHPDataObjects)是PHP中用来访问数据库的一个轻量级的抽象层。它为开发者提供了一组统一的接口来连接和操作不同类型的数据库,包括MariaDB、MySQL、SQLite等。本文将介绍如何使用PDO来连接到MariaDB数据库,并给出示例代码。二、安装和配置在使用PDO连接到MariaDB

一文详解MariaDB与MySQL的区别一文详解MariaDB与MySQL的区别Mar 09, 2023 am 11:39 AM

本篇文章给大家带来了关于MariaDB和MySQL的相关知识,其中主要跟大家聊一聊MariaDB与MySQL的区别都有哪些,感兴趣的朋友下面一起来看一下吧,希望对大家有帮助。

使用Docker Compose、Nginx和MariaDB优化PHP应用程序的网络性能使用Docker Compose、Nginx和MariaDB优化PHP应用程序的网络性能Oct 12, 2023 pm 12:49 PM

使用DockerCompose、Nginx和MariaDB优化PHP应用程序的网络性能简介:在当今互联网时代,网络性能对于Web应用程序的稳定性和响应速度至关重要。为了提高PHP应用程序的网络性能,我们可以使用容器化技术DockerCompose、高效的Web服务器Nginx和稳定的数据库MariaDB。本文将详细介绍如何使用这些工具来优化PHP应用的网

如何在 Debian 12 上安装 MariaDB数据库如何在 Debian 12 上安装 MariaDB数据库Feb 20, 2024 pm 02:24 PM

MariaDB是一个开源多线程的关系数据库管理系统,是MySQL的替代品。MariaDB是Debian中MySQL的默认替换方案。本教程介绍如何在Debian12上安装MariaDB。准备条件1、一台安装了Debian12的VPS虚拟机(推荐您购买一台阿里云VPS或者腾讯云VPS虚拟主机,如果你更喜欢国外服务器,推荐你尝试Vultr上的VPS,注册即送$50美元体验,性价比非常高),当然你自己电脑或者虚拟机中也可以。2、如果使用VPS,基于安全考虑,建议使用非root账号,可以在Debian12

使用Docker Compose、Nginx和MariaDB优化PHP应用程序的性能问题使用Docker Compose、Nginx和MariaDB优化PHP应用程序的性能问题Oct 12, 2023 pm 12:55 PM

使用DockerCompose、Nginx和MariaDB优化PHP应用程序的性能问题在开发和部署PHP应用程序时,经常会遇到性能问题。为了解决这些问题,我们可以利用DockerCompose、Nginx和MariaDB来优化应用程序的性能。DockerCompose是一个用于定义和管理多个Docker容器的工具。它可以帮助我们轻松地创建和运行多个容器

使用Docker Compose、Nginx和MariaDB实现PHP应用程序的安全加固使用Docker Compose、Nginx和MariaDB实现PHP应用程序的安全加固Oct 12, 2023 am 09:02 AM

使用DockerCompose、Nginx和MariaDB实现PHP应用程序的安全加固随着网络攻击和数据泄漏的频繁发生,保护应用程序和数据库的安全变得愈发重要。在PHP应用程序中,使用DockerCompose、Nginx和MariaDB可以实现安全加固,并提供一定的安全保护措施。本文将介绍如何使用这些工具进行安全加固,并提供一些代码示例。使用Docke

Docker Compose、Nginx和MariaDB的最佳实践:部署PHP应用程序的监控与优化Docker Compose、Nginx和MariaDB的最佳实践:部署PHP应用程序的监控与优化Oct 12, 2023 pm 02:19 PM

DockerCompose、Nginx和MariaDB的最佳实践:部署PHP应用程序的监控与优化引言:在现代应用程序开发中,容器化已经成为一种流行的方式,能够帮助我们更好地管理和部署应用程序。而DockerCompose则是一种用于定义和运行多个容器的工具,它能够简化应用程序的部署和管理过程。本文将介绍如何使用DockerCompose结合Nginx和

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment