一、安裝mysqlmysql
安裝mysql時,咱們並非安裝了mysql客戶端就至關於安裝好了mysql數據庫了,咱們還須要安裝mysql-server服務端才行sql
yum install -y mysql-server mysql mysql-devel數據庫
此時咱們能夠經過以下命令,查看剛安裝好的mysql-server的版本spa
rpm -qi mysql-server
咱們在安裝完mysql數據庫之後,會發現會多出一個mysqld的服務,這個就是我們的數據庫服務,咱們經過輸入 service mysqld start 命令就能夠啓動咱們的mysql服務。.net
咱們在使用mysql數據庫時,都得首先啓動mysqld服務,咱們能夠 經過 chkconfig --list | grep mysqld 命令來查看mysql服務是否是開機自動啓動,如:code
[root@xu pm]# chkconfig --list | grep mysqldorm
mysqld 0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:關閉 6:關閉server
咱們發現mysqld服務並無開機自動啓動,咱們固然能夠經過 chkconfig mysqld on 命令來將其設置成開機啓動,這樣就不用每次都去手動啓動了。
mysql數據庫安裝完之後只會有一個root管理員帳號,可是此時的root帳號還並無爲其設置密碼,在第一次啓動mysql服務時,會進行數據庫的一些初始化工做,在輸出的一大串信息中,咱們看到有這樣一行信息 :get
/usr/bin/mysqladmin -u root password 'new-password'input
ok,而後設置密碼
[root@xu pm]# mysqladmin -u root password '123456'
此時咱們就能夠經過 mysql -u root -p 命令來登陸咱們的mysql數據庫了
[root@xu pm]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.1.73 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
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> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+
3 rows in set (0.00 sec)