Having followed the directions here: http://www.ember-cli.com/user-guide/#getting-started I am working to run ember server as follows, with error included.
# ember server
version: 1.13.1
Livereload failed on http://0.1.0.1:35729. It is either in use or you do not have permission.
I have used grunt in the past, and I also use Anvil, but both appear to be inactive right now. Also, tried lost:
# sudo lsof -iTCP:35729
And no items are returned.
Thanks for the reference. I do appreciate it.
It is not a true duplicate, though, as there appears to be no workaround in this case. No way to start ember serve that actually runs.
Figured this one. Embarrassed...
The server was trying to launch on IP address 0.1.0.1, and I am not sure how this IP ever works 鈥撀爌erhaps a virtual machine setup by the test system.
At any rate, adding host and port to my .ember-cli fixed it. The entire file looks like:
{
"disableAnalytics": false,
"port": "8080",
"watcher": "polling",
"host": "localhost"
}
The server was trying to launch on IP address 0.1.0.1, and I am not sure how this IP ever works 鈥撀爌erhaps a virtual machine setup by the test system.
the ember-cli server?
Most helpful comment
Figured this one. Embarrassed...
The server was trying to launch on IP address 0.1.0.1, and I am not sure how this IP ever works 鈥撀爌erhaps a virtual machine setup by the test system.
At any rate, adding host and port to my .ember-cli fixed it. The entire file looks like: