centos中安装数据库
这里使用的是mariadb数据库,好像是mysql的一个分支吧,反正可以替代mysql吧!
首先安装 mariadb-server
yum install mariadb-server
如果这时在命令行输入mysql会出现下面这种情况:
[root@djm]# mysql
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
这是数据库服务还没启动,我们只需要启动即可`
systemctl start mariadb
当然我们还可以设置开机自启动
systemctl enable mariadb
然后我们在登录mysql直接输mysql就可以了,进去后在创建用户
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.68-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
本人是个新手,有说的不对不好的地方,还望多多指教