centos7 源码安装mysql5.7.22


1. 删除centos7 自带的mysql数据库

   # find / -name mariadb*    查询已安装的mysql

  查询结果:    /etc/ld.so.conf.d/mariadb-x86_64.conf

                        /usr/share/doc/mariadb-libs-5.5.56

   # rpm -e mariadb-libs-5.5.56 --nodeps     卸载mysql

    # find / -name mariadb*    再次  查询已安装的mysql  无结果,说明已删除自带mysql

2.安装依赖包

yum -y install make gcc-c++ cmake bison-devel ncurses-devel

3.下载安装包

下载源码包并解压,这里下载的是带boost的包,MySQL5.7.5之后需要boost库支持,所以这里直接下载带boost的源码包  mysql-boost-5.7.22.tar.gz

 tar   --zxvf    mysql-boost-5.7.22.tar.gz

 mkdir  /data/mysql   创建目录

进入解压之后的,生成的mysql源代码目录中

cmake \

-DCMAKE_INSTALL_PREFIX=/usr/local/mysql \          #[MySQL安装的根目录]

-DMYSQL_DATADIR=/data/mysql \                      #[MySQL数据库文件存放目录]

-DSYSCONFDIR=/etc \                                #[MySQL配置文件所在目录]

-DMYSQL_UNIX_ADDR=/usr/local/mysql/mysql.sock \    #[MySQL的sock文件目录]

-DEXTRA_CHARSETS=all \                              #[使MySQL支持所有的扩展字符]

-DDEFAULT_CHARSET=utf8  \                          #[设置默认字符集为utf8]

-DDEFAULT_COLLATION=utf8_general_ci  \              #[设置默认字符校对]

-DWITH_BOOST=boost \                                            #[指定boost安装路径]

-DWITH_MYISAM_STORAGE_ENGINE=1 \                   

-DWITH_INNOBASE_STORAGE_ENGINE=1 \                 

-DMYSQL_TCP_PORT=3306 \                            #[MySQL的监听端口]

-DENABLED_LOCAL_INFILE=1 \                          #[启用加载本地数据]

-DWITH_PARTITION_STORAGE_ENGINE=1 \

-DWITH_EMBEDDED_SERVER=OFF \

-DWITH_SYSTEMD=1                                            #[用systemd管理mysql]



make  &&  make  install

4.创建mysql用户,并更改权限

groupadd     mysql

useradd  -g  mysql   mysql

chown -R mysql: /usr/local/mysql/

chown -R mysql: /data/mysql

将mysqld.servie复制到/usr/lib/systemd/system/

cp /usr/local/mysql/usr/lib/systemd/system/mysqld.service /usr/lib/systemd/system/

5.创建配置文件

vim /etc/my.cnf

内容:

[mysqld]v

basedir=/usr/local/mysql

datadir=/data/mysql

socket=/usr/local/mysql/mysql.sock

log_error=/log/mysql/mysql.log

server-id=1

explicit_defaults_for_timestamp=true

6.创建log目录与pid目录,并修改权限

mkdir -p /log/mysql

chown -R mysql: /log/mysql

mkdir -p /var/run/mysqld

ls  -ld   /var/run/mysqld/

chown -R mysql: /var/run/mysqld      #可以通过grep pid /usr/lib/systemd/system/mysqld.service查看pid文件位置

8.添加环境变量

echo "export PATH=/usr/local/mysql/bin:\$PATH" > /etc/profile.d/mysql.sh

source /etc/profile

9.初始化 mysql 数据库

/usr/local/mysql/bin/mysqld --initialize-insecure --user=mysql --basedir=/usr/local/mysql --datadir=/data/mysql

注释:--initialize 会生成一个随机密码,而 -–initialize-insecure 不会生成密码,在MySQL安全配置向导mysql_secure_installation设置密码时,可自由选择 mysql 密码等级。--datadir目标目录下不能有数据文件。

10. 启动数据库

systemctl  start  mysqld

systemctl status mysqld


启动mysql后

9.配置安全向导

开始: mysql_secure_installation  

[root@MySql ~]# mysql_secure_installation

Securing the MySQL server deployment.

Connecting to MySQL using a blank password.

VALIDATE PASSWORD PLUGIN can be used to test passwords

and improve security. It checks the strength of password

and allows the users to set only those passwords which are

secure enough. Would you like to setup VALIDATE PASSWORD plugin?

Press y|Y for Yes, any other key for No: y

There are three levels of password validation policy:

LOW    Length >= 8

MEDIUM Length >= 8, numeric, mixed case, and special characters

STRONG Length >= 8, numeric, mixed case, special characters and dictionary                  file

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 0

Please set the password for root here.

New password:

Re-enter new password:

Estimated strength of the password: 100

Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y

By default, a MySQL installation has an anonymous user,

allowing anyone to log into MySQL without having to have

a user account created for them. This is intended only for

testing, and to make the installation go a bit smoother.

You should remove them before moving into a production

environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : y

Success.

Normally, root should only be allowed to connect from

'localhost'. This ensures that someone cannot guess at

the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : n

... skipping.

By default, MySQL comes with a database named 'test' that

anyone can access. This is also intended only for testing,

and should be removed before moving into a production

environment.

Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y

- Dropping test database...

Success.

- Removing privileges on test database...

Success.

Reloading the privilege tables will ensure that all changes

made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y

Success.

All done!

10.测试链接

[root@MySql ~]# mysql -u root -p

Enter password:

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 4

Server version: 5.7.22 Source distribution

Copyright (c) 2000, 2018, 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              |

| performance_schema |

| sys                |

+--------------------+

4 rows in set (0.00 sec)

mysql>

11. 开放 Root 远程连接权限

mysql> use mysql

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

Database changed

mysql> select host,user from user;

+-----------+---------------+

| host      | user          |

+-----------+---------------+

| localhost | mysql.session |

| localhost | mysql.sys    |

| localhost | root          |

+-----------+---------------+

3 rows in set (0.00 sec)

mysql> grant all privileges on *.* to 'root'@'%' identified by 'password';

Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> flush privileges;

Query OK, 0 rows affected (0.01 sec)

mysql> select host,user from user;

+-----------+---------------+

| host      | user          |

+-----------+---------------+

| %        | root          |

| localhost | mysql.session |

| localhost | mysql.sys    |

| localhost | root          |

+-----------+---------------+

4 rows in set (0.00 sec)


12.开放3306端口

firewall-cmd --add-port=3306/tcp --permanent

firewall-cmd --reload


update user set Host = '%' where User="root";

GRANT ALL PRIVILEGES ON * TO 'root'@'%' IDENTIFIED BY '723945031' WITH GRANT OPTION;    

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342

推荐阅读更多精彩内容

  • 你是我做到一半的梦 我寻到了一个快乐 却差一个结局 当幸福呈差一纸之距 你是你 你是我的梦 而我是我 是抱有一个梦...
    草芥人阅读 157评论 0 0
  • 人生就该做自己想做的事情,那样你会更加努力,每个人都有自己的生活,你怎样做就会像怎样的发展,至少你不会在20、30...
    肯豆花阅读 135评论 0 0
  • 网购了一堂张遇升的《精力管理》的课程。 其中,他讲究科学的吃时,又提及You are what you eat.吃...
    锦瑟_db50阅读 370评论 0 0