前言:又一波工作中常用的知识进行放送,可遇不可求啊,每一个都必须掌握和牢记。
mysql不使用缓存查询 | select SQL_NO_CACHE |
mysql删除批量数据10000条最合适 | delete from stocks_orderlist where scode = #{scode,jdbcType=VARCHAR} limit 10000 |
mysql命令中查看mysql版本 | select @@version |
Linux下查找mysql.cnf路径 | mysql --help | grep my.cnf或者 find / -name my.cnf |
Windows下查看cpu | echo %NUMBER_OF_PROCESSORS% |
Linux上查看cpu信息 | cat /proc/cpuinfo |
linux上查看位数 | file /sbin/init cat /etc/issue |
centos安装mysql出错 libaio.so.1()(64bit) is needed by MySQL-server-5.7.4_m14-1.el6.x86_64 |
先安装rpm -ivh libaio-0.3.107-10.el6.x86_64.rpm,再安装mysql |
重启Linux | init 6 |
postgre开启所有ip的远程连接 | 0.0.0.0/0 |
修改root密码 | update user set password=password(‘aa‘) where user = ‘aa‘; |
本机开启的远程端口 | netstat -a |
查看内存 | free -m 以M为单位查看内存使用情况 |
查看硬盘 | df -h |
Javaweb项目获取src目录 | Thread.currentThread().getContextClassLoader().getResource("").getPath() |
Java项目获取src目录 | Service.class.getClass().getResource("/").getPath() |
当出现Packet for query is too large (1307 > 1024). | 请设置mysqld和mysqldump节点下的max_allowed_packet = 16M |
原文地址:http://blog.csdn.net/qing_gee/article/details/43447681