欢迎投稿

今日深度:

部署mariadb数据库服务器,部署mariadb数据库

部署mariadb数据库服务器,部署mariadb数据库


yum -y install mariadb-server 

 

[root@server0 ~]# mysql

Welcome to the MariaDB monitor.  Commands end with ; or \g.

Your MariaDB connection id is 4

Server version: 5.5.35-MariaDB MariaDB Server

 

Copyright (c) 2000, 2013, Oracle, Monty Program Ab and others.

 

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

 

MariaDB [(none)]> create  database   nsd1804;

Query OK, 1 row affected (0.00 sec)

 

MariaDB [(none)]> show database;

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'database' at line 1

MariaDB [(none)]> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| mysql              |

| nsd1804            |

| performance_schema |

| test               |

+--------------------+

5 rows in set (0.00 sec)

 

MariaDB [(none)]> drop database nsd1804;

Query OK, 0 rows affected (0.00 sec)

 

MariaDB [(none)]> show database ;

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'database' at line 1

MariaDB [(none)]> show database;

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'database' at line 1

MariaDB [(none)]> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| mysql              |

| performance_schema |

| test               |

+--------------------+

4 rows in set (0.00 sec)

 

MariaDB [(none)]> exit

Bye

 

www.htsjk.Com true http://www.htsjk.com/mariadb/29674.html NewsArticle 部署mariadb数据库服务器,部署mariadb数据库 yum -y install mariadb-server    [root@server0 ~]# mysql Welcome to the MariaDB monitor.  Commands end with ; or \g. Your MariaDB connection id is 4 Server version: 5.5.35-MariaDB...
相关文章
    暂无相关文章
评论暂时关闭