读好书,交益友
发布时间:2016-09-14 10:31:33
mysql root用户密码忘记或者是权限不对。1. 先停止mysqlsudo service mysql stop2. 运行mysqld_safesudo mysqld_safe --user=mysql --skip-grant-tables --skip-networking3. 命令行下进入数据库mysql -u root mysql4. 修改user表:root用户密码update.........【阅读全文】
发布时间:2016-09-07 11:08:41
sudo apt-get install python-tk如果是python3 sudo apt-get install python3-tk......【阅读全文】
发布时间:2016-09-01 15:05:17
最近使用mysqlbench连接最新平台的数据库一直出现Authentication error, unhandled exception caught in tunnel manager, please refer to logs for details确认是mysqlbench的bugsudo apt-get remove mysql-workbench只能安装mysql-workbench-community-6.3.6-1ubu1404-amd64.deb不能安装mysql-workbench-commun.........【阅读全文】
发布时间:2016-08-24 20:00:37
最近使用python多线程程序,发现会耗尽所有的cpu,有必要让python程序运行在一个cpu上.,但是发现threading.get_ident() 返回一个极大的整数,根本和线程号对不上.只是使用先获取系统调用号点击(此处)折叠或打开#include <stdio.h>#include <sys/syscall.h>.........【阅读全文】
发布时间:2016-08-16 11:15:55
centos默认的vm.swappiness值是60,对于数据库可以改小一些降低swap的加载,系统性能会有提升.因为linux一旦使用swap分区,只有缺页才会触发swap的换出,否则一直占用swap,导致硬盘的io极高.对于oracle ,一般设置 10,对于mysql一般设置1,尽可能不用swap分区,如果设置为0,linux还会使用swap分区,3.5以后的内核和redhat 2.6.3.........【阅读全文】