maridb

Maridb

yum intall mariadb-server -y  ##安装mariadb服务

systemctl start mariadb    ##开启服务

vim /etc/my.cnf     ##修改配置文件

maridb

 systemctl  restart  mariadb  #重启服务

 mysql_secure_installtion   ##MysqL加密

Enter current password for root (enter for none):   ##数据库原始密码,直接回车

Change the root password? [Y/n] y  ##是否设定数据库root密码

New password:               ##输入密码

Re-enter new password:         ##重复密码

Remove anonymous users? [Y/n] y  ##是否删除匿名用户访问权限

disallow root login remotely? [Y/n] y  ##是否禁止超级用户远程登录

Remove test database and access to it? [Y/n] y   ##是否删除测试数据

Reload privilege tables Now? [Y/n] y     ##重新加载服务

maridb

数据库的基本sql语句操作

   (1)登录

    MysqL -uroot -p    ##-u代表用户  -p密码

maridb

    (2)查询

    show databases;     ##显示数据库

    use MysqL;        ##进入MysqL

maridb

     show tables;       ##显示数据库里表的名称

     select * from user;    ##查询user表中所有内容

maridb

     desc linux;          ##查询表的结构 (显示表头)

maridb

   (3)数据库的建立

     create database westos;     ##建立westos库

    create table linux(        ##建立Linux表,并且有username和password两个字段

maridb

     username varchar(15) not null,

     password varchar(15) not null

     ); 

maridb

     insert into linux values ('user1','123')   ##给Linux表里写入内容

maridb

   (4)数据库的更新

    update linux set password=password('456') where username='user1';  ##加密更新user1密码

    update linux set password=password('456') where (username='user2' or username='user3';  ##更新user2和user3密码

maridb

maridb

maridb

    delete from linux where where username='user1';  ##删除user1密码

maridb

alter table linux add age varchar(4);     ##在Linux表最后添加age列

alter table linux add year varchar(4)after age ##在age字段后添加year字段

alter table linux drop age ;   ##删除age字段

maridb

   (5)删除数据库

     drop table linux    ##删除Linux表

maridb

     drop database westos   ##删除westos库

   (6)数据库的备份

     MysqLdump -u root -p123 --all -database  ##备份表中所有数据

maridb

     MysqLdump -u root -p123 --all -database --no-data  ##备份所有表,不备份数据

maridb

     MysqLdump -u root -p123 westos    ##备份westos库

     MysqLdump -u root -p123 westos > /mnt/westos.sql  ##备份westos库保存到westos.sql

     MysqLdump -u root -p123 westos linux > /mnt/linux.sql  ##备份westos库中的Linux表

maridb

     MysqL -u root -p123 -e "create database westoss;"  ##建立westos库

     MysqL -u root -p123 westos <  /mnt/linux.sql  ##导入数据到westos库

maridb

   (7)用户授权

    create user ggg@localhost identified by 'ggg';  ##创建用户ggg,只能通过本机登录

    create user ggg@'%' identified by 'ggg';     ##创建用户ggg,只能通过网络登录

    grant insert,update,delete,select on westos.linux to ggg@localhost  ##用户授权

maridb

     revoke delete on westos.linux from ggg@localhost   ##删除用户授权

    drop user ggg@'%'   ##删除用户

maridb

    (8)修改密码

      MysqLadmin -uroot -predhat password 123

     MysqLd_safe --skip-grant-table &  ##开启MysqL登录接口忽略授权表

     MysqL               ##不要密码登录

     update MysqL.user set Password=password('123') where User='root'  ##更新root密码

     ps aux | grep MysqL ##过滤MysqL进程并结束

     kill -9   MysqLpid    

     systemctl start maraidb   ##重启MysqL

maridb

    3.数据库网页管理工具

     yum install httpd PHP phy-MysqL -y  ##安装服务

   systemctl start httpd

   systemctl enable httpd

   systemctl stop firewalld

   systemctl disable firewall

  

   tar jxf PHPMyAdmin-3.4.0-all-languages.tar.bz2 -C /var/www/html ##解压文件到指定目录

maridb

   mv  PHPMyAdmin-3.4.0-all-languages/ MysqLadim  ##重命名文件

   cd MysqLadim

   cp -p config.sample.inc.PHP  config.inc.PHP  ##复制模板

   vim  config.inc.PHP  ##编辑配置文件

修改配置文件内容

maridb

   systemctl restart httpd  

访问http://172.25.254.117/MysqLadmin

ctrl+shift+delete   ##清除缓存

maridb

maridb

maridb

maridb

maridb

相关文章

这篇文章主要介绍“hive和mysql的区别是什么”,在日常操作中...
这篇“MySQL数据库如何改名”文章的知识点大部分人都不太理解...
这篇文章主要介绍“mysql版本查询命令是什么”的相关知识,小...
本篇内容介绍了“mysql怎么修改字段的内容”的有关知识,在实...
这篇文章主要讲解了“mysql怎么删除unique约束”,文中的讲解...
今天小编给大家分享一下mysql怎么查询不为空的字段的相关知识...