返回顶部
首页 > 资讯 > 数据库 >CentOS安装使用二进制方式mysql5.6笔记
  • 942
分享到

CentOS安装使用二进制方式mysql5.6笔记

2024-04-02 19:04:59 942人浏览 八月长安
摘要

CentOS安装使用二进制方式mysql5.6笔记 1、上传安装包--使用root用户 2、解压安装包--使用root用户 cd /usr/local/ tar xzvf Mysql-5.6.

CentOS安装使用二进制方式mysql5.6笔记

1、上传安装包--使用root用户

2、解压安装包--使用root用户
cd /usr/local/
tar xzvf Mysql-5.6.23-linux-glibc2.5-x86_64.tar.gz
mv mysql-5.6.23-linux-glibc2.5-x86_64 mysql

3、创建mysql管理用户组与用户--使用root用户
   groupadd -g 101 dba
   useradd -u 514 -g dba -G root -d /usr/local/mysql mysqladmin
   验证:id mysqladmin
   
4、修改mysqladmin用户密码--使用root用户
   passwd mysqladmin
   提示:
     Changing passWord for user mysqladmin.
New UNIX password: 
BAD PASSWORD: it is too simplistic/systematic
Retype new UNIX password: 
passwd: all authentication tokens updated successfully.
 
5、copy 环境变量配置文件至mysqladmin用户的home目录中,为了以下步骤配置个人环境变量--使用root用户
   cp /etc/skel/.* /usr/local/mysql
   提示:
     cp: omitting directory `/etc/skel/.'
     cp: omitting directory `/etc/skel/..'
     cp: omitting directory `/etc/skel/.mozilla'

6、修改/etc/my.cnf文件,并删除原文件内容,将以下内容填写到my.cnf文件中--使用root用户
   vi /etc/my.cnf
   
[client]
port            = 3306
Socket          = /usr/local/mysql/data/mysql.sock
 
[mysqld]
port            = 3306
socket          = /usr/local/mysql/data/mysql.sock


skip-external-locking
key_buffer_size = 256M
sort_buffer_size = 2M
read_buffer_size = 2M
read_rnd_buffer_size = 4M
query_cache_size= 32M
max_allowed_packet = 16M
myisam_sort_buffer_size=128M
tmp_table_size=32M


table_open_cache = 512
thread_cache_size = 8
wait_timeout = 86400
interactive_timeout = 86400
max_connections = 600


# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 32


#isolation level and default engine 
default-storage-engine = INNODB
transaction-isolation = READ-COMMITTED


server-id  = 1
basedir     = /usr/local/mysql
datadir     = /usr/local/mysql/data
pid-file     = /usr/local/mysql/data/hostname.pid


#open perfORMance schema
log-warnings
sysdate-is-now


binlog_format = MIXED
log_bin_trust_function_creators=1
log-error  = /usr/local/mysql/data/hostname.err
log-bin=/usr/local/mysql/arch/mysql-bin
#other logs
#general_log =1
#general_log_file  = /usr/local/mysql/data/general_log.err
#slow_query_log=1
#slow_query_log_file=/usr/local/mysql/data/slow_log.err


#for replication slave
#log-slave-updates 
#sync_binlog = 1


#for innodb options 
innodb_data_home_dir = /usr/local/mysql/data/
innodb_data_file_path = ibdata1:500M:autoextend
innodb_log_group_home_dir = /usr/local/mysql/arch
innodb_log_files_in_group = 2
innodb_log_file_size = 200M


innodb_buffer_pool_size = 2048M
innodb_additional_mem_pool_size = 50M
innodb_log_buffer_size = 16M


innodb_lock_wait_timeout = 100
#innodb_thread_concurrency = 0
innodb_flush_log_at_trx_commit = 1
innodb_locks_unsafe_for_binlog=1


#innodb io features: add for mysql5.5.8
performance_schema
innodb_read_io_threads=4
innodb-write-io-threads=4
innodb-io-capacity=200
#purge threads change default(0) to 1 for purge
innodb_purge_threads=1
innodb_use_native_aio=on


#case-sensitive file names and separate tablespace
innodb_file_per_table = 1
lower_case_table_names=1


[mysqldump]
quick
max_allowed_packet = 16M


[mysql]
no-auto-rehash


[mysqlhotcopy]
interactive-timeout


[myisamchk]
key_buffer_size = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M

7、修改/etc/my.cnf文件用户组与用户、权限--使用root用户
   cd /usr/local
   chown  mysqladmin:dba /etc/my.cnf
   chmod  640 /etc/my.cnf
   验证:
     ll my.cnf
     -rw-r----- 1 mysqladmin dba 2201 Dec 19 11:19:40 my.cnf

8、修改mysql安装文件用户组与用户、权限--使用root用户
   chown -R mysqladmin:dba /usr/local/mysql
   chmod -R 755 /usr/local/mysql
   su - mysqladmin
   pwd显示:/usr/local/mysql

9、创建arch目录--使用mysqladmin用户
   cd /usr/local/mysql
   mkdir arch

10、检查gcc、libaio、perl以及perl-devel包是否安装
   rpm -qa|grep GCc libaio perl perl-devel
   如未安装,则使用yum方式安装:yum -y install libaio、yum -y install gcc、yum -y install perl

11、二进制安装
   scripts/mysql_install_db  --user=mysqladmin --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
   提示:
     Installing MySQL system tables...2017-12-19 11:39:15 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
     OK
     Filling help tables...2017-12-19 11:39:15 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
     OK
     
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

  ./bin/mysqladmin -u root password 'new-password'
  ./bin/mysqladmin -u root -h sht-sgmhadoopnn-01 password 'new-password'

Alternatively you can run:

  ./bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:

  cd . ; ./bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl

  cd mysql-test ; perl mysql-test-run.pl

Please report any problems at Http://bugs.mysql.com/

The latest information about MySQL is available on the WEB at

  http://www.mysql.com

Support MySQL by buying support/licenses at http://shop.mysql.com
New default config file was created as ./my.cnf and
will be used by default by the server when you start it.
You may edit this file to change server settings

WARNING: Default config file /etc/my.cnf exists on the system
This file will be read by default by the MySQL Server
If you do not want to use this, either remove it, or use the
--defaults-file argument to mysqld_safe when starting the server


12、启动mysql--使用mysqladmin用户
    su - mysqladmin
    cd /usr/local/mysql
    rm -rf my.cnf
    bin/mysqld_safe &
    验证是否启动:ps -ef|grep mysqld、netstat -tulnp | grep mysql

13、登录mysql,并修改mysql中的root密码内容--使用mysqladmin用户
   mysql  
   mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
注:如mysql数据库名称,则退出(exit)使用:mysql -uroot -p,提示输入密码时直接回车
   mysql> use mysql
   mysql> update user set password=password('123456') where user='root';
   mysql> select host,user,password from user;
   mysql> delete from user where user='';
   mysql> select host,user,password from user;
   mysql> flush privileges;
 若泽大数据交流群:671914634 
您可能感兴趣的文档:

--结束END--

本文标题: CentOS安装使用二进制方式mysql5.6笔记

本文链接: https://lsjlt.com/news/48303.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • CentOS安装使用二进制方式mysql5.6笔记
    CentOS安装使用二进制方式mysql5.6笔记 1、上传安装包--使用root用户 2、解压安装包--使用root用户 cd /usr/local/ tar xzvf mysql-5.6....
    99+
    2024-04-02
  • mysql5.7二进制安装笔记
    检测系统是否已经安装过mysql或其依赖,若已装过要先将其删除,否则第4步使用yum安装时会报错: [root@mysql01 Packages]# yum list installed |grep mys...
    99+
    2024-04-02
  • mysql5.6单实例安装(二进制)
    1.下载二进制安装包 mysql-5.6.39-linux-glibc2.12-x86_64.tar.gz tar -xvf mysql-5.6.39-linux-glibc2.12-x86_64.tar....
    99+
    2024-04-02
  • mysql学习笔记(4-通用二进制格式安装MariaDB)
    安装和使用MariaDB: 安装方式:     (1) rpm包;     (a) 由OS的发...
    99+
    2024-04-02
  • MySQL5.6--------基于CentOS6二进制包安装
    1. 背景   * MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于 Oracle 旗下产品。MySQL 是最流行的关系型数据库管理系统之一,在...
    99+
    2024-04-02
  • CentOS6.6安装二进制压缩包mysql5.6
    本篇内容主要讲解“CentOS6.6安装二进制压缩包mysql5.6”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“CentOS6.6安装二进制压缩包mysql5...
    99+
    2024-04-02
  • CentOS 6 下RPM方式安装MySQL5.6
    1. 下载Linux对应的RPM包,如:CentOS6.7_64对应的RPM包,如下: [root@mysql ~]# ll 总用量 113808 -rw-------. 1 root root  ...
    99+
    2024-04-02
  • CentOS 6.9中如何进行二进制方式安装mysql5.7.21
    今天就跟大家聊聊有关CentOS 6.9中如何进行二进制方式安装mysql5.7.21,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。前言比 ...
    99+
    2024-04-02
  • Centos 6.5如何使用二进制格式包安装MariaDB
    这篇文章主要讲解了“Centos 6.5如何使用二进制格式包安装MariaDB”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Centos 6.5如何使用二进...
    99+
    2024-04-02
  • CentOS 7以通用二进制格式安装mariadb
    系统环境:CentOS 7 1611(系统安装完成后自带有mariadb)mariadb版本:mariadb-5.5.56-linux-x86_64.tar.gz(Generic Linux) &...
    99+
    2024-04-02
  • centos7环境下二进制安装包怎么安装mysql5.6
    这篇文章主要介绍centos7环境下二进制安装包怎么安装mysql5.6,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!本文实例讲述了centos7环境下二进制安装包安装 mysql5...
    99+
    2024-04-02
  • CentOS-6上安装二进制Mariadb
    前言:    mariadb官方网站上提供了三种不同形式的程序包:源码包版、程序包管理器版、和二进制版,如下图所示。二进制版是由官方编译好的绿色版,相比源码包版安装更...
    99+
    2024-04-02
  • Linux Centos7安装MySQL5.5(二进制方式安装)
    Linux Centos7安装MySQL5.5(二进制方式安装) 一、在/app目录下下载mysql-5.5.54-linux2.6-x86_64.tar.gz` [root@test /]# cd /ap...
    99+
    2024-04-02
  • 01-mysql安装篇(rpm方式安装+二进制方式安装)
    01-mysql安装篇(rpm方式安装+二进制方式安装) 一、rpm方式安装1、检查是否安装了mariadb2、下载mysql3、上传解压4、安装5、检查安装6、开启mysql服务7、登陆my...
    99+
    2023-09-07
    mysql 数据库 mysql安装 linux 运维
  • CentOS 7.4 自定义单实例 二进制方式 安装mysql5.6.39
    系统平台: CentOS release 7.4 (Final) 内核 3.10.0-693.el7.x86_64 1.去官网下载二进制包 https://dev.mysql.co...
    99+
    2024-04-02
  • 如何使用二进制tar包方式安装Percona server
    这篇文章给大家分享的是有关如何使用二进制tar包方式安装Percona server的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。Installing Percona Serve...
    99+
    2024-04-02
  • MySQL5.6二进制软件包编译安装详解(三)
    一、软件环境 [root@localhost ~]# uname -r 3.10.0-862.el7.x86_64 [root@localhost ~]# cat /etc/redhat-release ...
    99+
    2024-04-02
  • centos系统如何使用二进制包安装mysql 5.6
    本文主要给大家简单讲讲centos系统如何使用二进制包安装mysql 5.6 ,相关专业术语大家可以上网查查或者找一些相关书籍补充一下,这里就不涉猎了,我们就直奔主题吧,希望centos系统如何使...
    99+
    2024-04-02
  • 二进制安装mysql 5.7、mariadb (附yum安装方式)
     前言:        本文以mariadb为例进行讲解,安装mysql同理,并以通过测试。安装前查找系统已安装的相关包(rpm -qa|grep -e "mysql" -e "mariadb")并进行卸载...
    99+
    2024-04-02
  • centos6上以二进制方式安装mariadb5.5
    准备mariadb-5.5.57-linux-x86_64.tar.gz二进制程序包此包是经过编译的,也就是说我们要在特定的目录下安装;步骤1、准备mysql用户mkdir /app/data#此目录是存放...
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作