10 2021 档案
摘要:Question 1: 你目前接触的mysql版本是什么?除了官方版本,还接触过其他的mysql分支版本嘛? 产生分支的原因 许多开发人员认为有必要将其拆分成其他项目,并且每个分支项目都有自己的专长。该需求以及Oracle对核心产品增长缓慢的担忧,导致出现了许多开发人员感兴趣的子项目和分支 三个流行
阅读全文
摘要:[root@muze1 app]$ ./install_patch.sh #################################################################################################################
阅读全文
摘要:https://blog.csdn.net/loophome/article/details/46549921
阅读全文
摘要:MySQL的max_connections参数用来设置最大连接(用户)数。每个连接MySQL的用户均算作一个连接,max_connections的默认值为100。本文将讲解此参数的详细作用与性能影响。 与max_connections有关的特性 MySQL无论如何都会保留一个用于管理员(SUPER)
阅读全文
摘要:查看binlog过期时间,设置的时间为90天,这个值默认是0天,也就是说不自动清理,可以根据生产情况修改,本例修改为7天 mysql> show variables like 'expire_logs_days' mysql> set global expire_logs_days=7; 设置之后不
阅读全文
摘要:select host from user where user='root';查看允许连接的主机 update user set host = '%' where user ='root'; FLUSH PRIVILEGES; 添加用户 CREATE USER 'prod_zdsb'@'local
阅读全文
摘要:Every InnoDB table has a special index called the clustered index where the data for the rows is stored. Typically, the clustered index is synonymous
阅读全文
摘要:https://blog.csdn.net/weixin_40471676/article/details/119732738
阅读全文
摘要:mysql> show variables like '%innodb_log%' ;+ + +| Variable_name | Value |+ + +| innodb_log_buffer_size | 16777216 || innodb_log_checksums | ON || inno
阅读全文
摘要:mysql 重启之后,innodb_buffer_pool几乎是空的,没有任何的缓存数据。随着sql语句的执行,table中的数据以及index 逐渐被填充到buffer pool里面,之后的查询语句只需要在内存中操作(理想状态下),大幅度提升了mysql的性能。 这个逐渐填充的过程可能需要1-2个
阅读全文
摘要:[root@muze1 ~]$ vi /etc/ssh/sshd_config 修改如下2个选项: GSSAPIAuthentication no UseDNS no 重启ssh服务 [root@muze1 ~]$ systemctl restart sshd
阅读全文
摘要:https://blog.csdn.net/strawberry1019/category_9762904.html
阅读全文
摘要:关闭oms服务[oracle@dbmon middleware]$ cd /data/u01/app/middleware/bin/[oracle@dbmon bin]$ ./emctl stop oms 关闭agent 服务[oracle@dbmon bin]$ cd /data/u01/app/
阅读全文