mysql安装

首先你得打开SSH

mysql安装

 

 

 二.Mysql安装

步骤:

1)查看CentOS自带的mysql

输入 rpm -qa | grep mysql

 

mysql安装

 

2)将自带的mysql卸载

 mysql安装

(3)先给MySQL-5.6.26-1.linux_glibc2.5.x86_64.rpm-bundle.tar赋权(可读可写可执行)

chmod 777 MySQL-5.6.26-1.linux_glibc2.5.x86_64.rpm-bundle.tar

 

mysql安装

 

4)解压Mysql到/usr/local/下的mysql目录(mysql目录需要手动创建)内

cd /usr/local

mkdir mysql

tar -xvf MySQL-5.6.22-1.el6.i686.rpm-bundle.tar -C /usr/local/mysql

 mysql安装

mysql安装

mysql安装

 

 

5)在/usr/local/mysql下安装mysql

安装服务器端:rpm -ivh MySQL-server-5.6.22-1.el6.i686.rpm

(error: Failed dependencies:……

mysql安装

 

 

rpm -vih httpd-2.2.3-6.el5.i386.rpm --force --nodeps)

安装客户端:rpm -ivh MySQL-client-5.6.22-1.el6.i686.rpm

静静的不要动等他安装好再说

mysql安装

 

 mysql安装

6)启动mysql

service mysql start

mysql安装

 

 

7)将mysql加到系统服务中并设置开机启动

加入到系统服务:chkconfig --add mysql

自动启动:chkconfig mysql on

mysql安装

 

 

8)登录mysql(5.5的版本为空)

mysql安装好后会生成一个临时随机密码,存储位置在/root/.mysql_secret

mysql安装

 

 

[root@localhost mysql]# mysql -u root -p
Enter password:

mysql安装

9)修改mysql的密码

set password = password(‘root‘);

10)开启mysql的远程登录

默认情况下mysql为安全起见,不支持远程登录mysql,所以需要设置开启 远程登录mysql的权限

登录mysql后输入如下命令:

grant all privileges on *.* to ‘root‘ @‘%‘ identified by ‘root‘;

flush privileges;

11)开放Linux的对外访问的端口3306

/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT

/etc/rc.d/init.d/iptables save ---将修改永久保存到防火墙中

mysql安装

 mysql安装

 

mysql安装

上一篇:三十六:WEB漏洞-逻辑越权之验证码与Token接口


下一篇:mysql中in的用法详解