最近在学习mysql,发现其实在linux下安装的时候还是挺麻烦的,于是做个记录和大家分享,不足之处,欢迎留言指正

一,下载并上传至linux

首先下载tar文件放到/usr/local/链接:http://pan.baidu.com/s/1kVtnpdX 密码:3r40

解压到指定目录mkdir mysql

tar xvf MySQL-5.6.30-1.linux_glibc2.5.x86_64.rpm-bundle.tar -C /usr/local/mysql/

二,安装到mysql-client,mysql-server

切换到mysql目录cd /usr/local/mysql

安装mysql-clientrpm -ivh MySQL-client-5.6.30-1.linux_glibc2.5.x86_64.rpm

安装server

yum install MySQL-server-5.6.30-1.linux_glibc2.5.x86_64.rpm

注意:yum install 和rpm -ivh差不多,猜想差别是yum会自动安装依赖吧。

我遇到的问题

Transaction check error:

file /usr/share/mysql/charsets/README from install of MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 conflicts with file from package mariadb-libs- 1:5.5.41-2.el7_0.x86_64

file /usr/share/mysql/czech/errmsg.sys from install of MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 conflicts with file from package mariadb-libs-1:5.5.41-2.el7_0.x86_64

file /usr/share/mysql/danish/errmsg.sys from install of MySQL-server-5...

解决 执行:yum remove mariadb-libs 和yum remove mysql-libs 也不知哪个起到了作用

安装日志的一段(生成一个随机密码到/root/.mysql_secret)A RANDOM PASSWORD HAS BEEN SET FOR THE MySQL root USER !

You will find that password in '/root/.mysql_secret'.

(一个随机的root密码已经生成被放在'/root/.mysql_secret文件中)

You must change that password on your first connect,

no other statement but 'SET PASSWORD' will be accepted.

See the manual for the semantics of the 'password expired' flag.

Also, the account for the anonymous user has been removed.

In addition, you can run:

/usr/bin/mysql_secure_installation

which will also give you the option of removing the test database.

This is strongly recommended for production servers.

See the manual for more instructions.

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 /usr/my.cnf and

will be used by default by the server when you start it.

You may edit this file to change server settings

验证中 : MySQL-server-5.6.30-1.linux_glibc2.5.x86_64 1/1

已安装:

MySQL-server.x86_64 0:5.6.30-1.linux_glibc2.5

完毕!

启动mysql

service mysql start

三,初始化

查看刚才生成的密码

[root@localhost xiaoli]# cat /root/.mysql_secret

通过 mysql_secure_installation执行一些初始化

[root@localhost xiaoli]# 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 current

password for the root user. If you've just installed MySQL, and

you haven't set the root password yet, the password will be blank,

so you should just press enter here.

(下面的意思,输入mysql生成的密码)

Enter current password for root (enter for none):

输入密码:TtuLj3wmj345xpmX

# The random password set for the root user at Thu Apr 28 03:43:28 2016 (local time): TtuLj3wmj345xpmX

[root@localhost xiaoli]# 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 current

password for the root user. If you've just installed MySQL, and

you 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 MySQL

root user without the proper authorisation.

You already have a root password set, so you can safely answer 'n'.

(是否要修改root密码)

Change the root password? [Y/n] y

New password:

Re-enter new password:

Password updated successfully!

Reloading privilege tables..

... Success!

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? [Y/n] 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.

(禁止用户远程登录?开发环境安全要求不严格 n,生产环境要求严格 y,我是个严格的人,y)

Disallow root login remotely? [Y/n] y

... Success!

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.

(是否删掉测试数据库,果断y)

Remove test database and access to it? [Y/n] 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.

(重载权限让权限立即生效?y)

Reload privilege tables now? [Y/n] y

... Success!

All done! If you've completed all of the above steps, your MySQL

installation should now be secure.

Thanks for using MySQL!

Cleaning up...

安装完毕 !!!

rmp mysql_mysql 的rmp安装-Go语言中文社区相关推荐

  1. .tar.gz mysql 安装_mysql tar.gz 版本 linux系统的安装-Go语言中文社区

    mysql下载地址: https://dev.mysql.com/downloads/mysql/ 1.  上传下载的tar.gz文件发送到linux 上传的路径: /usr/local/mysql/ ...

  2. linux安装grpc占用空间大,grpc linux安装-Go语言中文社区

    1. go protobuf 安装 Protoc Buffer 安装包下载地址:https://github.com/protocolbuffers/protobuf/releases/downloa ...

  3. 源码包编译安装python_Python3.7源码包编译安装-Go语言中文社区

    环境: [root@localhost python3]# cat /etc/redhat-release CentOS Linux release 7.5.1804 (Core) [root@loc ...

  4. go语音protobuf_总结一下protobuf安装-Go语言中文社区

    protobuf可以在github上:https://github.com/google/protobuf 或者直接下载2.6.1版本:https://github.com/google/protob ...

  5. go给Linux安装mysql_Linux安装MySQL-Go语言中文社区

    1.下载并上传到/opt/soft目录 2.解压: tar -xvf mysql-5.7.27-1.e17.x86_64.rpm-bundle.tar 3.清空linux自带的数据库 1.查看是否有旧 ...

  6. onlyoffice mysql_windows+onlyoffice安装-Go语言中文社区

    1.安装介质与顺序 vcredist_x86.exe vcredist_x64.exe otp_win64_20.0.exe python-2.7.6.msi node-v6.11.3-x64.msi ...

  7. R语言中文社区2018年终文章整理(作者篇)

    欢迎关注天善智能,我们是专注于商业智能BI,人工智能AI,大数据分析与挖掘领域的垂直社区,学习,问答.求职一站式搞定! 对商业智能BI.大数据分析挖掘.机器学习,python,R等数据领域感兴趣的同学 ...

  8. 精心整理 | R语言中文社区历史文章整理(类型篇)

    2018年过去一半了~又到了盘点的时间~感谢长时间来各位好友的关注,我们的成长与你们的爱护是分不开的.更感谢各位老师的投稿,支撑起了我们的这个社区,让更多R语言的爱好者和从业者获得最棒的知识!本文选取 ...

  9. rust的矿坑_转: Rust中的Pin详解 【Rust语言中文社区】

    Rust中的Pin详解 原创 automanyang Rust语言中文社区 昨天 https://mp.weixin.qq.com/s/PjctbPbyR5OeaqTHZdB5uQ 相关概念 Pin ...

最新文章

  1. MySQL中的主键、唯一键、外键对比
  2. 苹果5年来盈利首次未超预期,但大中华区营收暴增83%
  3. docker 删除所有容器和镜像的命令
  4. c语言7.5return的值是,这个真心搞不懂了。求助
  5. Swift - 发送消息(文本,图片,文件等)给微信好友或分享到朋友圈
  6. JSONSerializer把类转换成JSON字符串
  7. PphpStorm常用操作整理
  8. sap期初导资产代码_SAP S/4固定资产导入期初科目设置
  9. 【从零写javaweb框架】(零)前言
  10. web前端设计与开发大作业(五)----期末设计报告
  11. 财务记账微信小程序开发
  12. 正版授权| iObit Uninstaller 12 Pro 专业卸载器工具
  13. SDL渲染3D动画图片
  14. 如何站在巨人的肩膀上学习
  15. 多标签用户画像分析跑得快的关键在哪里?
  16. 记录:nodejs 裁切图片的方法
  17. 【我是一只It小小鸟】有感
  18. Windows7 Ubuntu 双系统安装卸载工具备份
  19. Sherlock and the Encrypted Data
  20. PPTX双重预防体系风险四色图制作(34页)(附下载)

热门文章

  1. 不仅0元购物,还能赚钱-天花板
  2. python 自动生成word文档_python实现的生成word文档功能示例
  3. 韩国化妆品品牌PETITCOMO推出有助于改善夏季肌肤的焕亮美白面膜(Bling Bling Light Up Mask Pack)两件套
  4. Excel不会函数也能一键取出数值整数部分
  5. 2021-2025年中国净包装行业市场供需与战略研究报告
  6. 进程退出后占用的内存都去哪儿了?
  7. Python图像处理代码
  8. 惠友商务做电商你必须要知道的10条运营知识
  9. 浣花溪公园(最短路径模板)
  10. 享受“人类高质量睡眠” 从Anjou精油香薰机开始