mysql5.7.17安装配置

一、创建msql用户

#添加运行mysql的用户,禁止该用户登录系统
[[email protected] ~]# useradd  mysql -s /sbin/nologin

二、创建相关目录

#创建目录
[[email protected] ~]# mkdir /data/mysql/mysql3306/{conf,data,logs,tmp} -p

#修改目录权限
[[email protected] ~]# chown -R mysql.mysql /data/mysql

三、创建配置文件

[[email protected] ~]# cat /data/mysql/mysql3306/conf/mysql_3306.cnf 
#my.cnf
[client]
port            = 3306
socket          = /tmp/mysql3306.sock

[mysql]
prompt="\\[email protected]\\h [\\d]>" 
#pager="less -i -n -S"
#tee=/opt/mysql/query.log
no-auto-rehash

[mysqld]
#misc
user = mysql
basedir = /usr/local/mysql
datadir = /data/mysql/mysql3306/data
port = 3306

socket = /tmp/mysql3306.sock
event_scheduler = 0

tmpdir = /data/mysql/mysql3306/tmp
#timeout
interactive_timeout = 300
wait_timeout = 300

#character set
character-set-server = utf8

open_files_limit = 65535
max_connections = 100
max_connect_errors = 100000
lower_case_table_names =1

#symi replication

#rpl_semi_sync_master_enabled=1
#rpl_semi_sync_master_timeout=1000 # 1 second
#rpl_semi_sync_slave_enabled=1

#logs
log-output=file
slow_query_log = 1
slow_query_log_file = slow.log
log-error = error.log
log_warnings = 2
pid-file = mysql.pid
long_query_time = 1
#log-slow-admin-statements = 1
#log-queries-not-using-indexes = 1
log-slow-slave-statements = 1

#binlog
#binlog_format = STATEMENT
binlog_format = row
server-id = 1003306
log-bin = /data/mysql/mysql3306/logs/mysql-bin
max_binlog_size = 256M
sync_binlog = 0
expire_logs_days = 10
#procedure 
log_bin_trust_function_creators=1

#
gtid-mode = on
enforce-gtid-consistency=1

#relay log
skip_slave_start = 1
max_relay_log_size = 128M
relay_log_purge = 1
relay_log_recovery = 1
relay-log=relay-bin
relay-log-index=relay-bin.index
log_slave_updates
#slave-skip-errors=1032,1053,1062
#skip-grant-tables

#buffers & cache
table_open_cache = 2048
table_definition_cache = 2048
table_open_cache = 2048
max_heap_table_size = 96M
sort_buffer_size = 128K
join_buffer_size = 128K
thread_cache_size = 200
query_cache_size = 0
query_cache_type = 0
query_cache_limit = 256K
query_cache_min_res_unit = 512
thread_stack = 192K
tmp_table_size = 96M
key_buffer_size = 8M
read_buffer_size = 2M
read_rnd_buffer_size = 16M
bulk_insert_buffer_size = 32M

#myisam
myisam_sort_buffer_size = 128M
myisam_max_sort_file_size = 10G
myisam_repair_threads = 1

#innodb
innodb_buffer_pool_size = 100M
innodb_buffer_pool_instances = 1
innodb_data_file_path = ibdata1:100M:autoextend
innodb_flush_log_at_trx_commit = 2
innodb_log_buffer_size = 8M
innodb_log_file_size = 100M
innodb_log_files_in_group = 3
innodb_max_dirty_pages_pct = 50
innodb_file_per_table = 1
innodb_rollback_on_timeout
innodb_io_capacity = 2000
transaction_isolation = READ-COMMITTED
innodb_flush_method = O_DIRECT

四、初始化mysql

#开始初始化
[[email protected] ~]# /usr/local/mysql-5.7.17-linux-glibc2.5-x86_64/bin/mysqld --defaults-file=/data/mysql/mysql3306/conf/mysql_3306.cnf --basedir=/usr/local/mysql-5.7.17-linux-glibc2.5-x86_64/ --initialize

#查看初始化后的结果
[[email protected] ~]# ll /data/mysql/mysql3306/data/
total 409648
-rw-r----- 1 mysql mysql        56 Jun 10 17:27 auto.cnf
-rw-r----- 1 mysql mysql      6236 Jun 10 17:27 error.log
-rw-r----- 1 mysql mysql       413 Jun 10 17:27 ib_buffer_pool
-rw-r----- 1 mysql mysql 104857600 Jun 10 17:27 ibdata1
-rw-r----- 1 mysql mysql 104857600 Jun 10 17:27 ib_logfile0
-rw-r----- 1 mysql mysql 104857600 Jun 10 17:27 ib_logfile1
-rw-r----- 1 mysql mysql 104857600 Jun 10 17:27 ib_logfile2
drwxr-x--- 2 mysql mysql      4096 Jun 10 17:27 mysql
drwxr-x--- 2 mysql mysql      8192 Jun 10 17:27 performance_schema
-rw-r----- 1 mysql mysql       217 Jun 10 17:27 slow.log
drwxr-x--- 2 mysql mysql      8192 Jun 10 17:27 sys

#获取root用户密码
[[email protected] ~]# grep password /data/mysql/mysql3306/data/error.log |awk ‘{print $11}‘
_:;II,r0I;oo

五、启动mysql

[[email protected] ~]# /usr/local/mysql-5.7.17-linux-glibc2.5-x86_64/bin/mysqld --defaults-file=/data/mysql/mysql3306/conf/mysql_3306.cnf &
[1] 14632
[[email protected] ~]# ps aux |grep mysql |grep -v grep
mysql     14632  2.7  9.8 1067652 184596 pts/0  Sl   17:30   0:00 /usr/local/mysql-5.7.17-linux-glibc2.5-x86_64/bin/mysqld --defaults-file=/data/mysql/mysql3306/conf/mysql_3306.cnf
[[email protected] ~]# ss -tnl |grep 3306
LISTEN     0      70          :::3306                    :::*  

#登录mysql
[[email protected] ~]# /usr/local/mysql-5.7.17-linux-glibc2.5-x86_64/bin/mysql -u root -p -S /tmp/mysql3306.sock
Enter password:         #输入上文中获取到的密码
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.17-log

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

#修改root密码
mysql> alter user ‘root‘@‘localhost‘ identified by ‘123456‘;
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

#用新密码重新登录
[[email protected] ~]# /usr/local/mysql-5.7.17-linux-glibc2.5-x86_64/bin/mysql -u root -p -S /tmp/mysql3306.sock
Enter password:         #输入新设置的密码,测试正常
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.17-log MySQL Community Server (GPL)

Copyright (c) 2000, 2016, 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>
时间: 2024-10-08 11:05:07

mysql5.7.17安装配置的相关文章

mysql5.7.17安装方式-与报错解决方式

mysql5.7.17安装方式-与报错解决方式 重点: 出错的地方:在于第三步,因为哪里要检查一下,需要安装微软的一些东西,如果直接跳过会导致后面配置的出错,死活配置不了. 卸载:进入注册表卸载,不然你直接到控制面板哪里会卸载不干净,导致你重新安装的时候出错. 勾选同意,然后点下一步. 然后根据个人需求选择一个安装,一般默认就可以了. 2.左边是你电脑上可以连接到mysql的软件,比如Visual Studio,Eclipse,PyCharm等,中间是需求的版本或者额外组件,右边是状态. 选择一

CentOS7服务器中apache、php7以及mysql5.7的安装配置代码

CentOS7服务器中apache.php7以及mysql5.7的配置代码如下所示: yum upgradeyum install net-tools 安装apache (http://m.8682222.com)关闭SELinux编辑器打开 etc/selinux/config 文件,找到 SELINUX=enforcing 字段,将其改成 SELINUX=disabled ,并重启设备.yum -y install httpd mod_ssl配置防火墙firewall-cmd --perma

lnmp之mysql5.7.17安装

先执行命令yum install cmake mysql5.7采用的是cmake安装(更先进的configure) wget下载目录(到清华大学的镜像站下载) [[email protected] local]# cd /usr/local/src [[email protected] src]# wget https://mirrors.tuna.tsinghua.edu.cn/mysql/downloads/MySQL-5.7/mysql-5.7.17.tar.gz 解压 [[email p

1.MySQL5.7.19 安装配置踩过的坑

这篇文章主要是分享 安装MySQL时遇到的一些问题,以及解决方法. 第一步:下载MySQL 下载地址:https://dev.mysql.com/downloads/mysql/5.1.html#downloads 我下载的是5.7.19版本,下载地址里面也只有解压版,下载后再进行环境变量的配置就可以. 2.解压并安装Mysql5.7.19 (1)将下载的包解压到指定的路径,自己可以指定路径,我直接解压到了D盘,解压到了                         D:\mysq的目录下.则

Mysql-5.7.21安装配置

搞开发多年,其实MySql前前后后安装配置了无数次,但是每次都需要到网上搜教程,折腾半天才搞定,这次索性把整个过程全部记录下来,以便以后查阅. 下载 到MySql官网,导航找到DOWNLOADS>>Community>>MySQL Community Server页面,也可以直接点击此处,选择相应的Mysql版本的zip包,我这里是mysql-5.7.21-winx64.zip. 安装配置 下载好压缩包之后直接解压到将要存放的目录: 在根目录新建my.ini文件(并没有所谓的my-

Mysql5.7.17安装部署

1.创建mysql用户 groupadd mysql useradd -r -g mysql -s /bin/false mysql 2.安装MySQL依赖包下载5.7.17包 yum install -y libaio cd /usr/local/src/ wget http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-5.7.17-linux-glibc2.5-x86_64.tar.gz tar -zxf mysql-5.7.17-linux-glibc

Mysql5.7.14安装配置

Mysql5.7.14免安装版配置方法: 运行 在命令行中输入 mysqld install mysql5.7 安装成功后,启动mysql 在命令行中输入 net start mysql5.7 这个时候会出现服务无法启动的问题,原因是因为oracle把data目录给删除了 我们可以用 mysqld  --initialize 先初始化 data目录,再启动,就可以了

centos7.2 环境下 mysql-5.1.73 安装配置

安装mysql,安装前准备 如果mysql用户不存在,那么添加mysql用户 groupadd mysql useradd -g mysql mysql mysql编译安装 tar -zxvf mysql-5.1.73.tar.gz cd mysql-5.1.73 yum install ncurses ncurses-devel ./configure '--prefix=/usr/local/mysql' '--without-debug' '--with-charset=utf8' '--

mysql5.7的安装配置

mysql官方下载地址: https://dev.mysql.com/downloads/mysql/ 安装步骤: 1.下载tar包到opt目录下 wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.27-el7-x86_64.tar.gz /opt/ 2.查看机器是否安装过其他版本的mysql # 卸载了其他的mysql版本 [[email protected]-minion2 opt]# rpm -qa|grep mariadb