質問編集履歴

1

発生しているエラーを追加しました。

2016/09/30 04:58

投稿

ruuusaamarki
ruuusaamarki

スコア468

test CHANGED
File without changes
test CHANGED
@@ -18,6 +18,12 @@
18
18
 
19
19
  vagrant upでは以下のように出ます。
20
20
 
21
+ vagrant halt → vagrant upでも同様です。
22
+
23
+ vagrant reloadも同様でした。
24
+
25
+
26
+
21
27
  ```
22
28
 
23
29
  vagrant up
@@ -78,6 +84,44 @@
78
84
 
79
85
 
80
86
 
87
+ vagrant suspend → vagrant resumeでは以下のように出ます。
88
+
89
+ ```
90
+
91
+ vagrant resume
92
+
93
+ ==> default: Waiting for machine to boot. This may take a few minutes...
94
+
95
+ The guest machine entered an invalid state while waiting for it
96
+
97
+ to boot. Valid states are 'restoring, running'. The machine is in the
98
+
99
+ 'aborted' state. Please verify everything is configured
100
+
101
+ properly and try again.
102
+
103
+
104
+
105
+ If the provider you're using has a GUI that comes with it,
106
+
107
+ it is often helpful to open that and watch the machine, since the
108
+
109
+ GUI often has more helpful error messages than Vagrant can retrieve.
110
+
111
+ For example, if you're using VirtualBox, run `vagrant up` while the
112
+
113
+ VirtualBox GUI is open.
114
+
115
+
116
+
117
+ The primary issue for this error is that the provider you're using
118
+
119
+ is not properly configured. This is very rarely a Vagrant issue.
120
+
121
+ ```
122
+
123
+
124
+
81
125
  vagrant packageでは以下のように出ます。
82
126
 
83
127
  ```
@@ -90,6 +134,40 @@
90
134
 
91
135
 
92
136
 
137
+ vagrant statusでは以下のように出ています。
138
+
139
+ ```
140
+
141
+ Current machine states:
142
+
143
+
144
+
145
+ default aborted (virtualbox)
146
+
147
+
148
+
149
+ The VM is in an aborted state. This means that it was abruptly
150
+
151
+ stopped without properly closing the session. Run `vagrant up`
152
+
153
+ to resume this virtual machine. If any problems persist, you may
154
+
155
+ have to destroy and restart the virtual machine.
156
+
157
+ ```
158
+
159
+
160
+
161
+ vagrant halt、vagrant suspendでは
162
+
163
+ ```
164
+
165
+ 何も表示されずプロンプトがでます。
166
+
167
+ ```
168
+
169
+
170
+
93
171
 
94
172
 
95
173
  ###試したこと