mapping values are not allowed in this context at line 115 column 10
/opt/vagrant/embedded/lib/ruby/2.4./psych.rb::in `parse': (<unknown>): mapping values are not allowed in this context at line 115 column 10 (Psych::SyntaxError)
from /opt/vagrant/embedded/lib/ruby/2.4./psych.rb::in `parse_stream'
from /opt/vagrant/embedded/lib/ruby/2.4./psych.rb::in `parse'
from /opt/vagrant/embedded/lib/ruby/2.4./psych.rb::in `load'
from /Users/qudian/Homestead/Vagrantfile::in `block in <top (required)>'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/config/v2/loader.rb::in `load'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/config/loader.rb::in `block ( levels) in load'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/config/loader.rb::in `each'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/config/loader.rb::in `block in load'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/config/loader.rb::in `each'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/config/loader.rb::in `load'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/vagrantfile.rb::in `initialize'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/environment.rb::in `new'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/environment.rb::in `vagrantfile'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/environment.rb::in `host'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/environment.rb::in `block in action_runner'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/action/runner.rb::in `run'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/environment.rb::in `hook'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./lib/vagrant/environment.rb::in `unload'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./bin/vagrant::in `ensure in <main>'
from /opt/vagrant/embedded/gems/2.1./gems/vagrant-2.1./bin/vagrant::in `<main>'
启动homestead的时候报如上错误,经查询,错误原因为:
这错误,真骚啊。。。。。。
mapping values are not allowed in this context at line 115 column 10的更多相关文章
- 【docker】 yaml.scanner.ScannerError: mapping values are not allowed here in "./docker-compose.yml", line 60, column 35
在启动docker-compose 时候 报错了 命令: docker-compose up -d && docker-compose logs -f 错误代码: 解决 出现这个错误的 ...
- YAML配置:mapping values are not allowed here
在配置Eureka服务器配置文件的时候,出现了mapping values not allowed here的错误,原因是的冒号 ”:“后面没有空格. 原因分析:yml文件中,键值对是以": ...
- 【问题解决】Flasgger mapping values are not allowed here?
参考来源:https://stackoverflow.com/questions/9055371/python-and-pyaml-yaml-scanner-scannererror-mapping- ...
- PLS-00357: Table,View Or Sequence reference 'SEQ_TRADE_RECODE.NEXTVAL' not allowed in this context
oracle数据库: 为了使ID自增,建了序列后,创建触发器: create or replace TRIGGER TRIG_INSERT_TRADE_RECODE BEFORE INSERT ON ...
- ERR only (P)SUBSCRIBE / (P)UNSUBSCRIBE / PING / QUIT allowed in this context
封装Redis发布订阅时,SUB时,又想探测具体Channel的状态,于是执行PUBSUB CHNNALES命令,报 ERR only (P)SUBSCRIBE / (P)UNSUBSCRIBE / ...
- 报错:严重: Servlet.service() for servlet [jsp] in context with path [/20161116-Struts2-6] threw exception [/index.jsp (line: 13, column: 20) No tag "textfiled" defined in tag library imported with prefix
严重: Servlet.service() for servlet [jsp] in context with path [/20161116-Struts2-6] threw exception [ ...
- 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'groups)VALUES('1','hh','hh@163.com','Boss')' at line 1
mysql8.0版本 在已存在的表里插入一条数据 insert INTO api_user(id,username,email,groups)VALUES('1','hh','hh@163.com', ...
- FATAL bad indentation of a mapping entry at line 83, column 3: branch: master 已解决;
部署hexo 时候,修改完_config.yml 文件后更新报错如下,问题解决: FATAL bad indentation of a mapping entry at line 83, colum ...
- YAMLException: can not read a block mapping entry; a multiline key may not be an implicit key at line 5, column 1:
创建的md文件头部声明中没有加空格.
随机推荐
- GIL学习
GIL锁 一.GIL的简单概述 二.GIL对于多线程的影响 三.解决GIL对于多线程影响的方案 回到顶部 一.GIL的简单概述 1.概念 GIL ( Global Interperter Lock ) ...
- java框架之Struts2(4)-拦截器&标签库
拦截器 概述 Interceptor (拦截器):起到拦截客户端对 Action 请求的作用. Filter:过滤器,过滤客户端向服务器发送的请求. Interceptor:拦截器,拦截的是客户端对 ...
- PowerBI新功能: 自定义数据连接器(Data Connector)
你是不是觉得原有的数据连接器(Data Connector)列表,就像女人的衣柜,总少那么一件你想要的呐? 现在,你的救星来了!你可以自己造一个了! Power BI的数据连接器(Data Conne ...
- python2精确除法
python2和python3除法的最大区别: python2: print 500/1000 python2结果:取整数部分,小数并没有保留 0 Process finished with exit ...
- Python WebSocket长连接心跳与短连接
python websocket 安装 pip install websocket-client 先来看一下,长连接调用方式: ws = websocket.WebSocketApp("ws ...
- mysql----------利用navicat查看两个数据库之间的差异
- 分治法——快速排序(quicksort)
先上代码 #include <iostream> using namespace std; int partition(int a[],int low, int high) { int p ...
- Shell脚本:while read line无法读取最后一行的问题
[1]Shell脚本:while read line无法读取最后一行的问题 刚刚利用shell脚本处理日志文件时,发现了一个问题:while read line无法读取到最后一行 通过编辑器可以看到待 ...
- RFM用户分层模型简介
RFM用户分层模型在实际商业活动的数据分析中运用的还是挺多的,主要用于用户.商品.门店等等的分群和细分层次,分群之后就可以进行定向精准营销和推广以及促活和留存等等的运营活动. RFM是一种用户分层模型 ...
- 移动端项目在ios上输入框聚焦难解决方案
由于引入fastclick导致ios端input.textarea输入框难以点击聚焦,解决方案如下: 找到项目中的fastclick依赖或在main.js中改写fastclick的focus实现.