Debug 常见问题总结(持续更新)】的更多相关文章

[toc] 1.zabbix仪表板错误 问题: zabbix server is not running: the information displayed may not be current 解决方案: 几种情况都有可能引起这个错误: 1)可能是zabbix-server未安装zabbix-agent;或者安装了却没有检测到agent的端口 2) 2.日志报错 问题: 172730.555 [Z3001] connection to database 'zabbix' failed: [1…
一 SQL报表常常会遇到在表格中的相除,如果分母为零,一般会显示错误号,我们可以这么处理:(加上是A/B) ,, B) 但是我们不能这么写: ,,A/B) //我们不能这么写,会产生BUG,至于什么BUG,你们可以自己试试 二 我们假设报表中的某一个格子的名字为A,我们在A中需要引用另一个格子B的值,在这种情况下,我们通常会把B中的计算公式再次引用在A中复制一遍,这样很导致很麻烦. 我们可以在A中直接这么写: ReportItems!B表的名字.Value 这样就不需要再一次得把公式写一遍了 三…
1.Original error: Could not parse activity from dumpsys 命令行:adb shell  dumpsys cpuinfo  报:service dumps disabled due to hang system process 没发现很好的解决办法,重启手机后正常.…
# 1.删除0字节文件 find -type f -size 0 -exec rm -f {} \; # 2.批量文件重命名 find . -type f -name "*.txt" -exec rename txt sh {} \; for i in `ls *.sh`;do rename sh txt $i;done # 3.查看http并发请求数及其TCP连接状态 netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print…
gridview中设置item的高度. 一.BaseAdapter中的getView中设置 AbsListView.LayoutParams param = new AbsListView.LayoutParams( android.view.ViewGroup.LayoutParams.MATCH_PARENT, parent.getWidth()/2+DpPx.dip2px(context,20));//-20 10spacing 5padding + 40 textview.height…
一.[单机版] 1.1.ArcMap 1.2.ArcGIS Pro 错误一 ArcGIS Pro单机许可安装授权,在Configure Authorization界面报“This functionality is not available without the ArcGIS Pro Licensing Service being installed. The service can be installed by running the license service installer l…
常识 1.computed计算属性,使用的属性必需在data里面声明. computed: { canLogin: function(){ //注意这里的依赖的属性必需在data里面声明 return this.name && this.password; } } Webpack问题 1.模块里面使用JSON.stringify和 typeof,报:Uncaught TypeError: Cannot assign to read only property 'exports' of #&…
问题1:使用adb devices查看连接设备,提示unauthorized 解决方案:进入进程管理,关闭adb进程,然后再查看连接设备 问题2:adb connect ip提示远程计算机积极拒绝,无法连接 解决方案:使用adb tcpip 5555开启5555端口,然后再连接 问题3:有些手机已经安装了setting和unlock,每次运行时都重新安装: 解决方案:进入Appium\node_modules\appium\lib\devices\android,打开Android.js文件,注…
1. Java 内部类 内部类有四种常见的类型:成员内部类.局部内部类.匿名内部类和静态内部类. 1.成员内部类:定义为另一个类的里面如下: class Circle { double radius = 0; public Circle(double radius) { this.radius = radius; } class Point{ //内部类 public void DrawPoint() { System.out.println("DrawPoint"); } } } 成…
HBase常见问题答疑解惑[持续更新中] 本文对HBase开发及使用过程中遇到过的常见问题进行梳理总结,希望能解答新加入的HBaser们的一些疑惑. 1. HTable线程安全吗? HTable不是线程安全的,使用过程中建议一个线程中使用一个HTable对象,不同线程间不要共享HTable对象. 同时,为了提高客户端的效率,不同的HTable对象公用同一个Configuration对象,共享HBase服务端的元数据信息,详见HBase权威指南中有关HTable部分的介绍. 2. HTablePo…