Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. java.net.BindException: Cannot assign requested address
  2. at sun.nio.ch.Net.bind0(Native Method)
  3. at sun.nio.ch.Net.bind(Net.java:433)
  4. at sun.nio.ch.Net.bind(Net.java:425)
  5. at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
  6. at io.netty.channel.socket.nio.NioServerSocketChannel.doBind(NioServerSocketChannel.java:127)
  7. at io.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:554)
  8. at io.netty.channel.DefaultChannelPipeline$HeadContext.bind(DefaultChannelPipeline.java:1258)
  9. at io.netty.channel.AbstractChannelHandlerContext.invokeBind(AbstractChannelHandlerContext.java:512)
  10. at io.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:497)
  11. at io.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:980)
  12. at io.netty.channel.AbstractChannel.bind(AbstractChannel.java:250)
  13. at io.netty.bootstrap.AbstractBootstrap$2.run(AbstractBootstrap.java:363)
  14. at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163)
  15. at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:418)
  16. at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:449)
  17. at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:873)
  18. at java.lang.Thread.run(Thread.java:745)
  19.  
  20. #
  21. # hosts This file describes a number of hostname-to-address
  22. # mappings for the TCP/IP subsystem. It is mostly
  23. # used at boot time, when no name servers are running.
  24. # On small systems, this file can be used instead of a
  25. # "named" name server. Just add the names, addresses
  26. # and any aliases to this file...
  27. #
  28. # By the way, Arnt Gulbrandsen <agulbra@nvg.unit.no> says that 127.0.0.1
  29. # should NEVER be named with the name of the machine. It causes problems
  30. # for some (stupid) programs, irc and reputedly talk. :^)
  31. #
  32.  
  33. # For loopbacking.
  34. 127.0.0.1 localhost
  35. 127.0.0.1 localhost.localdomain localhost
  36.  
  37. # End of hosts.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement