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文件头部声明中没有加空格.
随机推荐
- Linux之grep的使用
基本介绍 Linux系统中grep命令是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹 配的行打印出来.grep全称是Global Regular Expression Print,表示全 ...
- python摸爬滚打之day18----instance, type, issubclass和反射
1.issubclass(a,b) ----> 判断a是否是b的子类. isinstance(a,b) ----> 判断a这个对象是否是b类型的(可以向上判断, 即考虑继承关系往父类 ...
- 17.0-uC/OS-III消息管理
消息传递 有些情况下任务或ISR与另一个任务间进行通信,这种信息交换叫做作业间的通信. 可以有两种方法实现这种通信: 全局变量. 发送消息. 1.果使用全局变量,任务或ISR就须确保它独占该变量.如果 ...
- 接口测试工具-Jmeter使用笔记(六:从文本读取参数)
使用场景:测试一个接口并发处理数据的能力,并且每次请求传入的参数都要不同. 解决方法--- CSV Data Set Config 列举一个实例,步骤中会侧重读取参数操作的说明,其他有疑问的步骤请查阅 ...
- 为什么mysql事务回滚后, 自增ID依然自增
事务回滚后,自增ID仍然增加,回滚后,自增ID仍然增加.比如当前ID是7,插入一条数据后,又回滚了.然后你再插入一条数据,此时插入成功,这时候你的ID不是8,而是9.因为虽然你之前插入回滚,但是ID还 ...
- 《More Accurate Question Answering on Freebase》文献笔记
bast-2015-CIKM CIKM全称是International Conference on Information and Knowledge Management 这篇文章主要采用采用lea ...
- Select input 两个元素的宽度高度跟设定值不一致的问题
在做登录框的时候,需要一个select 元素作为账号输入,一个input作为密码输入框.在css 文件中,将这两个元素的position 设置为relative ,并且width 设置为100%.刷新 ...
- sql语句中 “where 1=1” 的用处
通过拼凑sql语句,加入若干个where限制条件,如:select * from table "where conditionA" + ”and conditionB“ + ”an ...
- SQL Server通过BCP进行大批量数据导入导出
预置条件: 使用sa帐号登录SQL Server Management Studio,右键点击安全性-登录名-数据库用户名属性,设置服务器角色为sysadmin. 删除已存在的存储过程 String ...
- vue用npm安装删除模块element-ui mint-ui
vue用npm安装删除模块element-ui mint-ui 在vue项目中先引入了element-ui,后来发现移动版的需要用mint-ui,所以需要先卸载了再安装.卸载element-ui:np ...