SSH: Disconnecting configuration [192.168.2.68] ... ERROR: Exception when publishing, exception message [Exec timed out or was interrupted after 120,0 ...
分类:
其他好文 时间:
2021-02-05 10:37:04
阅读次数:
0
判断服务是否存在,存在就直接启动,不存在则创建后启动,引号里的内容替换成自己的服务名即可 @echo off sc query SAVUS_SFCJSService |findstr /i "STATE">nul if not errorlevel 1 (goto exist) else goto ...
从MySQL5.6开始,mysqlbinlog支持将远程服务器上的binlog实时复制到本地服务器上。 mysqlbinlog的实时二进制复制功能并非简单的将远程服务器的日志复制过来,它是通过MySQL 5.6公布的Replication API实时获取二进制事件。本质上,就相当于MySQL的从服务 ...
分类:
数据库 时间:
2021-02-04 12:24:34
阅读次数:
0
let require = ()=>{throw new Error('函数必须传参')} let print = (num=require())=>{console.log(num)} print(2) // 2 print(null) // null print() // 报错 ...
分类:
其他好文 时间:
2021-02-04 11:52:57
阅读次数:
0
版本信息:Navicat Premium 15.0.12 错误情况: 用Navicat连接Oracle数据库时报错ORA-28547:connection to server failed,probable Oracle Net admin error 解决方案: 1、到下面网址下载OCI http ...
分类:
数据库 时间:
2021-02-04 11:46:08
阅读次数:
0
appium启动公司app报错如下,但是启动像企业微信、微信都是没有问题的; remote stacktrace: UnknownError: An unknown server-side error occurred while processing the command. Original e ...
分类:
移动开发 时间:
2021-02-03 11:09:40
阅读次数:
0
1、概述 互斥锁通常用在多线程中,用于保护临界资源。什么是临界资源?我的理解就是有可能被多个线程同时占用的资源,比如线程1要使用一个全局变量的时候,这时调度到了线程2,线程2改变了这个全局变量的值,这时线程1再去使用这个全局变量的时候就可能出问题。举个现实生活中的例子,A要用打印机打印很多资料,B也 ...
分类:
其他好文 时间:
2021-02-03 11:03:42
阅读次数:
0
今天准备用Echarts画一下中国地图,却被一个报错困扰了很长时间:Uncaught ReferenceError: echarts is not defined。 网上可以查到这个错误,但解决方法千篇一律,并且对我的这个报错无效。最后的解决方案将本地引入的js改成联网引入: <script typ ...
分类:
其他好文 时间:
2021-02-03 11:03:09
阅读次数:
0
在用Android StudioBuild项目时,提示:Could not resolve all files for configuration ':classpath'.Could not find com.android.tools. Error:Gradle: A problem occur ...
分类:
移动开发 时间:
2021-02-03 11:01:45
阅读次数:
0
二进制日志: 1先确认正在用的是哪个日志: show master status; 2查看当前日志文件的事件: show binlog events in 'mysql-bin.000003'; 3通过位置号截取二进制日志: mysqlbinlog --start-position --stop-p ...
分类:
其他好文 时间:
2021-02-03 10:37:19
阅读次数:
0