mysql 连接数过多 包错:"Host '192.168.10.15' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'"
1.用阿里的连接池 配置如下:
<bean id="Template_DataSource" class="com.alibaba.druid.pool.DruidDataSource" destroy-method="close">
<property name="url" value="jdbc:mysql://10.96.9.105/smg?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&zeroDateTimeBehavior=convertToNull" />
<property name="username" value="root" />
<property name="password" value="" />
<property name="filters" value="stat" />
<property name="maxActive" value="20" />
<property name="initialSize" value="1" />
<property name="maxWait" value="60000" />
<property name="minIdle" value="1" />
<property name="timeBetweenEvictionRunsMillis" value="60000" />
<property name="minEvictableIdleTimeMillis" value="300000" />
<property name="validationQuery" value="SELECT 'x'" />
<property name="testWhileIdle" value="true" />
<property name="testOnBorrow" value="false" />
<property name="testOnReturn" value="false" />
<property name="poolPreparedStatements" value="true" />
<property name="maxPoolPreparedStatementPerConnectionSize" value="20" />
</bean>
2.spring 对数据库操作:
private JdbcTemplate getJdbcTemplate() {
JdbcTemplate jt = (JdbcTemplate) this.getApplicationContext().getBean("Template_JdbcTemplate");
return jt;
}
public boolean update(String sql) {
int i = this.getJdbcTemplate().update(sql);
return i > 0;
}
场景:该应用定时的更新数据库表(每20min) 请问问题出在哪里?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个不是问题本质吧!!!!!!
1、设置下max_connection_errors的数量
2、清理下host