Mariadb 简明教程

MariaDB - Administration

在尝试运行 MariaDB 之前,先确定其当前状态,正在运行还是关闭。有三种启动和停止 MariaDB 的方法——

  1. * 运行 mysqld(MariaDB 二进制文件)。

  2. * 运行 mysqld_safe 启动脚本。

  3. * 运行 mysql.server 启动脚本。

如果你在非标准位置安装了 MariaDB,你可能需要编辑脚本文件中的位置信息。通过使用脚本来简单地添加一个“stop”参数来停止 MariaDB。

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

Creating a User Account

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

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

此代码将一行添加到用户表中,没有任何权限。你也可以选择使用密码的哈希值。使用以下代码授予用户权限——

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

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

The Configuration File

在 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

如果你已将数据目录添加到配置文件中,省略“$PWD”变量。确保在运行 MariaDB 版本 10.0.1 时使用“$LOGNAME”。

Administration Commands

使用 MariaDB 时会定期使用的重要命令列表:

  1. USE [database name] - 设置当前默认数据库。

  2. SHOW DATABASES - 列出当前服务器上的数据库。

  3. SHOW TABLES - 列出所有非临时表。

  4. SHOW COLUMNS FROM [table name] - 提供与指定表相关的列信息。

  5. SHOW INDEX FROM TABLENAME [table name] - 提供与指定表相关表索引信息。

  6. SHOW TABLE STATUS LIKE [table name]\G – - 提供有关非临时表的表,以及 LIKE 子句之后出现用于获取表名的模式。