此次安装在桌面环境下,使用shell命令进行安装,下载安装包为:
MySQL-5.6.25-1.linux_glibc2.5.i386.rpm-bundle.tar;
a. 检查MySQL及相关RPM包,是否安装,如果有安装,则移除(rpm –e 名称)
1 | [[email protected] |
2 | mysql-libs-5.1.66-2.el6_3.x86_64 |
3 | [[email protected] |
b. 下载Linux对应的RPM包,如下:
1 | [[email protected] |
2 | total |
3 | -rw-r--r--. |
4 | -rw-r--r--. |
5 | -rw-r--r--. |
c. 安装MySQL
1 | [[email protected] |
2 | [[email protected] |
3 | [[email protected] |
4 | #修改配置文件位置 |
5 | [[email protected] |
d. 初始化MySQL及设置密码
1 | [[email protected] |
2 | [[email protected] |
3 | [[email protected] |
4 | # |
5 | [[email protected] |
6 | mysql> |
7 | mysql> |
8 | [[email protected] |
e. 远程登陆用户设置
01 | mysql> |
02 | mysql> |
03 | +-----------------------+------+-------------------------------------------+ |
04 | | |
05 | +-----------------------+------+-------------------------------------------+ |
06 | | |
07 | | |
08 | | |
09 | | |
10 | +-----------------------+------+-------------------------------------------+ |
11 |
12 | mysql> |
13 | mysql> |
14 | mysql> |
15 | mysql> |
f. 设置开机自启动
1 | [[email protected] |
2 | [[email protected] |
3 | mysql |
g. MySQL的默认安装位置
1 | /var/lib/mysql/ |
2 | /usr/share/mysql |
3 | /usr/bin |
4 | /etc/init.d/mysql |
h. 修改字符集和数据存储路径
配置/etc/my.cnf文件,修改数据存放路径、mysql.sock路径以及默认编码utf-8.
[html] view
plaincopy
- [client]
- password = 123456
- port = 3306
- default-character-set=utf8
- [mysqld]
- port = 3306
- character_set_server=utf8
- character_set_client=utf8
- collation-server=utf8_general_ci
- #(注意linux下mysql安装完后是默认:表名区分大小写,列名不区分大小写; 0:区分大小写,1:不区分大小写)
- lower_case_table_names=1
- #(设置最大连接数,默认为 151,MySQL服务器允许的最大连接数16384; )
- max_connections=1000
- [mysql]
- default-character-set = utf8
可查看字符集
show variables like ‘%collation%‘; show variables like ‘%char%‘;
I.如果想远程连接登录mysql则需要:授权,并关闭防火墙。
1.授权;在服务端进入mysql,输入以下命令
[GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘这里是你的密码‘ WITH GRANT OPTION;]
OR
[GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘‘ WITH GRANT OPTION;],
区别在于访问时是否需要写密码。
这句的作用是将所有的用户名,都设置能远程访问该mysql中所有的表,如果不想都放开,可以根据这个规则,来设置.grant 权限1,权限2,…权限n on 数据库名.表名 to用户名@用户地址 identified by‘口令’.
2.关闭防火墙
service iptables stop 关闭命令 chkconfig iptables off 永久关闭防火墙
两个命令同时运行,运行完成后查看防火墙关闭状态
service iptables status
到此,mysql就安装完成并配置成功了
时间: 2024-10-01 14:49:42