Hi Li,
java.net.BindException: Address already in use: bind
This error indicates, that there is already another process on your laptop using port 8080. You have two options:
- Exit the other process; on linux you can use
netstat -tulpn
to see which processes listen on which ports - Configure Apache Felix Web Console to use another port, using the
org.osgi.service.http.port=
configuration setting. See the BackendApp.bndrun for reference, which is running on port 8079 by default.
Regards,
Stefan