国产成人v爽在线免播放观看,日韩欧美色,久久99国产精品久久99软件,亚洲综合色网站,国产欧美日韩中文久久,色99在线,亚洲伦理一区二区

學(xué)習(xí)啦 > 學(xué)習(xí)電腦 > 網(wǎng)絡(luò)知識 > 網(wǎng)絡(luò)技術(shù) >

Linux通過Yum安裝MariaDB數(shù)據(jù)庫命令是什么

時間: 加城1195 分享

  MariaDB數(shù)據(jù)庫管理系統(tǒng)是MySQL的一個分支,主要由開源社區(qū)在維護(hù),采用GPL授權(quán)許可 MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能輕松成為MySQL的代替品。有不少用戶不知道該如何安裝MariaDB數(shù)據(jù)庫。今天小編就和大家分享下yum 安裝 MariaDB 數(shù)據(jù)庫的方法。

  Linux通過Yum安裝MariaDB數(shù)據(jù)庫的技巧

  安裝方法:

  準(zhǔn)備yum一個lamp環(huán)境,發(fā)現(xiàn)yum版本的mysql居然依然是5.1.x的版本,因此準(zhǔn)備更換為MariaDB。

  配置源:

  [root@localhost ~]# cat /etc/yum.repos.d/MariaDB.repo

  # MariaDB 10.0 CentOS repository list - created 2013-08-23 13:08 UTC

  # http://mariadb.org/mariadb/repositories/

  [mariadb]

  name = MariaDB

  baseurl = http://yum.mariadb.org/10.0/centos6-amd64

  gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB

  gpgcheck=1

  檢查源:

  [root@localhost ~]# yum search mariadb

  Loaded plugins: fastestmirror

  Loading mirror speeds from cached hostfile

  * base: ftp.sjtu.edu.cn

  * extras: mirrors.aliyun.com

  * updates: mirrors.aliyun.com

  ======================================================= N/S Matched: mariadb ========================================================

  MariaDB-Galera-server.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-Galera-test.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-cassandra-engine.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-client.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-common.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-compat.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-connect-engine.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-devel.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-oqgraph-engine.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-server.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-shared.x86_64 : MariaDB: a very fast and robust SQL database server

  MariaDB-test.x86_64 : MariaDB: a very fast and robust SQL database server

  Name and summary matches only, use “search all” for everything.

  安裝database:

  [root@localhost ~]# yum install MariaDB-server MariaDB-client

  [root@localhost ~]# yum install MariaDB-*

  運(yùn)行database:

  [root@localhost ~]# /etc/init.d/mysql start

  Starting MySQL. SUCCESS!

  [root@localhost ~]# mysql -V

  mysql Ver 15.1 Distrib 10.0.17-MariaDB, for Linux (x86_64) using readline 5.1

  補(bǔ)充:MySQL 數(shù)據(jù)庫常用命令

  create database name; 創(chuàng)建數(shù)據(jù)庫

  use databasename; 進(jìn)入數(shù)據(jù)庫

  drop database name 直接刪除數(shù)據(jù)庫,不提醒

  show tables; 顯示表

  describe tablename; 查看表的結(jié)構(gòu)

  select 中加上distinct去除重復(fù)字段

  mysqladmin drop databasename 刪除數(shù)據(jù)庫前,有提示。

  顯示當(dāng)前mysql版本和當(dāng)前日期

  select version(),current_date;

  數(shù)據(jù)庫維護(hù)方法

  在MySQL使用的過程中,在系統(tǒng)運(yùn)行一段時間后,可能會產(chǎn)生碎片,造成空間的浪費(fèi),所以有必要定期的對MySQL進(jìn)行碎片整理。

  當(dāng)刪除id=2的記錄時候,發(fā)生的現(xiàn)象

  這個時候發(fā)現(xiàn)磁盤的空間并沒有減少。這種現(xiàn)象就叫做碎片化(有一部分的磁盤空間在數(shù)據(jù)刪除以后(空),還是無法被操作系統(tǒng)所使用。)

  常見的優(yōu)化:

  # alter table xxx engine myisam;

  # optimize table t1;

  注意: 在實(shí)際開發(fā)的過程中,上面兩個語句盡量少使用,因?yàn)樵谑褂玫倪^程中,MySQL的表的結(jié)構(gòu)會整體全部重新整理,需要消耗很多的資源,建議在凌晨兩三點(diǎn)鐘的時候執(zhí)行。(在linux下有定時器腳本可以執(zhí)行,crontab)


數(shù)據(jù)庫相關(guān)文章:

1.怎么開啟SQL數(shù)據(jù)庫服務(wù)

2.sql數(shù)據(jù)庫的集合函數(shù)查詢

3.excel怎么將表格連入數(shù)據(jù)庫

4.把Excel數(shù)據(jù)導(dǎo)入到數(shù)據(jù)庫的方法

5.數(shù)據(jù)庫中default的用法

4015063