mysql5.6.35 二进制快速安装

mysql5.6.35 二进制快速安装

mysql


说明:

mysql安装在/data/mysql-5.6.35目录下;

下载

cd /data/
wget 
tar -zxf  mysql-5.6.35-linux-glibc2.5-x86_64.tar.gz 
mv mysql-5.6.35-linux-glibc2.5-x86_64 /data/mysql-5.6.35

新建mysql用户及设置权限

sudo useradd -s /sbin/nologin -M mysql
mkdir -pv  /data/mysql-5.6.35/{var,log}
touch /data/mysql-5.6.35/log/error.log
sudo chown -R mysql:mysql /data/mysql-5.6.35/

添加环境变量:

vim ~/.bash_profile
export PATH=/data/mysql-5.6.35/bin:$PATH
刷新一下环境
source ~/.bash_profile

初始化数据库,修改默认路径

cd /data/mysql-5.6.35/
sudo ./scripts/mysql_install_db --basedir=/data/mysql-5.6.35/ --datadir=/data/mysql-5.6.35/data/ --user=mysql

#如果安装在/usr/local/mysql/目录下,则两个sed不许执行,因为默认是/usr/local/目录下;
sudo sed -i ‘s#/usr/local/mysql#/data/mysql-5.6.35#g‘ /data/mysql-5.6.35/bin/mysqld_safe
sudo sed -i ‘s#/usr/local/mysql#/data/mysql-5.6.35#g‘ /data/mysql-5.6.35/support-files/mysql.server
sudo ln -s /data/mysql-5.6.35/bin/mysql /usr/bin

修改配置文件

sudo rm –f /etc/my.cnf
sudo vim /data/mysql-5.6.35/my.cnf
[client]
port       = 3306
socket   = /tmp/mysql.sock

[mysqld]
server-id  = 1
port      = 3306
basedir = /data/mysql-5.6.35
datadir  = /data/mysql-5.6.35/data
socket  = /tmp/mysql.sock
binlog-ignore-db  = mysql
log-bin  = /data/mysql-5.6.35/log/mysql-bin
innodb_file_per_table = 1
open_files_limit  = 65535
sql_mode  =NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
skip-host-cache
skip-name-resolve
max_connections  = 1024
wait_timeout  = 31536000
interactive_timeout = 31536000
character-set-server  =utf8mb4
collation-server  = utf8mb4_general_ci
init_connect  = ‘SET NAMES utf8mb4‘
lower_case_table_names = 1
log_error  = /data/mysql-5.6.35/log/error.log
slow_query_log = 1
slow_query_log_file = /data/mysql-5.6.35/log/slow.log

[mysqld_safe]
err-log= /data/mysql-5.6.35/log/mysqld_safe_err.log
pid-file = /data/mysql-5.6.35/var/mysqld.pid

将服务脚本复制到/etc/init.d目录下,并添加到服务列表

sudo cp  support-files/mysql.server  /etc/init.d/mysqld

开机自启动

sudo chkconfig --add mysqld
sudo chkconfig mysqld on
sudo chkconfig --list mysqld

启动mysql

sudo  /etc/init.d/mysqld start
ps –ef | grepmysql

设置mysql密码

sudo /data/mysql-5.6.35/bin/mysqladmin -u root password ‘newpassword‘

登录

mysql  -uroot   -p

配置安全策略:

[[email protected] mysql-5.6.35]#sudo /data/mysql-5.6.35/bin/mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL      
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
      
      
      In order to log into MySQL to secure it, we‘ll need the currentpassword for the root user.  Ifyou‘ve just installed MySQL, andyou haven‘t set the root password yet, the password will be blank,so you should just press enter here.
      
      Enter current password for root (enter for none):OK, successfully used password, moving on...
      
      Setting the root password ensures that nobody can log into the MySQLroot user without the proper authorisation.
      You already have a root password set, so you can safely answer ‘n‘.
      Change the root password? [Y/n] n 
      ... skipping.
      
      By default, a MySQL installation has an anonymous user, allowing anyoneto log into MySQL without having to have a user account created forthem.  This is intended only fortesting, and to make the installationgo a bit smoother.  You shouldremove them before moving into aproduction environment.
      
      Remove anonymous users? [Y/n] y 
      ... Success!
      
      Normally, root should only be allowed to connect from ‘localhost‘.  Thisensures that someone cannot guess at the root password from the network.
      Disallow root login remotely? [Y/n] n 
      ... Success!
      
      By default, MySQL comes with a database named ‘test‘ that anyone canaccess.  This is also intended only fortesting, and should be removedbefore moving into a production environment.
      Remove test database and access to it? [Y/n] y 
       - Dropping test database... 
       ... Success! 
       - Removing privileges on testdatabase... 
       ... Success!
      
      Reloading the privilege tables will ensure that all changes made so farwill take effect immediately.
      
      Reload privilege tables now? [Y/n] y 
      ... Success!
      
      All done!  If you‘ve completed allof the above steps, your MySQLinstallation should now be secure.
      Thanks for using MySQL!
      
      Cleaning up...
      [[email protected] mysql-5.6.35]#
时间: 2024-12-31 10:45:24

mysql5.6.35 二进制快速安装的相关文章

CentOs7 64位 mysql-5.6.35源码安装

首先安装依赖包,避免在安装过程中出现问题 [ro[email protected] liuzhen]# yum -y install gcc gcc-c++ [[email protected] liuzhen]# yum -y install cmake [[email protected] liuzhen]# yum -y install ncurses-devel [[email protected] liuzhen]# yum -y install autoconf [[email pr

MySQL-5.6.x二进制版本安装记录

一.操作系统安装环境 1. 操作系统:CentOS 6.7 x86_64, 操作系统基本环境提前准备过程略过. 2. 二进制MySQL版本:mysql-5.6.29-linux-glibc2.5-x86_64.tar.gz 3. 本安装过程也适合mysql-5.5.x二进制版本的安装过程参考. 二.安装mysql-5.6.29-linux-glibc2.5-x86_64 1. 下载编译版本mysql安装 wget http://mirrors.sohu.com/mysql/MySQL-5.6/m

Linux下MySQL5.7.18二进制包安装(无默认配置文件my_default.cnf)

本文出处:http://www.cnblogs.com/wy123/p/6815049.html 最新在学习MySQL,纯新手,对Linux了解的也不多,因为是下载的最新版的MySQL(MySQL5.7.18)二进制包,CentOS7.2下测试安装,方便以后折腾.大概步骤如下,安装删除反复折腾了几遍,按照以下步骤,应该没啥问题了.也没有想象中的复杂,大部分步骤都是参考网上的,照做就是了,出错的话,多尝试,多查资料. 操作系统版本 创建mysql组和用户 下载最新版的MySQL 5.7.18二进制

MySQL-5.5之二进制包安装

环境: [[email protected] ~]# cat /etc/redhat-release CentOS release 6.8 (Final) [[email protected] ~]# uname -r 2.6.32-642.el6.x86_64 开始安装配置: [[email protected] ~]# cd /usr/local/src/ [[email protected] src]# wget http://mirrors.sohu.com/mysql/MySQL-5.

CentOS7.4下MySQL5.7.28二进制方式安装

Linux系统版本:CentOS7.4MySQL版本:5.7.28在Linux平台有RPM包.二进制包.源码包3中安装方式,这一篇文章主要是以RPM包为例来介绍如何在Linux平台下进行MySQL的安装.下载地址:https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.28-linux-glibc2.12-x86_64.tar.gz 具体安装步骤如下:(1)首先卸载mariadb,不然后面会和安装mysql需要的库冲突: [[email prot

二进制方式安装MySQL数据库

  对于一般用户而言喜欢编译安装或者yum安装,在本人工作中,一般都是用二进制快速安装,这里讲安装步骤记录如下: 1.下载二进制文件到目录/home/www/tools下 [[email protected] tools]# ll total 102 -rw-r--r-- 1 root   root  186722932 Apr 22  2015 mysql-5.5.32-linux2.6-x86_64.tar.gz [[email protected] tools]# 2.创建/applica

MySQL5.6.35数据库多实例二进制安装

一.软件包 wget -q http://mirrors.sohu.com/mysql/MySQL-5.6/mysql-5.6.35-linux-glibc2.5-x86_64.tar.gz 二.解压移动 tar xf mysql-5.6.35-linux-glibc2.5-x86_64.tar.gz mkdir -p /application/mysql mv mysql-5.6.35-linux-glibc2.5-x86_64 /application/mysql/mysql-5.6.35

Deepin 15.4/Ubuntu 14 源码编译安装 MySQL-5.6.35

在 Ubuntu 下,先前一直是 二进制包解压安装,详情参考: http://www.cnblogs.com/phpgo/p/5680906.html 现改为 源码编译安装: #!/bin/bash # 安装 依赖库 sudo apt-get -y install make cmake gcc g++ bison openssl libssl-dev libncurses5-dev # 创建 数据 文件夹 sudo mv /fiisoo/mysql /fiisoo/mysql.$(date "+

二进制方式快速安装MySQL数据库命令集合

镜像源: http://mirrors.sohu.com/ 1.二进制方式快速安装MySQL数据库命令集合 1.安装mysqlcd /usr/local/srcwget http://mirrors.sohu.com/mysql/MySQL-5.5/mysql-5.5.48-linux2.6-x86_64.tar.gzls mysql-5.5.32-linux2.6-x86_64.tar.gztar xf mysql-5.5.32-linux2.6-x86_64.tar.gz mv mysql-