win通过ssh访问virtualbox虚拟中的debian
摘要:Sep 17, 2019 原文链接:https://fffou.com/post/199171/ win通过ssh访问virtualbox虚拟中的debian 本来想通过virtualbox虚拟机安装linux,以进行一些操作的。但是安装好系统后发现通过ssh工具怎么都连接不上虚拟机的linux,通
阅读全文
【转】win10中下载安装mysql5.7
摘要:一、完全卸载旧版mysql 参考文章:https://blog.csdn.net/hui1setouxiang/article/details/89816176 二、win10中下载安装mysql5.7 参考文章:https://blog.csdn.net/yjz_sdau/article/deta
阅读全文
[转发]centos7利用crontab定时检测杀死cpu使用率超过80%的进程
摘要:linux 监控并kill掉占用cpu过多的进程 Michael_001关注 2018.11.05 14:58:17字数 27阅读 350 #!/bin/bash /bin/ps axf -o "pid %cpu" | awk '{if($2>=75.0) print $1}' | while re
阅读全文
MySQL 重要参数 innodb_flush_log_at_trx_commit 和 sync_binlog
摘要:MySQL 重要参数 innodb_flush_log_at_trx_commit 和 sync_binlog innodb_flush_log_at_trx_commit 主要控制了innodb将log buffer中的数据写入日志文件并flush磁盘的时间点,取值分别为0、1、2三个。该参数控制
阅读全文