开源探讨

1.一台老旧的ORACLE DB server 升级版本,出现bug. 通过申请原厂进行分析。

定位出一个bUG.

2.不禁引出一个探讨,如果是开源产品升级,那么出现BUG ,该如何定位。

首先当然开源社区。

开源的DB支持方式跟商业的不同,开源的支持方式,依赖于产品的使用量和探讨次数。不是说一定可以定位到Bug,也是会更加忙碌。但是开源产品给了多个选择,至少不强制绑定某个大公司。

 开源产品流行的原因,不是因为多好用,而是很便宜

相比较而言。mysql 社区活跃度确实比较高

https://forums.mysql.com/read.php?20,674606,674611#msg-674611

https://dba.stackexchange.com/questions/191656/xampp-mysql-troubleshooting-with-mysql-server

 https://serverfault.com/questions/tagged/mysql

https://www.artfulsoftware.com/infotree/mysqltips.php

3.mysql  学习

我看的是 高可用mysql  这本书,看的比较晦涩,但是这本书章节比较清楚,章节设计的比较清楚,因此找了些文档。

参考 文档: 50个 常见的学习mysql网站:

https://www.codeconquest.com/blog/top-50-websites-to-learn-mysql/

从中摘录2个网站:

首先当然是原厂文档,有了chrome 浏览器自动翻译,看文档效率也能有部分提升。实际上文档翻译可可能不准确,有点像 印度英语

https://dev.mysql.com/doc/refman/5.6/en/replication-options-master.html

其次,是 mysql 常用语法;

http://www.mysqltutorial.org/basic-mysql-tutorial.aspx

4.mysql 问题分析:

暂时是从 mysql 论坛找到类似案例,然后进行分析

https://forums.mysql.com/search.php?26,search=Slave+Lag,author=,page=1,match_type=ALL,match_dates=365,match_forum=ALL,match_threads=

5.感谢github

之前登陆 

https://dba.stackexchange.com/questions/191656/xampp-mysql-troubleshooting-with-mysql-server 总是报错

###sample : stack overflow 提了个问题

1.below is mysql config fule, /db/mysql/app/mysql/my.cnf

we set max_connections=4000

[mysqld]

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

[client]
port=3306
socket=/db/mysql/data/mysqltmp/mysql.sock
[mysqld]
basedir=/db/mysql/app/mysql
datadir=/db/mysql/data/mydata
tmpdir=/db/mysql/data/mydata/tmp
bind-address=10.200.212.67
port=3306
wait_timeout=86400
server_id=2
user=mysql
socket=/db/mysql/data/mysqltmp/mysql.sock
skip-name-resolve

cause :

Your post appears to contain code that is not properly formatted as code. Please indent all code by 4 spaces using the code toolbar button or

the CTRL+K keyboard shortcut. For more editing help, click the [?] toolbar icon.

fix:

use CTRL+K (ctrl + caplock +k ) to 确认一行不要太长,及时缩进换行:

解决“Stack Overflow requires external JavaScript from another domain, which is blocked.."

按照如下文档,调试chrom 浏览器,总算可以访问了

https://blog.csdn.net/mathew_leung/article/details/81130712

Chrome安装方法(Google被墙了上不去):

passwd is same of cnbologs.cn

  1. 下载ReplaceGoogleCDN然后解压,找到chrome子目录
  2. 打开Chrome,输入: chrome://extensions/
  3. 勾选Developer Mode
  4. 选择Load unpacked extension...然后定位到刚才解压的文件夹,确定
  5. 这就安装好了,去掉Developer Mode勾选。
原文地址:https://www.cnblogs.com/feiyun8616/p/12038609.html