主备网络配置存在问题 一系列报错 [root@node1 bin]# ./srvctl  start database -d devdbPRCR-1079 : Failed to start resource ora.devdb.dbCRS-5017: The resource action "ora.devdb.db start" encountered the following error: ORA-00119: invalid specification for system…
今天在使用fabric远程安装rpm时,一直报:Fatal error: run() received nonzero return code 1 while executing! 这看起来也是没笔病呀,但fabric就是这么蛋疼, 它在执行过程中, 如果执行命令返回非零, 就会中断后面的逻辑. 解决方法就是忽略掉这个fabric的告警 env.warn_only=True 错误代码: from fabric.api import * env.user = 'root' env.hosts =…
MySQL创建函数报ERROR 1418错误,不能创建函数,根据官方提示是说,不能创建函数可能是一个安全设置方面的配置或功能未开启原因,下面我们一起来看.   错误 ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the le…
刚开始报error:devices not found 重新安装adb 驱动. 解决方法: adb kill-server adb start-server adb remount 再使用adb devices和adb shell就可以使用android adb功能了.…
我的Oracle是11g的 system 的密码忘记了, 但是scott的密码我还记得而且能登录 . 想以sqlplus /as sysdba 修改system密码 一直在报 ERROR:ORA-12560: TNS: 协议适配器错误 最后用了我一天的时间在网上找解决办法 ,八九不离十的都是说监听没启动.............额. 最后找到一个不一样的进法. 只会一直提示用法和帮助 在cmd下, cd到 D:\app\lenovo\product\11.2.0\dbhome_1\BIN 下,再…
 bin/kafka-topics.sh --create --zookeeper es1:2181 --replication-factor 1 --partitions 1 --topic topic1  kafka创建会话,报Error while executing topic command : Replication factor: 1 larger than available brokers: 0. 首先贴出来 kafka的配置文件 broker.id=0 advertised.…
今天用EXP命令导Oracle数据库,出现如下错误信息: [oracle@yingxiang-testServer1 ~]$ exp imgpf/imgpf@orcl file=/prlife/db/USDMP20140428.dmp Export: Release 11.2.0.4.0 - Production on Mon Apr 28 09:53:47 2014 Copyright (c) 1982, 2011, Oracle and/or its affiliates. All righ…
mysql远程登录的命令是: mysql -h数据库地址 -u用户名 -p 但是用这个命令在登录阿里云的mysql时,会报ERROR 2027 (HY000): Malformed packet…
android stdio 编译项目报Error:Failed to find target with hash string 'android-24 查看已有的SDK 设置项目的sdk为 25 android { compileSdkVersion 25 buildToolsVersion "25.0.0" defaultConfig { applicationId "com.accessibility" minSdkVersion 14 targetSdkVer…
一般是报error问题就是我们的mysql没有权限,这里主要是指三点:一个是mysql的安装主目录要设为mysql用户和用户组.一个是logs目录设置为mysql用户以及用户组.还有一个是data目录也是设置为用户以及用户组.(如果有其他的是mysql需要的目录或文件也要这样子设置用户和用户组) 只要设好权限基本不报这个错误. 但是我今天想更换存储的数据目录,所以我就把原来的数据目录下的所有文件删除了,直接在my.cnf文件中指定数据目录的新目录,然后再启动mysql发现就不行了,就报上面的那个…