91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MariaDB(MySQL)安裝及MySQL慢查詢分析mys

發布時間:2020-07-12 01:02:07 來源:網絡 閱讀:1897 作者:xuqizhang 欄目:MySQL數據庫

簡介

MariaDB數據庫管理系統是MySQL的一個分支,主要由開源社區在維護,采用GPL授權許可。開發這個分支的原因之一是:甲骨文公司收購了MySQL后,有將MySQL閉源的潛在風險,因此社區采用分支的方式來避開這個風險。[4]
MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能輕松成為MySQL的代替品。在存儲引擎方面,10.0.9版起使用XtraDB(名稱代號為Aria)來代替MySQL的InnoDB。
MariaDB由MySQL的創始人麥克爾·維德紐斯主導開發,他早前曾以10億美元的價格,將自己創建的公司MySQL AB賣給了SUN,此后,隨著SUN被甲骨文收購,MySQL的所有權也落入Oracle的手中。MariaDB名稱來自麥克爾·維德紐斯的女兒瑪麗亞(英語:Maria)的名字。
注意:以上內容來自維基百科;
MariaDB官方網站:http://www.mariadb.org/

MariaDB的特性

插件式存儲引擎:存儲管理器有多種實現版本,彼此間的功能和特性可能略有區別;用戶可根據需要靈活選擇;存儲引擎頁稱為“表類型”。
(1) 更多的存儲引擎

MylSAM:不支持事務

MyISAM -->Aria

InnoDB -->XtraDB;支持事務

(2) 諸多擴展和新特性
(3) 提供了較多的測試組件
(4) truly open source

安裝和使用MariaDB

安裝環境:

操作系統版本內核版本
CentOS 7.03.10.0-229.el7.x86_64

安裝方式:

(1)rpm包:由OS的發行商提供或程序官方提供;

(2)源碼包

(3)通用二進制格式

通用二進制格式安裝

1、創建mysql系統用戶

[root@bogon src]# groupadd -r -g 301 mysql

[root@bogon src]# useradd -r -g 301 -u 301 mysql

2、下載及解壓

[root@bogon src]# wget https://downloads.mariadb.org/interstitial/mariadb-galera-5.5.54/bintar-linux-glibc_214-x86_64/mariadb-galera-5.5.54-linux-glibc_214-x86_64.tar.gz

[root@bogon src]# tar -xf mariadb-galera-5.5.54-linux-glibc_214-x86_64.tar.gz -C /usr/local/

[root@bogon src]# cd /usr/local/

[root@bogon local]#ln -sv mariadb-galera-5.5.54-linux-glibc_214-x86_64/ mysql

‘mysql’ -> ‘mariadb-galera-5.5.54-linux-glibc_214-x86_64/’

[root@bogon local]# ll

drwxr-xr-x.  2 root root    6 Jun 10  2014 bin

drwxr-xr-x.  2 root root    6 Jun 10  2014 etc

drwxr-xr-x.  2 root root    6 Jun 10  2014 games

drwxr-xr-x.  2 root root    6 Jun 10  2014 include

drwxr-xr-x.  2 root root    6 Jun 10  2014 lib

drwxr-xr-x.  2 root root    6 Jun 10  2014 lib64

drwxr-xr-x.  2 root root    6 Jun 10  2014 libexec

drwxrwxr-x. 13 1021 1004 4096 Jan  4 06:09 mariadb-galera-5.5.54-linux-glibc_214-x86_64

lrwxrwxrwx.  1 root root   45 Jun 28 22:42 mysql -> mariadb-galera-5.5.54-linux-glibc_214-x86_64/


3、修改解壓目錄后所有文件屬主及屬組


[root@bogon local]# cd mysql/

[root@bogon mysql]# chown -R root.mysql ./*

4、創建存放數據的目錄,以/data/mysql為例

[root@bogon mysql]# mkdir /data/mysql

[root@bogon mysql]# chown -R mysql.mysql /data/mysql/

5、準備配置文件

[root@bogon mysql]# mkdir /etc/mysql

[root@bogon mysql]# cp support-files/my-large.cnf /etc/mysql/my.cnf

[root@bogon mysql]# vi /etc/mysql/my.cnf    編輯

[mysqld]    #添加如下三個配置參數

skip_name_resolve = ON

datadir = /data/mysql

innodb_file_per_table = ON


mysql配置文件查找次序:

/etc/my.cnf 而后 /etc/mysql/my.cnf 而后--default.extra-file=/PATH/TO/COF_FILE 最后 ~/.my.cnf

6、提供啟動腳

[root@bogon mysql]# cp support-files/mysql.server /etc/init.d/mysqld

[root@bogon mysql]# chmod +x /etc/init.d/mysqld 

[root@bogon mysql]# chkconfig --add mysqld


7、初始化數據庫并啟動mysqld服務


[root@bogon mysql]# ./scripts/mysql_install_db --user=mysql --datadir=/data/mysql/

[root@bogon mysql]# ls /data/mysql/

aria_log.00000001  mysql             mysql-bin.000002  performance_schema

aria_log_control   mysql-bin.000001  mysql-bin.index   test

[root@bogon mysql]# service mysqld start

Starting MySQL.170628 22:53:36 mysqld_safe Logging to '/var/log/mariadb/mariadb.log'.

170628 22:53:36 mysqld_safe Starting mysqld daemon with databases from /data/mysql

/usr/local/mysql/bin/mysqld_safe_helper: Can't create/write to file '/var/log/mariadb/mariadb.log' (Errcode: 2)

.... SUCCESS! 


[root@bogon mysql]# ss -tnl|grep 3306

LISTEN     0      50                        *:3306                     *:*     

[root@bogon mysql]# ps -ef|grep mysqld

root      36474      1  0 22:53 pts/2    00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/data/mysql --pid-file=/data/mysql/bogon.pid

mysql     36920  36474  0 22:53 pts/2    00:00:00 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/data/mysql --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/var/log/mariadb/mariadb.log --pid-file=/data/mysql/bogon.pid --socket=/tmp/mysql.sock --port=3306 --wsrep_start_position=00000000-0000-0000-0000-000000000000:-1

root      36960  36136  0 22:56 pts/2    00:00:00 grep --color=auto mysqld

8、安裝后配置

[root@bogon mysql]# vi /etc/profile.d/mariadb.sh    #編輯

export PATH=/usr/local/mysql/bin:$PATH

[root@bogon mysql]# source /etc/profile.d/mariadb.sh


至此通用二進制格式安裝結束


MySQL慢查詢分析mysqlsla安裝使用

說明:

操作系統MySQL版本MySQL配置文件MySQL數據目錄
CentOS 7.0mariadb-5.5.54/etc/my.cnf/data/mysql

實現目的:開啟MySQL慢查詢日志功能,安裝使用MySQL慢查詢分析mysqlsla。

一、具體操作:

1、開啟MySQL慢查詢功能

[root@bogon mysql]# mysql -u root -p    #進入mysql控制臺

Enter password: 

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

Your MariaDB connection id is 4

Server version: 5.5.54-MariaDB-wsrep MariaDB Server, wsrep_25.14.r9949137


Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.


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

MariaDB [(none)]>

查看mysql慢查詢功能

MariaDB [(none)]> show variables like '%slow%';

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

| Variable_name       | Value                                                                                                        |

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

| log_slow_filter     | admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_cache_miss,tmp_table,tmp_table_on_disk |

| log_slow_queries    | OFF                                                                                                          |

| log_slow_rate_limit | 1                                                                                                            |

| log_slow_verbosity  |                                                                                                              |

| slow_launch_time    | 2                                                                                                            |

| slow_query_log      | OFF                                                                                                          |

| slow_query_log_file | bogon-slow.log                                                                                               |

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

7 rows in set (0.00 sec)


MariaDB [(none)]> show global status like '%slow%';

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

| Variable_name       | Value |

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

| Slow_launch_threads | 0     |

| Slow_queries        | 0     |

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

2 rows in set (0.01 sec)

開啟MySQL慢查詢功能

MariaDB [(none)]> set global slow_query_log=ON;

Query OK, 0 rows affected (0.08 sec)


MariaDB [(none)]> show variables like '%slow%';

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

| Variable_name       | Value                                                                                                        |

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

| log_slow_filter     | admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_cache_miss,tmp_table,tmp_table_on_disk |

| log_slow_queries    | ON                                                                                                           |

| log_slow_rate_limit | 1                                                                                                            |

| log_slow_verbosity  |                                                                                                              |

| slow_launch_time    | 2                                                                                                            |

| slow_query_log      | ON                                                                                                           |

| slow_query_log_file | bogon-slow.log                                                                                             

查看MySQL慢查詢時間設置默認10秒

MariaDB [(none)]> show variables like 'long_query_time';

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

| Variable_name   | Value     |

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

| long_query_time | 10.000000 |

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

1 row in set (0.00 sec)

設置慢查詢記錄超過5秒的記錄

MariaDB [(none)]> set global long_query_time=5;

Query OK, 0 rows affected (0.00 sec)

查看一下:

MariaDB [(none)]> show variables like 'long_query_time';

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

| Variable_name   | Value     |

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

| long_query_time | 10.000000 |

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

1 row in set (0.00 sec)


MariaDB [(none)]> set global long_query_time=5;

Query OK, 0 rows affected (0.00 sec)


MariaDB [(none)]> 

2、測試MySQL慢查詢

退出當前mysql控制臺重新登錄

測試MySQL慢查詢

MariaDB [(none)]> select sleep(6);

查看MySQL慢查詢日志路徑

MariaDB [(none)]> show variables like '%slow%';

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

| Variable_name       | Value                                                                 |

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

| log_slow_filter     | admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_|

| log_slow_queries    | ON                                                                    |

| log_slow_rate_limit | 1                                                                     |

| log_slow_verbosity  |                                                                       |

| slow_launch_time    | 2                                                                     |

| slow_query_log      | ON                                                                    |

| slow_query_log_file | bogon-slow.log                                                        |

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

7 rows in set (0.00 sec)

查看MySQL慢查詢狀態

MariaDB [(none)]> show global status like '%slow%';

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

| Variable_name       | Value |

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

| Slow_launch_threads | 0     |

| Slow_queries        | 1     |

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

2 rows in set (0.00 sec)

退出MySQL控制臺

MariaDB [(none)]> exit;

# 查看MySQL慢查詢日志中是否有剛才所執行的select sleep(6)的慢查詢日志記錄

[root@bogon mysql]# cat /data/mysql/bogon-slow.log 

/usr/local/mysql/bin/mysqld, Version: 5.5.54-MariaDB-wsrep (MariaDB Server, wsrep_25.14.r9949137). started with:

Tcp port: 3306  Unix socket: /tmp/mysql.sock

Time                 Id Command    Argument

# Time: 170629  1:23:34

# User@Host: root[root] @ localhost []

# Thread_id: 5  Schema:   QC_hit: No

# Query_time: 6.000862  Lock_time: 0.000000  Rows_sent: 1  Rows_examined: 0

SET timestamp=1498670614;

select sleep(6);

備注:還可以通過修改MySQL配置文件參數,開啟MySQL慢查詢功能;

3、修改MySQL配置文件開啟慢查詢功能


# 編輯,在[mysqld]段下添加以下代碼

[root@bogon mysql]# vi /etc/my.cnf

#開啟MySQL慢查詢功能

slow-query-log = ON

# 設置MySQL慢查詢日志路徑

slow_query_log_file = /data/mysql/bogon-slow.log

#修改為記錄5秒內的查詢,默認不設置此參數為記錄10秒內的查詢

long_query_time = 5

#記錄未使用索引的查詢

log-queries-not-using-indexes = ON

#保存退出

:wq!

 

# 重啟MySQL服務

service mysqld restart

啟動報錯:

[root@bogon mysql]# service mysqld restart

Shutting down MySQL.. SUCCESS! 

Starting MySQL.170629 02:10:22 mysqld_safe Logging to '/var/log/mariadb/mariadb.log'.

170629 02:10:22 mysqld_safe Starting mysqld daemon with databases from /data/mysql

/usr/local/mysql/bin/mysqld_safe_helper: Can't create/write to file '/var/log/mariadb/mariadb.log' (Errcode: 2)

 ERROR! 

 ERROR! Failed to restart server.

解決方法:

[mysqld_safe]

#log-error=/var/log/mariadb/mariadb.log    注釋這行

pid-file=/var/run/mariadb/mariadb.pid

明天部署mysqlsla,敬請期待~~~~~

二、安裝MySQL慢查詢分析工具mysqlsla

1、安裝依賴包

[root@bogon ~]# yum install wget perl perl-DBI perl-DBD-MySQL mysql perl-Time-HiRes perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker

2、安裝mysqlsla

存放包目錄

[root@bogon ~]# cd /usr/local/src/

下載mysqlsla包

[root@bogon src]# wget http://hackmysql.com/scripts/mysqlsla-2.03.tar.gz    ##這個連接似乎已經掛了

終于在51cto有人分享這個包了,感謝該平臺分享

http://down.51cto.com/data/705945


[root@bogon src]# tar -xf 51CTO下載-mysqlsla-2.03.tar.gz 

[root@bogon src]# cd mysqlsla-2.03/

[root@bogon mysqlsla-2.03]# perl Makefile.PL

Checking if your kit is complete...

Looks good

Writing Makefile for mysqlsla

[root@bogon mysqlsla-2.03]# make

cp lib/mysqlsla.pm blib/lib/mysqlsla.pm

cp bin/mysqlsla blib/script/mysqlsla

/usr/bin/perl -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/mysqlsla

Manifying blib/man3/mysqlsla.3pm

[root@bogon mysqlsla-2.03]# make install

Installing /usr/local/share/perl5/mysqlsla.pm

Installing /usr/local/share/man/man3/mysqlsla.3pm

Installing /usr/local/bin/mysqlsla

Appending installation info to /usr/lib64/perl5/perllocal.pod

3、使用mysqlsla分析慢查詢日志

#查詢記錄最多的20個sql語句,并寫到select.log中去;

[root@bogon mysqlsla-2.03]# mysqlsla -lt slow --sort t_sum --top 20 /data/mysql/bogon-slow.log >/tmp/select.log

#統計慢查詢文件為/data/mysql/bogon-slow.log所有select的慢查詢sql,并顯示執行時間最長的100條sql,并寫到sql_select.log中去;[root@bogon mysqlsla-2.03]# mysqlsla -lt slow -sf "+select" -top 100 /data/mysql/bogon-slow.log >/tmp/sql_select.log

#統計慢查詢文件為/data/mysql/bogon-slow.log的數據庫為mydata的所有select和update的慢查詢sql,并查詢次數最多的100條sql,并寫到sql_num.sql中去;[root@bogon mysqlsla-2.03]# mysqlsla -lt slow -sf "+select,update" -top 100 -sort c_sum -db mydata /data/mysql/bogon-slow.log >/tmp/sql_num.log

4、使用參數說明

1. --log-type (-lt) type logs:通過這個參數來指定log的類型,主要有slow, general, binary, msl, udl,分析slow log時通過指定為slow

2. --sort:指定使用什么參數來對分析結果進行排序,默認是按照t_sum來進行排序。t_sum按總時間排序, c_sum按總次數排序;

3. --top:顯示sql的數量,默認是10,表示取按規則排序的前多少條;

4. --statement-filter (-sf) [+-][TYPE]:過濾sql語句的類型,比如selectupdatedrop. [TYPE]SELECT, CREATE, DROP, UPDATE, INSERT,例如"+SELECT,INSERT",不出現的默認是-,即不包括。

5. --databases db:要處理哪個庫的日志:


5、分析后內容參數說明


1. queries total: 總查詢次數  

2. unique:去重后的sql數量  

3. sorted by : 輸出報表的內容排序 最重大的慢sql統計信息, 包括 平均執行時間, 等待鎖時間, 結果行的總數, 掃描的行總數.  

4. Count: sql的執行次數及占總的slow log數量的百分比.  

5. Time: 執行時間, 包括總時間, 平均時間, 最小, 最大時間, 時間占到總慢sql時間的百分比.  

6. 95% of Time: 去除最快和最慢的sql, 覆蓋率占95%sql的執行時間.  

7. Lock Time: 等待鎖的時間.  

8.95% of Lock: 95%的慢sql等待鎖時間.  

9.Rows sent: 結果行統計數量, 包括平均, 最小, 最大數量.  

10.Rows examined: 掃描的行數量.  

11.Database: 屬于哪個數據庫.

12.Users: 哪個用戶,IP, 占到所有用戶執行的sql百分比.

13. Query abstract: 抽象后的sql語句.

14. Query sample: sql語句.


MySQL慢查詢分析mysqlsla安裝使用教程完成



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东平县| 连南| 鱼台县| 启东市| 新和县| 浦北县| 六安市| 额敏县| 巴林右旗| 松阳县| 太仆寺旗| 饶平县| 蒲江县| 隆子县| 潜江市| 正阳县| 安义县| 大埔区| 莱西市| 永昌县| 麻城市| 宽城| 高邮市| 科技| 通化市| 钟山县| 宁海县| 商河县| 江永县| 石棉县| 白河县| 万荣县| 垣曲县| 科技| 年辖:市辖区| 乌拉特中旗| 黄浦区| 武邑县| 汉沽区| 龙胜| 黄石市|