mariadb安装教程_数据库安装图解教程

mariadb安装教程_数据库安装图解教程,第1张

mariadb安装教程_数据库安装图解教程 MariaDB 和 MySQL 都是使用 SQL 的开源数据库,并且共享相同的初始代码库。

MariaDB 是 MySQL 的替代品,你可以使用相同的命令(mysql)与 MySQL 和 MariaDB 数据库进行交互。

因此,本文同时适用于 MariaDB 和 MySQL。

安装 MariaDB你可以使用你的 Linux 发行版的包管理器安装 MariaDB。

在大多数发行版上,MariaDB 分为服务器包和客户端包。

服务器包提供了数据库“引擎”,即 MariaDB 在后台运行(通常在物理服务器上)的部分,它监听数据输入或数据输出请求。

客户端包提供了 mysql 命令,你可以用它来与服务器通信。

在 RHEL、Fedora、CentOS 或类似的发行版上:$ sudo dnf install mariadb mariadb-server在 Debian、Ubuntu、Elementary 或类似的发行版上:$ sudo apt install mariadb-client mariadb-server其他 *** 作系统可能会以不同的打包系统封装 MariaDB,所以你可能需要搜索你的软件仓库来了解你的发行版的维护者是如何提供它的。

启动 MariaDB因为 MariaDB 被设计为部分作为数据库服务器,它可以在一台计算机上运行,并从另一台计算机上进行管理。

只要你能访问运行它的计算机,你就可以使用 mysql 命令来管理数据库。

在写这篇文章时,我在本地计算机上运行了 MariaDB,但你同样可与远程系统上托管的 MariaDB 数据库进行交互。

在启动 MariaDB 之前,你必须创建一个初始数据库。

在初始化其文件结构时,你应该定义你希望 MariaDB 使用的用户。

默认情况下,MariaDB 使用当前用户,但你可能希望它使用一个专用的用户帐户。

你的包管理器可能为你配置了一个系统用户和组。

使用 grep 查找是否有一个 mysql 组:$ grep mysql /etc/groupmysql:x:27:你也可以在 /etc/passwd 中寻找这个专门的用户,但通常情况下,有组就会有用户。

如果没有专门的 mysql 用户和组,可以在 /etc/group 中寻找一个明显的替代品(比如 mariadb)。

如果没有,请阅读你的发行版文档来了解 MariaDB 是如何运行的。

假设你的安装使用 mysql,初始化数据库环境:$ sudo mysql_install_db --user=mysqlInstalling MariaDB/MySQL system tables in '/var/lib/mysql'...OK[...]这一步的结果显示了接下来你必须执行的配置 MariaDB 的任务:PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !To do so, start the server, then issue the following commands:'/usr/bin/mysqladmin' -u root password 'new-password''/usr/bin/mysqladmin' -u root -h $(hostname) password 'new-password'Alternatively you can run:'/usr/bin/mysql_secure_installation'which will also give you the option of removing the testdatabases and anonymous user created by default. This isstrongly recommended for production servers.使用你的发行版的初始化系统启动 MariaDB:$ sudo systemctl start mariadb在启动时启用 MariaDB 服务器:$ sudo systemctl enable --now mariadb现在你已经有了一个 MariaDB 服务器,为它设置一个密码:mysqladmin -u root password 'myreallysecurepassphrase'mysqladmin -u root -h $(hostname) password 'myreallysecurepassphrase'最后,如果你打算在生产服务器上使用它,请在上线前运行 mysql_secure_installation 命令。

MariaDB 和 MySQL 都是使用 SQL 的开源数据库,并且共享相同的初始代码库。

MariaDB 是 MySQL 的替代品,你可以使用相同的命令(mysql)与 MySQL 和 MariaDB 数据库进行交互。

因此,本文同时适用于 MariaDB 和 MySQL。

安装 MariaDB你可以使用你的 Linux 发行版的包管理器安装 MariaDB。

在大多数发行版上,MariaDB 分为服务器包和客户端包。

服务器包提供了数据库“引擎”,即 MariaDB 在后台运行(通常在物理服务器上)的部分,它监听数据输入或数据输出请求。

客户端包提供了 mysql 命令,你可以用它来与服务器通信。

在 RHEL、Fedora、CentOS 或类似的发行版上:$ sudo dnf install mariadb mariadb-server在 Debian、Ubuntu、Elementary 或类似的发行版上:$ sudo apt install mariadb-client mariadb-server其他 *** 作系统可能会以不同的打包系统封装 MariaDB,所以你可能需要搜索你的软件仓库来了解你的发行版的维护者是如何提供它的。

启动 MariaDB因为 MariaDB 被设计为部分作为数据库服务器,它可以在一台计算机上运行,并从另一台计算机上进行管理。

只要你能访问运行它的计算机,你就可以使用 mysql 命令来管理数据库。

在写这篇文章时,我在本地计算机上运行了 MariaDB,但你同样可与远程系统上托管的 MariaDB 数据库进行交互。

在启动 MariaDB 之前,你必须创建一个初始数据库。

在初始化其文件结构时,你应该定义你希望 MariaDB 使用的用户。

默认情况下,MariaDB 使用当前用户,但你可能希望它使用一个专用的用户帐户。

你的包管理器可能为你配置了一个系统用户和组。

使用 grep 查找是否有一个 mysql 组:$ grep mysql /etc/groupmysql:x:27:你也可以在 /etc/passwd 中寻找这个专门的用户,但通常情况下,有组就会有用户。

如果没有专门的 mysql 用户和组,可以在 /etc/group 中寻找一个明显的替代品(比如 mariadb)。

如果没有,请阅读你的发行版文档来了解 MariaDB 是如何运行的。

假设你的安装使用 mysql,初始化数据库环境:$ sudo mysql_install_db --user=mysqlInstalling MariaDB/MySQL system tables in '/var/lib/mysql'...OK[...]这一步的结果显示了接下来你必须执行的配置 MariaDB 的任务:PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !To do so, start the server, then issue the following commands:'/usr/bin/mysqladmin' -u root password 'new-password''/usr/bin/mysqladmin' -u root -h $(hostname) password 'new-password'Alternatively you can run:'/usr/bin/mysql_secure_installation'which will also give you the option of removing the testdatabases and anonymous user created by default. This isstrongly recommended for production servers.使用你的发行版的初始化系统启动 MariaDB:$ sudo systemctl start mariadb在启动时启用 MariaDB 服务器:$ sudo systemctl enable --now mariadb现在你已经有了一个 MariaDB 服务器,为它设置一个密码:mysqladmin -u root password 'myreallysecurepassphrase'mysqladmin -u root -h $(hostname) password 'myreallysecurepassphrase'最后,如果你打算在生产服务器上使用它,请在上线前运行 mysql_secure_installation 命令。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/648427.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-17
下一篇 2022-04-17

发表评论

登录后才能评论

评论列表(0条)

保存