📜  MariaDB-管理

📅  最后修改于: 2020-11-27 05:26:30             🧑  作者: Mango


在尝试运行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-列出所有非临时表。

  • 从[表名]中显示列-提供与指定表有关的列信息。

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

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