52AV手機A片王|52AV.ONE

標題: CentOS使用yum安裝mysql [打印本頁]

作者: IT_man    時間: 2015-10-30 17:31
標題: CentOS使用yum安裝mysql

查看CentOS自带mysql是否已安裝:

yum list installed | grep mysql

2 ?) A8 E" v9 z6 H9 D

若有自带安装的mysql,如何卸载CentOS系统自带mysql資料庫?

mysql-libs.x86_64       5.1.73-5.el6_6  @anaconda-CentOS-201508042137.x86_64/6.7

yum -y remove mysql-libs.x86_64,若有多個依賴文件则依次卸載。

* i5 a# h+ r$ ^! j9 x2 G

查看yum庫上的mysql版本信息:

yum list | grep mysql 或 yum -y list mysql*


! t, b: o7 X; _% q

使用yum安装mysql資料庫:

yum -y install mysql-server mysql mysql-devel

注:安装mysql只是安装了資料庫,只有安装mysql-server才相當于安装了server及client。

- C: \5 u4 Y; A% T6 X. {& p6 ^

假如輸入 mysql  出現 error:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)      表示未啟動 mysqld
所以輸入  service mysqld start,啟動後馬上出現以下訊息,提醒你的一些有用的訊息:
  1. To start mysqld at boot time you have to copy
  2. support-files/mysql.server to the right place for your system
  3. PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
  4. To do so, start the server, then issue the following commands:
  5. /usr/bin/mysqladmin -u root password 'new-password'
  6. /usr/bin/mysqladmin -u root -h video.yocoolnet.com password 'new-password'
  7. Alternatively you can run:
  8. /usr/bin/mysql_secure_installation
  9. which will also give you the option of removing the test
  10. databases and anonymous user created by default.  This is
  11. strongly recommended for production servers.
  12. See the manual for more instructions.
  13. You can start the MySQL daemon with:
  14. cd /usr ; /usr/bin/mysqld_safe &
  15. You can test the MySQL daemon with mysql-test-run.pl
  16. cd /usr/mysql-test ; perl mysql-test-run.pl
複製代碼
查看刚安装mysql数据库版本信息:

rpm -qi mysql-server


1 u% x: F2 E% P9 y# ?0 n8 V

設定 /etc/my.cnf, i  ^2 k; ]' Z$ U$ I3 I; f

[mysqld]
4 B$ Z# H% }$ k/ \( h% W% qdatadir=/var/lib/mysql
  H$ p6 d6 w# i! a, X$ y! K) I8 ~4 U. }socket=/var/lib/mysql/mysql.sock
; m0 d+ f$ q  b! q+ F# Default to using old password format for compatibility with mysql 3.x
2 w8 ]/ J3 G, O! Z4 a# clients (those using the mysqlclient10 compatibility package).
# ]1 _: b# ~6 yold_passwords=1
7 K* u* @3 b- Y. ]& `/ y  P( ]default-character-set = utf8
% h. E# M+ W$ U
  h$ b  U& X4 u+ B: h8 _[mysql.server]  c' t. U( \& e
user=mysql
6 B: z8 z4 V* O7 [basedir=/var/lib
) o$ r7 x* V+ V) x4 E# v) i% W7 W; T
[mysqld_safe]
6 c6 h; _+ h* r9 F1 s* ylog-error=/var/log/mysqld.log
$ t( C* @0 M3 I6 M$ ]  {2 C, f1 u5 upid-file=/var/run/mysqld/mysqld.pid
: {3 P2 H5 d8 u5 {: n
2 P+ j: ]  O! J6 d3 t9 E) g[mysql]
4 F! n' e' S* G. a( sdefault-character-set = utf84 B; ^6 p2 ^+ n3 p+ z9 q

設定 MySQL 服務隨系統一起啟動- v; G$ T5 {3 R9 ]! B4 r2 U. e3 G
# chkconfig mysqld on
  d* a/ Q/ x# s: h; r1 o% F( n5 P) }/ A4 s0 u
確認 MySQL 自動啟動有打開
8 N# J3 Y# d7 K5 N3 }4 P! E0 x

# chkconfig --list mysqld
8 B1 M6 P5 \( e8 w  K3 J! G6 X8 r, b( X

如果2--5為on的狀態就OK1 D4 l( C& p. U* P4 P( H

mysqld 0: off 1: off 2: on 3: on 4: on 5: on 6: off. Q" a& O4 ^; M. b% V$ E' D8 C- k

啟動 MySQL 服務
" u5 n, m" f. C& i- R4 b" c

# service mysqld start   或 /usr/bin/mysqld_safe &
確認 MySQL 是否已啟動
#service mysqld status
mysqld (pid  33778) is running...
cd /usr/mysql-test ; perl mysql-test-run.pl
/ |$ R* ]. j  Z' Q- `6 ^# Z2 `

啟動 MySQL 以後,必須設定 root 的密碼: K1 \- i" ~8 C' M; Z

# mysqladmin -u root password 'Your Password'    或者執行指令
# /usr/bin/mysql_secure_installation
試 root 是否可成功登入 mysql:
mysql -u root -p
Enter password:   (輸入root 密碼)
升級 MySQL database至最新
# mysql_upgrade -u root -p
輸入密碼
/ \- h# r* Y4 J- t  G# |1 h  _
[重新安裝mysql]
參考http://tecadmin.net/remove-mysql-completely-from-linux-system/
註:
以yum安裝在CentOS 5.11/i386 啟動時出現錯誤,see /var/log/mysqld.log :
160414 10:07:57 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
160414 10:07:57 [Note] /usr/libexec/mysqld (mysqld 5.5.49) starting as process 9426 ...
160414 10:07:57 [Note] Plugin 'FEDERATED' is disabled.
/usr/libexec/mysqld: Table 'mysql.plugin' doesn't exist
160414 10:07:57 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
160414 10:07:57 InnoDB: The InnoDB memory heap is disabled
160414 10:07:57 InnoDB: Mutexes and rw_locks use InnoDB's own implementation
160414 10:07:57 InnoDB: Compressed tables use zlib 1.2.3
160414 10:07:57 InnoDB: Using Linux native AIO
160414 10:07:57 InnoDB: Initializing buffer pool, size = 128.0M
160414 10:07:57 InnoDB: Completed initialization of buffer pool
160414 10:07:57 InnoDB: highest supported file format is Barracuda.
160414 10:07:57  InnoDB: Waiting for the background threads to start
160414 10:07:58 InnoDB: 5.5.49 started; log sequence number 1595675
160414 10:07:58 InnoDB: !!! innodb_force_recovery is set to 1 !!!
160414 10:07:58 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
160414 10:07:58 [Note]   - '0.0.0.0' resolves to '0.0.0.0';
160414 10:07:58 [Note] Server socket created on IP: '0.0.0.0'.
160414 10:07:58 [ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist
原因是:啟動mysqld時無法自動建立 /var/lib/mysql/所有資料庫,因此需手動建立所有DB
5 T7 w. r4 z/ u7 [mysql_install_db --user=mysql --ldata=/var/lib/mysql/  ===>check /var/lib/mysql/內已建立許多DB
, o9 U# k* z- L
$ G+ a% |3 k  I) S6 P! Y
升級成最新版:
https://www.cadch.com/modules/news/article.php?storyid=227





歡迎光臨 52AV手機A片王|52AV.ONE (https://nhkie.com/) Powered by Discuz! X3.2