CentOS6.7安装MySQL

安装mysql时,我们并不是安装了mysql客户端就相当于安装好了mysql数据库了,我们还需要安装mysql-server服务端才行

yum  install  -y  mysql-server  mysql  mysql-devel

此时我们可以通过如下命令,查看刚安装好的mysql-server的版本

rpm -qi mysql-server

我们在安装完mysql数据库以后,会发现会多出一个mysqld的服务,这个就是咱们的数据库服务,我们通过输入 service  mysqld  start 命令就可以启动我们的mysql服务。

我们在使用mysql数据库时,都得首先启动mysqld服务,我们可以 通过 chkconfig --list | grep mysqld 命令来查看mysql服务是不是开机自动启动,如:

[root@xu pm]# chkconfig  --list  |  grep  mysqld

mysqld 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:关闭 6:关闭

我们发现mysqld服务并没有开机自动启动,我们当然可以通过 chkconfig  mysqld  on 命令来将其设置成开机启动,这样就不用每次都去手动启动了。

mysql数据库安装完以后只会有一个root管理员账号,但是此时的root账号还并没有为其设置密码,在第一次启动mysql服务时,会进行数据库的一些初始化工作,在输出的一大

串信息中,我们看到有这样一行信息 :

/usr/bin/mysqladmin -u root password 'new-password'

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)

你可能感兴趣的:(数据库,mysql,centos)