MySQL 5.7.10最新版本号源码安装具体过程
,重置密码
利用mysqladmin重置密码
[root@wgq_idc_mon_1_12 mysql5710]#./bin/mysqladmin -h localhost -uroot password "root" -p'4e3taITlXU%/'--socket=/usr/local/mysql5710/mysql.sock
mysqladmin: [Warning] Using a password onthe command line interface can be insecure.
Warning: Since password will be sent toserver in plain text, use ssl connection to ensure password safety.
[root@wgq_idc_mon_1_12 mysql5710]#
使用新密码登录:
[root@wgq_idc_mon_1_12 mysql5710]# mysql--socket=/usr/local/mysql5710/mysql.sock -uroot -proot
Warning: Using a password on the commandline interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.7.10-log Sourcedistribution
Copyright (c) 2000, 2013, Oracle and/or itsaffiliates. All rights reserved.
Oracle is a registered trademark of OracleCorporation and/or its
affiliates. Other names may be trademarksof their respective
owners.
Type 'help;' or '\h' for help. Type '\c' toclear the current input statement.
mysql>
OK,mysql5.7.10安装彻底结束了,以下就能够開始验证5.7的新特性了。
13。番外篇
http://www.lengdo.com/blog/view/id/52.html,这里的blog主,说:MySQL启动后一切正常。可是大概在五六分钟后MySQL内存開始莫名飙升到500M。然后就稳定在500M左右,所有的 buffer, size, cache 等都是按最小配置,无 SQL 请求。甚至关闭 innodb 都无效。
所以准备探讨一番他的症状所在。
启动mysql5.7后,剩余1927M内存。例如以下所看到的:
[root@wgq_idc_mon_1_12 mysql-5.7.10]#
[root@wgq_idc_mon_1_12 mysql-5.7.10]# free-m
total used free shared buffers cached
Mem: 32110 30182 1927 0 349 24095
-/+ buffers/cache: 5737 26372
Swap: 3967 12 3955
[root@wgq_idc_mon_1_12 mysql-5.7.10]#
[root@wgq_idc_mon_1_12 mysql-5.7.10]#
停止mysql5.7后,剩余2841m内存。例如以下所看到的:
[root@wgq_idc_mon_1_12 mysql-5.7.10]#service mysqld5710 stop
Shutting down MySQL.. [确定]
[root@wgq_idc_mon_1_12 mysql-5.7.10]# free-m
total used free shared buffers cached
Mem: 32110 29268 2841 0 349 24083
-/+ buffers/cache: 4835 27274
Swap: 3967 12 3955
[root@wgq_idc_mon_1_12 mysql-5.7.10]#
大概用了一个G左右,而我的buffer_pool设置就是4G,可能是启动mysql载入buffer pool的内存消耗,有待兴许验证。
MySQL 5.7.10最新版本号源码安装具体过程的更多相关文章
- Win 10 下Pipenv源码安装 odoo12
因为,本身电脑已经安装odoo8,9,10等odoo的版本,当时,没有考虑是直接是统一的环境很配置. 现在,在odoo11的环境下,需要Python 3的语言环境可以很好地支持odoo11的功能,所以 ...
- 如何在CentOS 7中安装最新Git(源码安装)
如何在CentOS 7中安装最新Git 2017年05月20日 11:49:53 阅读数:1624 Git是在今天的软件开发行业一个非常有用的版本控制工具.我一直使用Git.于是为Linux公社的读者 ...
- [转]apache的源码安装详细过程全纪录
原文链接:http://www.jb51.net/article/59474.htm 文中 开机启动需要修改 而且特别麻烦 还的配置php 否则不认识php文件 郁闷!只能做参考了!
- LNMP架构下的nginx、mysql、php的源码安装
一.LNMP的介绍 LNMP就是Linux+Nginx+Mysql+Php这种网站服务架构.Linux是一类Unix计算机操作系统的统称,是目前最流行的免费操作系统,常见版本有:centos.ubun ...
- mysql源码安装(包括5.5和5.7)
1.mysql5.5源码安装 yum install -y cmake ncurses-devel ncurses cd /usr/src wget -c https://cdn.mysql.com/ ...
- yum管理及源码安装
一.配置YUM库及更新操作 yum概述 基于RPM包构建的软件更新机制,自动解决软件依赖关系 YUM仓库格式 本地:file:// 网络:ftp://或http:// yum源里面包含的内容 .rpm ...
- mysql5.5.30源码安装及主从搭建
双机热备(实验环境) 主服务器:ip地址192.168.100.244,mysql版本5.5.30,源码安装 从服务器:ip地址192.168.100.245 一.源码安装mysql5.5 启动目录: ...
- zabbix3.4.6之源码安装
LAMP部署环境搭建: Linux+apache(httpd)+mysql(mariadb)+php: 版本要求:apache-1.3.12,mysql-5.0.3,php-5.4.0<http ...
- centos 7 源码安装gogs
gogs 是轻量级的私有git 平台,允许个人通过低配置的服务器安装私有git gogs 的官网地址是:https://gogs.io/ 安装步骤 1)源码安装mysql 2) 源码安装git 3) ...
随机推荐
- 【POJ 3744】 Scout YYF I
[题目链接] http://poj.org/problem?id=3744 [算法] 概率DP + 矩阵乘法 [代码] #include <algorithm> #include < ...
- Eclipse-Error:笔记-1
ylbtech-Eclipse-Error:笔记-1 1.返回顶部 1. Whitelabel Error PageThis application has no explicit mapping f ...
- 当使用Spring MVC @Valid对输入框进行验证的时候,可能会遇到以下的异常:Neither BindingResult nor plain target object for bean name ‘mybean’ available as request attribute
转自:https://www.cnblogs.com/wenhulu/p/5555457.html 当使用Spring MVC @Valid对输入框进行验证的时候,可能会遇到以下的异常: Neithe ...
- (Go)01.Windows 安装 Go语言开发环境以及使用
一.Go语言下载 go语言官方下载地址:https://golang.org/dl/ 找到适合你系统的版本下载,本人下载的是windows msi版本.也可以下载Source自己更深层次研究go语言 ...
- js作业
1.一张纸的厚度是0.0001米,将纸对折,对折多少次厚度超过珠峰高度8848米var sum=0;i=0;a=0.0001;for(i=0;i<100;i++){ a=a*2; sum=sum ...
- GStreamer基础教程02 - 基本概念
摘要 在 Gstreamer基础教程01 - Hello World中,我们介绍了如何快速的通过一个字符串创建一个简单的pipeline.为了能够更好的控制pipline中的element,我们需要单 ...
- Android适配文件dimen自动生成代码
1:保存下,别人的code import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputSt ...
- java中参数传递实例
//在函数中传递基本数据类型, 2. public class Test { 4. public static void change(int i, in ...
- java json转义引号
String jsonMapStr = "{\"system\":\"1,\\\"2\\\",3\",\"createD ...
- 配置DCOM中excel权限
ASP.NET 导出Excel 错误解决备忘 网站项目要用到导出为excel文件的功能,程序运行时报错:"检索 COM 类工厂中 CLSID 为{000-0000-0000-C0046} 的 ...