问题:在内网测试的时候可以正常访问,但是部署到外网上客户端连接elasticsearch报错:None of the configured nodes are available: [] 原因:默认情况下,ElasticSearch使用0.0.0.0地址,并为http传输开启9200-9300端口,为节点到节点的通信开启9300-9400端口,部署到外网修改修改elasticsearch.yml配置 操作: 修改elasticsearch.yml 将network.host.transport.…
本地仓库代码(git push)上传git仓库报错: fatal: No configured push destination. Either specify the URL from the command-line or configure a remote repository using git remote add <name> <url> and then push using the remote name git push <name> 解决办法: 在…
问题 之前一直用的 Laravel 5.4,数据库也是直接写 sql 的,感觉可定制性更强,顺便锻炼下 sql.这次改用了 Laravel 5.5,索性用迁移建库试试,结果报错如下: SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL: alter table `users` add constraint `users_production_enterprise_id_foreign` forei…
在使用laravel的download()函数实现下载功能时,报错如下:Unable to guess the mime type as no guessers are available (Did you enable the php_fileinfo extension?) 具体如下:这里写图片描述 原因是没有开启php的php_fileinfo扩展,开启即可. 找到php.ini文件,搜索到php_fileinfo,去掉前面的分号,然后重启服务器apache.nginx下同理. exten…
报错信息 laravel which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 关闭严格模式: 修改 app/database.php 文件中 mysql 参数,改动如下: 'mysql' => [ 'driver' => 'mysql', 'host' => env('DB_HOST', '127.0…
进行模型关联操作, php artisan tinker 执行 $user = App\Models\User::find(1) $user->followings()->attach([2, 3]) 报错,模型关联定义都是OK的,google了一番,才发现原来是tinker的bug.直接在控制器中调用就没有报这个错误.如果你用tinker也报这个错了,试一下直接在控制器中操作.by the way,我用的是5.1版本…
在分别设置 进行微服务eureka集群启动时候,执行命令行启动jar包时候,报错前面一个端口8000已经被使用,而我这里启动的配置文件中端口号是8001,怎么会导致端口冲突呢?? 但是报错我的端口冲突了: 错误原因: 咱们查看打包的eureka项目的jar包就可以知道原因: 而打开最上面没有带profile参数的配置文件就可以发现,原来里面的端口真是8000 解决方法: 要解决这个问题,就把jar包中的这个没有带profile参数的文件删除即可 如果不能直接删除jar中的这个文件,可以在任务管理…
很久之前测试通过的代码,现在手机升级了Android7.0后一运行就崩溃,报出这样的错误,具体错误如下: Process: com.example.sho.android_anti_theft, PID: 26807 android.view.WindowManager$BadTokenException: Unable to add window -- window android.view.ViewRootImpl$W@363f7b1 has already been added at an…
后端报错信息 WARNING:tornado.access:405 OPTIONS /add (::1) 1.00m 前端报错信息 2xhr.js?ec6c:172 OPTIONS http://localhost:8888/add 405 (Method Not Allowed)/#/:1 Access to XMLHttpRequest at 'http://localhost:8888/add' from origin 'http://localhost:8080' has been bl…
在config/filesystems.php中添加: 'disks' => [ 'local' => [        'driver' => 'local',        'root' => storage_path('app'),    ], 'public' => [        'driver' => 'local',        'root' => storage_path('app/public'),        'url' => en…
1.问题描述 把Laravel项目上传至服务器,本地数据库导出再导入至服务器数据库,一切运行正常,但是当进行用户登录时报错 DecryptException in compiled.php line 13238: The MAC is invalid 或 DecryptException in BaseEncrypter.php line 48: The MAC is invalid 2.解决过程 上网查询发现很多人说是laravel的key问题,要重新生成一下,清除缓存.但是试过发现错误由 D…
运行提示can't be found on the disk…
混淆了 array 与 collection,join 并不支持 collection. array 与 collection 不同的 join 实现 collect([1, 2, 3, 4, 5])->implode('-'); join('-', [1, 2, 3, 4]); 将 array 转换成 collection $collection = collect([1, 2, 3]); 将 collection 转换成 array $collection->toArray(); all(…
在laravel的上传图片代码文件中路径如下: vendor\stevenyangecho\laravel-u-editor\src\Uploader\Upload.php第131行有一句代码错误$randNum = rand(1, 10000000000) . rand(1, 10000000000); 改成$randNum = rand(1, getrandmax()) . rand(1, getrandmax());这样就好了,具体原因参考php手册:http://php.net/manu…
'components' => [ 'request' => [ // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation 'cookieValidationKey' => 'test', //这里配置秘钥字符串就不会报错了 ]]…
1,新建文件夹,在文件下下鼠标右键git bush--->git init,初始化仓库: 2,设置gitthub仓库地址:git remote add origin https://github.com/z*****g/lm.git 3,git pull origin master 4,git push --set-upstream origin master,关联一个远程分支,并从这个分支上传下带代码 git branch查看分支 git add . git commit -m "提交注…
解决方法:通过redis-cli连接到服务器后执行以下命令: config set stop-writes-on-bgsave-error no 注意:这种方法只是忽略了问题,并没有解决问题,具体问题还要看具体的日志研究究竟是什么问题 可以的原因: 1.内存不够用 2.磁盘不够用 配置文档的解释 # 默认情况下,如果 redis 最后一次的后台保存失败,redis 将停止接受写操作, # 这样以一种强硬的方式让用户知道数据不能正确的持久化到磁盘, # 否则就会没人注意到灾难的发生. # # 如果…
原文:Redis报错 : (error) NOAUTH Authentication required. 这个错误是因为没有用密码登陆认证 , 先输入密码试试 . 127.0.0.1:6379> auth "yourpassword" 例如密码是'root',当出现认证问题时候,输入"auth 'root'"就可以了. 127.0.0.1:6379> set name "hello" (error) NOAUTH Authentica…
连接redis报错: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting…
gerrit环境部署在linux服务器,windos客户机连接gerrit进行代码操作: 在windows客户机下载Git客户端 在“Git Bash”里使用 ”ssh-keygen -t rsa -C wangshibo@zhongho.com"产生公私钥 将公钥上传到gerrit上(wangshibo账号下,注册账号是wangshibo@zhongho.com) 在Git Bash里使用git clone克隆代码的时候,报错如下: unable to negotiate with 10.0.…
大家在打包Nuget包的时候,最后会执行以下语句 nuget pack .\ML.Common.SDK.csproj -Prop Configuration=Release 执行此句后,提示以下报错信息. 参考:https://stackoverflow.com/questions/25725545/nuget-x-already-has-a-dependency-defined-for-y 中的解决方案可以看到,需要升级项目中的nuget 进入项目中的.nuget的目录,然后执行: nuget…
问题描述 在linux上,欲将OpenSSH_6.4p1编译升级到OpenSSH_8.0p1时,执行了./configure --prefix=/usr --sysconfdir=/etc/ssh --with-zlib --without-openssl-header-check --with-ssl-dir=/usr/local/ssl --with-privsep-path=/var/lib/sshd编译命令后报错,报错信息如下: configure: error: *** working…
laravel 项目表单中有csrf_token,但一直报错419错误,因为项目中使用到Redis缓存,在强制关闭Redis后出现的问题,查询laravel.log文件查找相关问题 安装redis后在设置过期时间时,突然报错:MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set…
com.intellij.javaee.oss.admin.jmx.JmxAdminException: com.intellij.execution.ExecutionException 部署到intellij IDEA13上面,容器是tomcat7,IDEA配置两个artifacts包,一个是war,一个是exploded.当我用tomcat使用exploded包运行的时候,可以运行,但是使用war包的时候却报错. 在web.xml中加入下面这段话就行了: <context-param>…
[报错内容]: IntegrityError at /admin/users/userprofile/add/ (1452, 'Cannot add or update a child row: a foreign key constraint fails (`mxonline1`.`django_admin_log`, CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) R…
参考资料:虫师-<web接口开发与自动化测试:基于python语言> 日常学习Django框架中,创建了用户模型,但是页面功能验证时候,提示不能进行列表字段操作,debug好久,才找到问题原因,心累... 下面是大概过程和解决方案... models.py文件代码: from django.db import models # Create your models here. # 发布会表 class Event(models.Model): name = models.CharField(m…
Enter value for report_name: Using the report name awrrpt_1_591_593.htmlselect output from table(dbms_workload_repository.awr_report_html( :dbid,*ERROR at line 1:ORA-04063: package body "SYS.DBMS_WORKLOAD_REPOSITORY" has errorsReport written to…
报错内容 ERRORS: ?: (admin.E408) 'django.contrib.auth.middleware.AuthenticationMiddleware' must be in MIDDLEWARE in order to use the admin application. ?: (admin.E409) 'django.contrib.messages.middleware.MessageMiddleware' must be in MIDDLEWARE in order…