最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

mysql-5.7.42升級(jí)到mysql-8.2.0(二進(jìn)制方式)

 更新時(shí)間:2024年03月27日 14:39:03   作者:運(yùn)維魔法師  
隨著數(shù)據(jù)量的增長和業(yè)務(wù)需求的變更,我們可能需要升級(jí)MySQL,本文主要介紹了mysql-5.7.42升級(jí)到mysql-8.2.0(二進(jìn)制方式),具有一定的參考價(jià)值,感興趣的可以了解一下

注:本文在測(cè)試環(huán)境升級(jí)測(cè)試,建議先在測(cè)試環(huán)境驗(yàn)證。在生產(chǎn)環(huán)境下還是先評(píng)估下,mysql-5.7.42為二進(jìn)制方式安裝,所以用mysql-8.2.0二進(jìn)制包升級(jí)

1、操作環(huán)境

1、查看當(dāng)前數(shù)據(jù)庫版本

mysql> select@@version;
+-----------+
| @@version |
+-----------+
| 5.7.42    |
+-----------+
1 row in set (0.00 sec)

mysql> 

2、操作系統(tǒng)版本

[root@zyl-server ~]#  cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)
[root@zyl-server ~]# 
[root@zyl-server ~]# 

3、查看 Linux 系統(tǒng)上的 glibc(GNU C 庫)版本(這里很重要,要下載對(duì)應(yīng)的內(nèi)核mysql版本)

ldd --version

或者
rpm -q glibc

**查看當(dāng)前系統(tǒng)中的libstdc++版本:**

strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX
strings /usr/lib64/libstdc++.so.6 | grep CXXABI
strings /usr/lib64/libstdc++.so.6 | grep GLIBC
strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX

在這里插入圖片描述

否則后面升級(jí)完成后,啟動(dòng)mysql會(huì)報(bào)錯(cuò):

在這里插入圖片描述

報(bào)錯(cuò)如下:

錯(cuò)誤表明在啟動(dòng)MySQL服務(wù)時(shí)出現(xiàn)了一些問題。主要的錯(cuò)誤信息是關(guān)于缺少特定庫文件的版本,比如GLIBCXX_3.4.20、CXXABI_1.3.9、CXXABI_1.3.8、GLIBCXX_3.4.21以及GLIBC_2.25。

這是由于安裝的MySQL版本與系統(tǒng)中可用的標(biāo)準(zhǔn)庫版本不兼容導(dǎo)致的(所以要對(duì)應(yīng)下載相應(yīng)的內(nèi)核版本)。

Mar 20 21:10:55 db-mysql mysqld[7127]: /usr/local/mysql/bin/my_print_defaults: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /usr/local/mysql/bin/my_print_defaults)
Mar 20 21:10:55 db-mysql mysqld[7127]: /usr/local/mysql/bin/my_print_defaults: /lib64/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by /usr/local/mysql/bin/my_print_defaults)
Mar 20 21:10:55 db-mysql mysqld[7127]: /usr/local/mysql/bin/my_print_defaults: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by /usr/local/mysql/bin/my_print_defaults)
Mar 20 21:10:55 db-mysql mysqld[7127]: /usr/local/mysql/bin/my_print_defaults: /lib64/libc.so.6: version `GLIBC_2.25' not found (required by /usr/local/mysql/bin/../lib/private/libcrypto.so.3
Mar 20 21:10:55 db-mysql mysqld[7127]: /usr/local/mysql/bin/my_print_defaults: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /usr/local/mysql/bin/my_print_defaults)
Mar 20 21:10:55 db-mysql mysqld[7127]: /usr/local/mysql/bin/my_print_defaults: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /usr/local/mysql/bin/my_print_defaults)
Mar 20 21:10:55 db-mysql mysqld[7127]: /usr/local/mysql/bin/my_print_defaults: /lib64/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by /usr/local/mysql/bin/my_print_defaults)
Mar 20 21:10:55 db-mysql mysqld[7127]: /usr/local/mysql/bin/my_print_defaults: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by /usr/local/mysql/bin/my_print_defaults)
Mar 20 21:10:55 db-mysql mysqld[7127]: /usr/local/mysql/bin/my_print_defaults: /lib64/libc.so.6: version `GLIBC_2.25' not found (required by /usr/local/mysql/bin/../lib/private/libcrypto.so.3

2、升級(jí)準(zhǔn)備

1、數(shù)據(jù)備份:在升級(jí)之前,務(wù)必對(duì)當(dāng)前的 MySQL 5.7 數(shù)據(jù)庫進(jìn)行完整備份,以防止數(shù)據(jù)丟失或損壞。確保備份文件的安全存儲(chǔ),并測(cè)試其可恢復(fù)性。

2、安全性考慮:建議在測(cè)試環(huán)境中進(jìn)行升級(jí)測(cè)試,以模擬真實(shí)場(chǎng)景并檢測(cè)潛在問題。這有助于減少生產(chǎn)環(huán)境中的不確定性和風(fēng)險(xiǎn)。

1、使用mysql-shell 檢查工具檢查兼容性

下載地址:https://downloads.mysql.com/archives/shell/

在這里插入圖片描述

上傳mysql-shell:

在這里插入圖片描述

安裝 mysql-shell rpm 軟件包::

rpm -Uvh mysql-shell-8.2.0-1.el7.x86_64.rpm --force --nodeps

查看 mysql-shel安裝版本:

mysqlsh --version

在這里插入圖片描述

檢查該版本是否可以升級(jí)到MySQL 8.2.0:

mysqlsh -uroot -p -S /tmp/mysqld.sock -e "util.checkForServerUpgrade()" 

注意:mysql.sock 地址在/etc/my.cnf 文件中查看。

在這里插入圖片描述

檢查結(jié)果報(bào)告:

[root@db-mysql ~]# mysqlsh -uroot -p -S /tmp/mysqld.sock -e "util.checkForServerUpgrade()" 
Please provide the password for 'root@/tmp%2Fmysqld.sock': ******
Save password for 'root@/tmp%2Fmysqld.sock'? [Y]es/[N]o/Ne[v]er (default No): 
The MySQL server at /tmp%2Fmysqld.sock, version 5.7.42 - MySQL Community Server
(GPL), will now be checked for compatibility issues for upgrade to MySQL
8.2.0...

1) Usage of old temporal type
  No issues found

2) MySQL 8.0 syntax check for routine-like objects
  No issues found

3) Usage of db objects with names conflicting with new reserved keywords
  No issues found

4) Usage of utf8mb3 charset
  Warning: The following objects use the utf8mb3 character set. It is
    recommended to convert them to use utf8mb4 instead, for improved Unicode
    support.
  More information:
    https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-utf8mb3.html

  db_update - schema's default character set: utf8
  db_update.users.name - column's default character set: utf8
  db_update.users.email - column's default character set: utf8

5) Table names in the mysql schema conflicting with new tables in 8.0
  No issues found

6) Partitioned tables using engines with non native partitioning
  No issues found

7) Foreign key constraint names longer than 64 characters
  No issues found

8) Usage of obsolete MAXDB sql_mode flag
  No issues found

9) Usage of obsolete sql_mode flags
  Notice: The following DB objects have obsolete options persisted for
    sql_mode, which will be cleared during upgrade to 8.0.
  More information:
    https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html#mysql-nutshell-removals

  global system variable sql_mode - defined using obsolete NO_AUTO_CREATE_USER
    option

10) ENUM/SET column definitions containing elements longer than 255 characters
  No issues found

11) Usage of partitioned tables in shared tablespaces
  No issues found

12) Circular directory references in tablespace data file paths
  No issues found

13) Usage of removed functions
  No issues found

14) Usage of removed GROUP BY ASC/DESC syntax
  No issues found

15) Removed system variables for error logging to the system log configuration
  To run this check requires full path to MySQL server configuration file to be specified at 'configPath' key of options dictionary
  More information:
    https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-13.html#mysqld-8-0-13-logging

16) Removed system variables
  To run this check requires full path to MySQL server configuration file to be specified at 'configPath' key of options dictionary
  More information:
    https://dev.mysql.com/doc/refman/8.0/en/added-deprecated-removed.html#optvars-removed

17) System variables with new default values
  To run this check requires full path to MySQL server configuration file to be specified at 'configPath' key of options dictionary
  More information:
    https://mysqlserverteam.com/new-defaults-in-mysql-8-0/

18) Zero Date, Datetime, and Timestamp values
  No issues found

19) Schema inconsistencies resulting from file removal or corruption
  No issues found

20) Tables recognized by InnoDB that belong to a different engine
  No issues found

21) Issues reported by 'check table x for upgrade' command
  No issues found

22) New default authentication plugin considerations
  Warning: The new default authentication plugin 'caching_sha2_password' offers
    more secure password hashing than previously used 'mysql_native_password'
    (and consequent improved client connection authentication). However, it also
    has compatibility implications that may affect existing MySQL installations. 
    If your MySQL installation must serve pre-8.0 clients and you encounter
    compatibility issues after upgrading, the simplest way to address those
    issues is to reconfigure the server to revert to the previous default
    authentication plugin (mysql_native_password). For example, use these lines
    in the server option file:
    
    [mysqld]
    default_authentication_plugin=mysql_native_password
    
    However, the setting should be viewed as temporary, not as a long term or
    permanent solution, because it causes new accounts created with the setting
    in effect to forego the improved authentication security.
    If you are using replication please take time to understand how the
    authentication plugin changes may impact you.
  More information:
    https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password-compatibility-issues
    https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password-replication

23) Columns which cannot have default values
  No issues found

24) Check for invalid table names and schema names used in 5.7
  No issues found

25) Check for orphaned routines in 5.7
  No issues found

26) Check for deprecated usage of single dollar signs in object names
  No issues found

27) Check for indexes that are too large to work on higher versions of MySQL
Server than 5.7
  No issues found

28) Check for deprecated '.<table>' syntax used in routines.
  No issues found

29) Check for columns that have foreign keys pointing to tables from a diffrent
database engine.
  No issues found

Errors:   0
Warnings: 4
Notices:  1

NOTE: No fatal errors were found that would prevent an upgrade, but some potential issues were detected. Please ensure that the reported issues are not significant before upgrading.

檢查結(jié)果顯示:

沒有發(fā)現(xiàn)使用舊時(shí)態(tài)類型的問題
沒有發(fā)現(xiàn)與MySQL 8.0語法相關(guān)的問題
沒有發(fā)現(xiàn)與數(shù)據(jù)庫對(duì)象名稱與新保留關(guān)鍵字沖突的問題
發(fā)現(xiàn)某些對(duì)象使用了utf8mb3字符集,建議轉(zhuǎn)換為utf8mb4以獲得更好的Unicode支持
沒有發(fā)現(xiàn)與mysql模式中的表名沖突的問題
沒有發(fā)現(xiàn)使用具有非本地分區(qū)的引擎的分區(qū)表的問題
沒有發(fā)現(xiàn)外鍵約束名稱超過64個(gè)字符的問題
沒有發(fā)現(xiàn)使用已棄用的MAXDB sql_mode標(biāo)志的問題
發(fā)現(xiàn)一些DB對(duì)象已經(jīng)使用了過時(shí)的sql_mode選項(xiàng)
沒有發(fā)現(xiàn)ENUM/SET列定義中包含超過255個(gè)字符的元素的問題
沒有發(fā)現(xiàn)在共享表空間中使用分區(qū)表的問題
沒有發(fā)現(xiàn)表空間數(shù)據(jù)文件路徑中存在循環(huán)目錄引用的問題
沒有發(fā)現(xiàn)使用已刪除函數(shù)的問題
沒有發(fā)現(xiàn)已刪除的GROUP BY ASC/DESC語法的問題
無法運(yùn)行需要指定完整MySQL服務(wù)器配置文件路徑的日志系統(tǒng)變量檢查
無法運(yùn)行需要指定完整MySQL服務(wù)器配置文件路徑的已刪除系統(tǒng)變量檢查
無法運(yùn)行需要指定完整MySQL服務(wù)器配置文件路徑的新默認(rèn)值系統(tǒng)變量檢查
沒有發(fā)現(xiàn)零日期、日期時(shí)間和時(shí)間戳值的問題
沒有發(fā)現(xiàn)由文件刪除或損壞導(dǎo)致的模式不一致的問題
沒有發(fā)現(xiàn)被InnoDB識(shí)別為屬于不同引擎的表的問題
沒有發(fā)現(xiàn)通過'check table x for upgrade'命令報(bào)告的問題
發(fā)現(xiàn)新的默認(rèn)身份驗(yàn)證插件引入了兼容性問題,建議在升級(jí)后重新配置服務(wù)器以恢復(fù)到以前的默認(rèn)身份驗(yàn)證插件
沒有發(fā)現(xiàn)不能有默認(rèn)值的列的問題
沒有發(fā)現(xiàn)在5.7中使用的無效表名和模式名的問題
沒有發(fā)現(xiàn)在5.7中遺留存儲(chǔ)過程的問題
沒有發(fā)現(xiàn)在對(duì)象名稱中使用單個(gè)美元符號(hào)的已棄用用法
沒有發(fā)現(xiàn)在高于MySQL Server 5.7版本上工作的索引過大的問題
沒有發(fā)現(xiàn)在例程中使用已棄用'.<table>'語法的問題
沒有發(fā)現(xiàn)具有外鍵指向不同數(shù)據(jù)庫引擎的表的列的問題

總結(jié):

錯(cuò)誤:0
警告:4
注意事項(xiàng):1

總結(jié)來說,檢查未發(fā)現(xiàn)會(huì)阻止升級(jí)的致命錯(cuò)誤,但檢測(cè)到了一些潛在問題。在升級(jí)之前,請(qǐng)確保報(bào)告的問題并不重要。

3、mysqldump 導(dǎo)出數(shù)據(jù)文件和備份my.cnf

[root@db-mysql ~]#  mysqldump -hlocalhost -uroot -p --all-databases > /home/db_back_2024.sql
Enter password: 
[root@db-mysql ~]# cd /home/                 
[root@db-mysql home]# ll
total 872
-rw-r--r--  1 root   root     889253 Mar 20 20:25 db_back_2024.sql
drwx------  2 oracle oinstall    127 Mar 18 05:12 oracle
drwx------. 2 zyl    zyl          62 Mar 16 22:24 zyl
[root@db-mysql home]# cp /etc/my.cnf /home/5.7.37_my.cnf

[root@zyl-mysql home]# 


在這里插入圖片描述

升級(jí)前先停止數(shù)據(jù)庫。

[root@db-mysql home]# systemctl stop mysqld

4、備份舊版mysql-5.7.42 安裝目錄下的文件和my.cnf文件(重要)

這里的安裝目錄在/usr/local/mysql,根據(jù)自己實(shí)際備份。

在這里插入圖片描述

cd /usr/local/

mkdir mysql-5.7.42_bk

##全部備份 mysql目錄下的文件
cp -R mysql/* mysql-5.7.42_bk

### 或者直接壓縮
### tar -zcvf mysql-5.7.42_bk.tar.gz mysql
[root@db-mysql bin]# tar zcf mysql-5.7.42_bk.tar.gz mysql

在這里插入圖片描述

5、刪除舊版安裝目錄/usr/local/mysql下(bin、docs、includ、lib、share、support-files、LICENSE、README);

在這里插入圖片描述

cd /usr/local/mysql

rm -rf bin
rm -rf docs
rm -rf include
rm -rf lib
rm -rf README
rm -rf LICENSE
rm -rf share
rm -rf support-files
rm -rf man

在這里插入圖片描述

6、備份mysqld 啟動(dòng)文件

先備份/etc/init.d/ 下的mysqld 再 刪除/etc/init.d/ 下的mysqld

cd /etc/init.d/
 
tar zcf mysqld_5.7.42.tar.gz mysqld
 
rm -rf /etc/init.d/mysqld

在這里插入圖片描述

7、上傳、解壓安裝包(開始升級(jí))

下載mysql8.2.0:

https://downloads.mysql.com/archives/community/

在這里插入圖片描述

創(chuàng)建"mysql8.2.0-glibc"的文件夾,用于存放解壓文件。

mkdir /root/mysql8.2.0-glibc

##解壓
tar -xvf mysql-8.2.0-linux-glibc2.28-x86_64.tar -C /root/mysql8.2.0-glibc

在這里插入圖片描述

##繼續(xù)解壓 
cd /root/mysql8.2.0-glibc

tar -xvf mysql-8.2.0-linux-glibc2.28-x86_64.tar.xz

在這里插入圖片描述

將新解壓的mysql-8.2.0目錄復(fù)制到原來mysql安裝目錄下(/usr/local/mysql/),并修改文件權(quán)限。

[root@db-mysql mysql8.2.0-glibc]# mv mysql-8.2.0-linux-glibc2.17-x86_64/* /usr/local/mysql

在這里插入圖片描述

##修改文件權(quán)限

chown -R mysql:mysql /usr/local/mysql

在這里插入圖片描述

8、復(fù)制新版啟動(dòng)文件到/etc/init.d/

將新解壓的mysql-8.2.0 的mysqld復(fù)制到/etc/init.d/ 下。

cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld

在這里插入圖片描述

9、修改mysqld參數(shù)

vi /etc/init.d/mysqld

和舊版保持一致。

datadir=/usr/local/mysql/data
basedir=/usr/local/mysql

在這里插入圖片描述

10、啟動(dòng)數(shù)據(jù)庫

[root@db-mysql ~]# systemctl daemon-reload
[root@db-mysql ~]# 
[root@db-mysql ~]# systemctl start mysqld
[root@db-mysql ~]# 
[root@db-mysql ~]# systemctl status mysqld

在這里插入圖片描述

11、升級(jí)驗(yàn)證

1、檢查登錄正常

mysql -u root -p

[root@db-mysql mysql]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 8.2.0 MySQL Community Server - GPL

Copyright (c) 2000, 2023, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql> 


2、檢查升級(jí)版本

已由mysql-5.7.42 升級(jí)到 mysql-8.2.0 。

mysql> select@@version;
+-----------+
| @@version |
+-----------+
| 8.2.0     |
+-----------+
1 row in set (0.00 sec)

mysql> 

在這里插入圖片描述

3、檢查數(shù)據(jù)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| db_update          |
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
5 rows in set (0.01 sec)

mysql> use db_update;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> show tables;
+---------------------+
| Tables_in_db_update |
+---------------------+
| users               |
+---------------------+
1 row in set (0.00 sec)

mysql> select * from users;
+----+---------+------+---------------------+
| id | name    | age  | email               |
+----+---------+------+---------------------+
|  1 | Alice   |   25 | alice@example.com   |
|  2 | Bob     |   30 | bob@example.com     |
|  3 | Charlie |   22 | charlie@example.com |
|  4 | David   |   28 | david@example.com   |
|  5 | Eve     |   35 | eve@example.com     |
+----+---------+------+---------------------+
5 rows in set (0.00 sec)

mysql> 

在這里插入圖片描述

到此這篇關(guān)于mysql-5.7.42升級(jí)到mysql-8.2.0 (二進(jìn)制方式)的文章就介紹到這了,更多相關(guān)mysql-5.7.42升級(jí)到mysql-8.2.0 內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家! 

相關(guān)文章

  • MySQL安裝與配置:如何重置MySQL登錄密碼(windows環(huán)境)

    MySQL安裝與配置:如何重置MySQL登錄密碼(windows環(huán)境)

    這篇文章主要介紹了MySQL安裝與配置:如何重置MySQL登錄密碼(windows環(huán)境),具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-12-12
  • MySQL實(shí)現(xiàn)批量插入測(cè)試數(shù)據(jù)的方式總結(jié)

    MySQL實(shí)現(xiàn)批量插入測(cè)試數(shù)據(jù)的方式總結(jié)

    在開發(fā)過程中經(jīng)常需要一些測(cè)試數(shù)據(jù),?這個(gè)時(shí)候如果手敲的話,?十行二十行還好,?多了就很死亡了,?接下來介紹兩種常用的MySQL測(cè)試數(shù)據(jù)批量生成方式,希望對(duì)大家有所幫助
    2023-05-05
  • 初步介紹MySQL中的集合操作

    初步介紹MySQL中的集合操作

    這篇文章主要介紹了初步的MySQL中的集合操作,即UNION DISTINCT和UNION ALL兩個(gè)命令,需要的朋友可以參考下
    2015-04-04
  • MySQL索引概念及七種索引類型分享介紹

    MySQL索引概念及七種索引類型分享介紹

    這篇文章主要介紹了MySQL索引概念及七種索引類型分享介紹,索引是存儲(chǔ)引擎用于快速找到記錄的一種數(shù)據(jù)結(jié)構(gòu),這也是索引最基本的功能
    2022-08-08
  • MySQL事務(wù)日志(redo?log和undo?log)的詳細(xì)分析

    MySQL事務(wù)日志(redo?log和undo?log)的詳細(xì)分析

    innodb事務(wù)日志包括redo?log和undo?log,redo?log是重做日志,提供前滾操作,undo?log是回滾日志,提供回滾操作,下面這篇文章主要給大家介紹了關(guān)于MySQL事務(wù)日志(redo?log和undo?log)的詳細(xì)分析,需要的朋友可以參考下
    2022-04-04
  • MySQL學(xué)習(xí)之DDL數(shù)據(jù)庫定義與操作

    MySQL學(xué)習(xí)之DDL數(shù)據(jù)庫定義與操作

    本文詳細(xì)介紹SQL中DDL的數(shù)據(jù)庫操作,包括查詢、創(chuàng)建、刪除數(shù)據(jù)庫和表的操作,以及修改表結(jié)構(gòu)等功能,通過這些操作,讀者可以深入了解如何使用SQL進(jìn)行數(shù)據(jù)庫管理和維護(hù),需要的朋友可以參考下
    2024-11-11
  • Linux下MySQL5.7.18 yum方式從卸載到安裝過程圖解

    Linux下MySQL5.7.18 yum方式從卸載到安裝過程圖解

    這篇文章主要介紹了Linux下MySQL5.7.18 yum方式從卸載到安裝過程圖解,需要的朋友可以參考下
    2017-06-06
  • MySQL中空值和NULL的區(qū)別小結(jié)

    MySQL中空值和NULL的區(qū)別小結(jié)

    在 MySQL 中,NULL 值和空值是兩個(gè)不同的概念,本文主要介紹了MySQL中空值和NULL的區(qū)別小結(jié),具有一定的參考價(jià)值,感興趣的可以了解一下
    2024-08-08
  • centOS7安裝MySQL數(shù)據(jù)庫

    centOS7安裝MySQL數(shù)據(jù)庫

    本文給大家簡(jiǎn)單介紹了如何在centOS7下安裝MySQL5.6數(shù)據(jù)庫的方法,以及一些注意事項(xiàng),希望對(duì)大家實(shí)用mysql能夠有所幫助
    2016-12-12
  • 詳細(xì)解讀MySQL中的權(quán)限

    詳細(xì)解讀MySQL中的權(quán)限

    這篇文章主要介紹了MySQL中的權(quán)限,包括各個(gè)權(quán)限所能操作的事務(wù)以及操作權(quán)限的一些常用命令語句,需要的朋友可以參考下
    2015-05-05

最新評(píng)論

柯坪县| 信阳市| 铜鼓县| 满城县| 新安县| 江华| 南部县| 万宁市| 新昌县| 宜兰县| 衢州市| 民丰县| 郎溪县| 府谷县| 方正县| 黄冈市| 新巴尔虎左旗| 平舆县| 赤壁市| 灵台县| 五原县| 虞城县| 大化| 松阳县| 汪清县| 白城市| 宣化县| 尚义县| 且末县| 屯门区| 青海省| 台北县| 辽中县| 柳林县| 托克逊县| 浦北县| 从化市| 汤原县| 凉山| 鄢陵县| 蒙自县|