MariaDB - 管理



在尝试运行 MariaDB 之前,首先确定其当前状态,正在运行还是已关闭。启动和停止 MariaDB 有三个选项:

  • 运行 mysqld(MariaDB 二进制文件)。
  • 运行 mysqld_safe 启动脚本。
  • 运行 mysql.server 启动脚本。

如果您在非标准位置安装了 MariaDB,则可能需要编辑脚本文件中的位置信息。只需在脚本中添加“stop”参数即可停止 MariaDB。

如果您想在 Linux 下自动启动它,请将启动脚本添加到您的 **init** 系统中。每个发行版都有不同的过程。请参考您的系统文档。

创建用户帐户

使用以下代码创建新的用户帐户:

CREATE USER 'newusername'@'localhost' IDENTIFIED BY 'userpassword';

此代码向用户表添加一行,没有任何权限。您还可以选择使用密码的哈希值。使用以下代码授予用户权限:

GRANT SELECT, INSERT, UPDATE, DELETE ON database1 TO 'newusername'@'localhost';

其他权限包括 MariaDB 中几乎所有可能的命令或操作。创建用户后,执行“FLUSH PRIVILEGES”命令以刷新授权表。这允许使用用户帐户。

配置文件

在 Unix/Linux 上构建后,应编辑配置文件“/etc/mysql/my.cnf”如下所示:

# Example mysql config file.
# You can copy this to one of:
# /etc/my.cnf to set global options,
# /mysql-data-dir/my.cnf to get server specific options or
# ~/my.cnf for user specific options.

#

# One can use all long options that the program supports.
# Run the program with --help to get a list of available options

# This will be passed to all mysql clients
[client]
#password = my_password
#port = 3306
#socket = /tmp/mysql.sock

# Here is entries for some specific programs
# The following values assume you have at least 32M ram

# The MySQL server
[mysqld]
#port = 3306
#socket = /tmp/mysql.sock
temp-pool

# The following three entries caused mysqld 10.0.1-MariaDB (and possibly other
   versions) to abort...
# skip-locking
# set-variable = key_buffer = 16M
# set-variable = thread_cache = 4

loose-innodb_data_file_path = ibdata1:1000M
loose-mutex-deadlock-detector
gdb

######### Fix the two following paths

# Where you want to have your database
data = /path/to/data/dir

# Where you have your mysql/MariaDB source + sql/share/english
language = /path/to/src/dir/sql/share/english

[mysqldump]
quick
MariaDB
8
set-variable = max_allowed_packet=16M
[mysql]
no-auto-rehash

[myisamchk]
set-variable = key_buffer = 128M

编辑“data=”和“language=”行以匹配您的环境。

修改文件后,导航到源目录并执行以下操作:

./scripts/mysql_install_db --srcdir = $PWD --datadir = /path/to/data/dir --
   user = $LOGNAME

如果您已将 datadir 添加到配置文件中,则可以省略“$PWD”变量。运行 MariaDB 10.0.1 版本时,请确保使用“$LOGNAME”。

管理命令

查看以下列表,其中包含使用 MariaDB 时经常使用的重要命令:

  • **USE [数据库名称]** - 设置当前默认数据库。

  • **SHOW DATABASES** - 列出服务器上当前的所有数据库。

  • **SHOW TABLES** - 列出所有非临时表。

  • **SHOW COLUMNS FROM [表名称]** - 提供与指定表相关的列信息。

  • **SHOW INDEX FROM TABLENAME [表名称]** - 提供与指定表相关的表索引信息。

  • **SHOW TABLE STATUS LIKE [表名称]\G –** - 提供有关非临时表的信息的表,LIKE 子句后出现的模式用于获取表名称。

广告