|
tid=21196& 查看CentOS自带mysql是否已安裝: yum list installed | grep mysql
- z! w) S% C" b; ?7 T. \若有自带安装的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,若有多個依賴文件则依次卸載。
8 ^" M& |6 w! D9 M8 w' W; M查看yum庫上的mysql版本信息: yum list | grep mysql 或 yum -y list mysql*
) x4 R X$ h* B+ i$ i) h使用yum安装mysql資料庫: yum -y install mysql-server mysql mysql-devel 注:安装mysql只是安装了資料庫,只有安装mysql-server才相當于安装了server及client。 + X' {; N2 }2 Y2 X$ d) x3 {
假如輸入 mysql 出現 error: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) 表示未啟動 mysqld 所以輸入 service mysqld start,啟動後馬上出現以下訊息,提醒你的一些有用的訊息: - To start mysqld at boot time you have to copy
- support-files/mysql.server to the right place for your system
- PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
- To do so, start the server, then issue the following commands:
- /usr/bin/mysqladmin -u root password 'new-password'
- /usr/bin/mysqladmin -u root -h video.yocoolnet.com password 'new-password'
- Alternatively you can run:
- /usr/bin/mysql_secure_installation
- which will also give you the option of removing the test
- databases and anonymous user created by default. This is
- strongly recommended for production servers.
- See the manual for more instructions.
- You can start the MySQL daemon with:
- cd /usr ; /usr/bin/mysqld_safe &
- You can test the MySQL daemon with mysql-test-run.pl
- cd /usr/mysql-test ; perl mysql-test-run.pl
複製代碼查看刚安装mysql数据库版本信息: rpm -qi mysql-server % ^0 B6 D% Q1 d
設定 /etc/my.cnf
% i+ z+ H* c4 w- v8 z3 g3 t* e [mysqld]0 B2 U) ^6 K4 u5 F% M) g4 m* W
datadir=/var/lib/mysql
$ @; W6 l2 n2 Gsocket=/var/lib/mysql/mysql.sock) a# S9 I/ i1 Y& z$ r& |6 ~0 A
# Default to using old password format for compatibility with mysql 3.x5 r% p: T7 ^% G# E+ k1 w
# clients (those using the mysqlclient10 compatibility package).$ X0 k2 R. h- U) \! o
old_passwords=1
: @0 w& L. b; C6 n% S! vdefault-character-set = utf8
' d5 E1 t! K; d. a9 ?6 N/ t# I: ^+ r g5 _
[mysql.server]/ i$ Q6 ?2 @' Q0 B2 H& _
user=mysql% h6 P& X% [6 Q) u) x0 K0 m
basedir=/var/lib3 m/ h' Z* I! b+ I
. L8 z; v3 Q& [+ l9 j( F
[mysqld_safe]
9 k& r7 Z0 K- @" r1 Plog-error=/var/log/mysqld.log5 I7 i" N7 c! O3 ^. \
pid-file=/var/run/mysqld/mysqld.pid* |! ~( Z% D9 k& a+ q
4 q, X' V- w0 R* o# K/ J) J
[mysql]
9 x5 g1 [: |/ u+ x8 Q; A8 x' g8 v$ kdefault-character-set = utf8( f- ^1 |8 G7 `5 S/ t. t& {
設定 MySQL 服務隨系統一起啟動. Z& ?, l# K9 q& C( Y
# chkconfig mysqld on# I i& O$ g/ i8 U5 Z- B
% v+ H: O5 |* X2 b確認 MySQL 自動啟動有打開
* U8 n. }( h9 y # chkconfig --list mysqld: D4 A5 f8 w9 `6 q% N6 F+ I+ x: [
如果2--5為on的狀態就OK
7 `2 {/ v7 z9 W/ J/ u mysqld 0: off 1: off 2: on 3: on 4: on 5: on 6: off
9 e/ \2 O) Z7 j3 w3 E7 L0 {. j 啟動 MySQL 服務
- q3 n! p+ f2 t9 N5 m2 ]4 W: x q$ w # 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
3 ^& t- }, b/ z0 X, Z$ @4 O) g9 u
啟動 MySQL 以後,必須設定 root 的密碼5 _6 |% Z+ o- Q. _( j, l
# 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 輸入密碼 8 \5 L2 F7 S" z1 [# @1 T P
[重新安裝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
% r5 W W+ v# O! S, _' Smysql_install_db --user=mysql --ldata=/var/lib/mysql/ ===>check /var/lib/mysql/內已建立許多DB
. N: H/ F, { D0 |
5 _, v3 a, H9 x W/ F& m4 u
升級成最新版: https://www.cadch.com/modules/news/article.php?storyid=227 |