ISSUE: When trying to connect to an Oracle database you receive the following error: "OCIEnvCreate failed with return code -1 but error message text was not available" CAUSE: 以下两种情况之一是可能的原因: 1,你在 Windows 7 上使用不支持的版本的 Oracle 客户端 (超过 11.2). 2,从以前安…
使用axios处理请求时,出现的问题解决 当url是远程接口链接时,会报404的错误: Uncaught (in promise) Error: Request failed with status code 404 解决方法: var instance = axios.create({ headers: {'content-type': 'application/x-www-form-urlencoded'} }); instance.post(`url`, params).then(res…
问题: 电脑的gradle版本为Gradle 5.0,然而 因为 添加的android 平台为6.3.0 gradle 是 4.1版本 电脑已存在 gradle的情况下,add platform 成功 但编译失败. 出现以下问题 :commamd failed with exit code eacces 原因: 这是一个权限问题,坑爹了. 解决方案: chmod 777 /Applications/Android\ Studio.app/Contents/gradle/gradle-4.10.1…
出现原因: 使用了不存在的对象 数组越界了 用 delete 释放未分配的内存空间,或者超过一次释放同个内存 比如: 顺序不能颠倒 正确: ui->setupUi(this); ui->tableWidget->setColumnWidth(0, 100); 错误: ui->tableWidget->setColumnWidth(0, 100); ui->setupUi(this);…
今天又学到一种修改bug的方法  : let newpwd = crypto.createHash('md5').update(req.body.upwd).digest('hex'); 在点击按钮加载登录方法的时候,加密后无法登陆,并报错,找了好久没有找到,百度的方法对我也完全不适用当然也怪自己"盲僧",把自己知道报错的地方迅速找到并注释,然后又目的性的找到自己的错误地方 我这次的错误是后台使用的post方法接收数据但是在代码中却用到query接收前端发来的数据,应该使用body 社…
昨晚小版本上线,使用rsync往服务器上传文件时,client报如下异常: @ERROR: auth failed on module backup rsync error: error starting client-server protocol (code 5) at main.c(1503) [Receiver=3.0.6] 首先:检查server端和client端的用户名和密码确认都无误: 服务器端检查这个/etc/rsync.pass密码文件, 注:其它系统可能密码文件名字不一样可以…
1.需求:A机器同步文件到B机器 2.问题: A机器执行如下命令: [root@sv0379 rsync]# rsync -vzrtopg  --password-file=/usr/local/rsync/rsync.passwd /opt/aspire/product/pcc_cs21/LOCAL_PccFTP/PCC_666_local/components_yml/localAbsoluteTempPath/   backup@10.12.8.245::components_localA…
因业务需求,需要把内网gitlab仓库的地址对外网访问,在gitlab前端配置了一个nginx代理服务器,来实现需求,可以在git clone的时候报error: RPC failed错误 [root@Server_yd]# git clone http://username:password@gitlab.linzhongfengniao.com/ElectronicAPI.git Initialized empty Git repository in /tmp/ElectronicVisaA…
首先:检查server端和client端的用户名和密码确认都无误: 然后:检查了服务器端/etc/rsyncd.conf 配置文件未发现异常, 再次:通过配置文件找到了log存放目录 $ cat /etc/rsyncd.conf | grep -i log log file = /var/log/rsync.log 查看/var/log/rsync.log发现 2017/07/21 09:38:33 [31746] name lookup failed for xxx.xx.xxx.xx: Na…
使用rsync往服务器上传文件时,client报如下异常: @ERROR: auth failed on module XXX rsync error: error starting client-server protocol (code 5) at main.c(1503) [Receiver=3.0.6] 排查步骤 1 检查server端和client端的用户名和密码确认都无误: 服务器端检查这个/etc/rsync.pass密码文件, 客户端检查--password-file配置的密码文…