免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 10795 | 回复: 0

[FreeBSD] 绑定端口错误bind( 127.0.0.1:8002 ): Can't assign requested address [复制链接]

论坛徽章:
0
发表于 2008-04-10 10:58 |显示全部楼层
端口8002没有被占用
换其它的端口也是这样的错误

#uname -a
FreeBSD 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Thu Apr 10 09:26:06 UTC 2008

内核配制文件:

  1. cpu I686_CPU
  2. ident lhmwzy

  3. # To statically compile in device wiring instead of /boot/device.hints
  4. #hints "GENERIC.hints" # Default places to look for devices.

  5. #makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols

  6. options SCHED_ULE # 4BSD scheduler
  7. options PREEMPTION # Enable kernel thread preemption
  8. options INET # InterNETworking
  9. #options INET6 # IPv6 communications protocols
  10. #options SCTP # Stream Control Transmission Protocol
  11. options FFS # Berkeley Fast Filesystem
  12. options SOFTUPDATES # Enable FFS soft updates support
  13. #options UFS_ACL # Support for access control lists
  14. options UFS_DIRHASH # Improve performance on big directories
  15. options UFS_GJOURNAL # Enable gjournal-based UFS journaling
  16. #options MD_ROOT # MD is a potential root device
  17. #options NFSCLIENT # Network Filesystem Client
  18. #options NFSSERVER # Network Filesystem Server
  19. #options NFS_ROOT # NFS usable as /, requires NFSCLIENT
  20. #options MSDOSFS # MSDOS Filesystem
  21. #options CD9660 # ISO 9660 Filesystem
  22. options PROCFS # Process filesystem (requires PSEUDOFS)
  23. options PSEUDOFS # Pseudo-filesystem framework
  24. options GEOM_PART_GPT # GUID Partition Tables.
  25. options GEOM_LABEL # Provides labelization
  26. options COMPAT_43TTY # BSD 4.3 TTY compat [KEEP THIS!]
  27. options COMPAT_FREEBSD4 # Compatible with FreeBSD4
  28. options COMPAT_FREEBSD5 # Compatible with FreeBSD5
  29. options COMPAT_FREEBSD6 # Compatible with FreeBSD6
  30. #options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
  31. #options KTRACE # ktrace(1) support
  32. options SYSVSHM # SYSV-style shared memory
  33. options SYSVMSG # SYSV-style message queues
  34. options SYSVSEM # SYSV-style semaphores
  35. options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
  36. #options KBD_INSTALL_CDEV # install a CDEV entry in /dev
  37. options ADAPTIVE_GIANT # Giant mutex is adaptive.
  38. options STOP_NMI # Stop CPUS using NMI instead of IPI
  39. options AUDIT # Security event auditing

  40. # To make an SMP kernel, the next two lines are needed
  41. #options SMP # Symmetric MultiProcessor Kernel
  42. #device apic # I/O APIC

  43. # CPU frequency control
  44. device cpufreq

  45. # Bus support.
  46. device eisa
  47. device pci

  48. # Floppy drives
  49. device fdc

  50. # ATA and ATAPI devices
  51. device ata
  52. device atadisk # ATA disk drives
  53. #device ataraid # ATA RAID drives
  54. device atapicd # ATAPI CDROM drives
  55. #device atapifd # ATAPI floppy drives
  56. #device atapist # ATAPI tape drives
  57. options ATA_STATIC_ID # Static device numbering

  58. # SCSI Controllers
  59. #device ahb # EISA AHA1742 family
  60. #device ahc # AHA2940 and onboard AIC7xxx devices
  61. #options AHC_REG_PRETTY_PRINT # Print register bitfields in debug
  62. # output. Adds ~128k to driver.
  63. #device ahd # AHA39320/29320 and onboard AIC79xx devices
  64. #options AHD_REG_PRETTY_PRINT # Print register bitfields in debug
  65. # output. Adds ~215k to driver.
  66. #device amd # AMD 53C974 (Tekram DC-390(T))
  67. #device hptiop # Highpoint RocketRaid 3xxx series
  68. #device isp # Qlogic family
  69. #device ispfw # Firmware for QLogic HBAs- normally a module
  70. #device mpt # LSI-Logic MPT-Fusion
  71. #device ncr # NCR/Symbios Logic
  72. #device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
  73. #device trm # Tekram DC395U/UW/F DC315U adapters

  74. #device adv # Advansys SCSI adapters
  75. #device adw # Advansys wide SCSI adapters
  76. #device aha # Adaptec 154x SCSI adapters
  77. #device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
  78. #device bt # Buslogic/Mylex MultiMaster SCSI adapters

  79. #device ncv # NCR 53C500
  80. #device nsp # Workbit Ninja SCSI-3
  81. #device stg # TMC 18C30/18C50

  82. # SCSI peripherals
  83. #device scbus # SCSI bus (required for SCSI)
  84. #device ch # SCSI media changers
  85. #device da # Direct Access (disks)
  86. #device sa # Sequential Access (tape etc)
  87. #device cd # CD
  88. #device pass # Passthrough device (direct SCSI access)
  89. #device ses # SCSI Environmental Services (and SAF-TE)

  90. # RAID controllers interfaced to the SCSI subsystem
  91. #device amr # AMI MegaRAID
  92. #device arcmsr # Areca SATA II RAID
  93. #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID
  94. #device ciss # Compaq Smart RAID 5*
  95. #device dpt # DPT Smartcache III, IV - See NOTES for options
  96. #device hptmv # Highpoint RocketRAID 182x
  97. #device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
  98. #device iir # Intel Integrated RAID
  99. #device ips # IBM (Adaptec) ServeRAID
  100. #device mly # Mylex AcceleRAID/eXtremeRAID
  101. #device twa # 3ware 9000 series PATA/SATA RAID

  102. # RAID controllers
  103. #device aac # Adaptec FSA RAID
  104. #device aacp # SCSI passthrough for aac (requires CAM)
  105. #device ida # Compaq Smart RAID
  106. #device mfi # LSI MegaRAID SAS
  107. #device mlx # Mylex DAC960 family
  108. #device pst # Promise Supertrak SX6000
  109. #device twe # 3ware ATA RAID

  110. # atkbdc0 controls both the keyboard and the PS/2 mouse
  111. device atkbdc # AT keyboard controller
  112. device atkbd # AT keyboard
  113. device psm # PS/2 mouse

  114. device kbdmux # keyboard multiplexer

  115. device vga # VGA video card driver

  116. #device splash # Splash screen and screen saver support

  117. # syscons is the default console driver, resembling an SCO console
  118. #device sc

  119. device agp # support several AGP chipsets

  120. # Power management support (see NOTES for more options)
  121. #device apm
  122. # Add suspend/resume support for the i8254.
  123. device pmtimer

  124. # PCCARD (PCMCIA) support
  125. # PCMCIA and cardbus bridge support
  126. #device cbb # cardbus (yenta) bridge
  127. #device pccard # PC Card (16-bit) bus
  128. #device cardbus # CardBus (32-bit) bus

  129. # Serial (COM) ports
  130. #device sio # 8250, 16[45]50 based serial ports
  131. #device uart # Generic UART driver

  132. # Parallel port
  133. #device ppc
  134. #device ppbus # Parallel port bus (required)
  135. #device lpt # Printer
  136. #device plip # TCP/IP over parallel
  137. #device ppi # Parallel port interface device
  138. #device vpo # Requires scbus and da

  139. # If you've got a "dumb" serial or parallel PCI card that is
  140. # supported by the puc(4) glue driver, uncomment the following
  141. # line to enable it (connects to sio, uart and/or ppc drivers):
  142. #device puc

  143. # PCI Ethernet NICs.
  144. #device de # DEC/Intel DC21x4x (``Tulip'')
  145. #device em # Intel PRO/1000 adapter Gigabit Ethernet Card
  146. #device ixgb # Intel PRO/10GbE Ethernet Card
  147. #device le # AMD Am7900 LANCE and Am79C9xx PCnet
  148. #device txp # 3Com 3cR990 (``Typhoon'')
  149. #device vx # 3Com 3c590, 3c595 (``Vortex'')

  150. # PCI Ethernet NICs that use the common MII bus controller code.
  151. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
  152. device miibus # MII bus support
  153. #device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
  154. #device bfe # Broadcom BCM440x 10/100 Ethernet
  155. #device bge # Broadcom BCM570xx Gigabit Ethernet
  156. #device dc # DEC/Intel 21143 and various workalikes
  157. device fxp # Intel EtherExpress PRO/100B (82557, 82558)
  158. #device lge # Level 1 LXT1001 gigabit Ethernet
  159. #device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
  160. #device nfe # nVidia nForce MCP on-board Ethernet
  161. #device nge # NatSemi DP83820 gigabit Ethernet
  162. #device nve # nVidia nForce MCP on-board Ethernet Networking
  163. #device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
  164. #device re # RealTek 8139C+/8169/8169S/8110S
  165. device rl # RealTek 8129/8139
  166. #device sf # Adaptec AIC-6915 (``Starfire'')
  167. #device sis # Silicon Integrated Systems SiS 900/SiS 7016
  168. #device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
  169. #device ste # Sundance ST201 (D-Link DFE-550TX)
  170. #device stge # Sundance/Tamarack TC9021 gigabit Ethernet
  171. #device ti # Alteon Networks Tigon I/II gigabit Ethernet
  172. #device tl # Texas Instruments ThunderLAN
  173. #device tx # SMC EtherPower II (83c170 ``EPIC'')
  174. #device vge # VIA VT612x gigabit Ethernet
  175. #device vr # VIA Rhine, Rhine II
  176. #device wb # Winbond W89C840F
  177. #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')

  178. # ISA Ethernet NICs. pccard NICs included.
  179. #device cs # Crystal Semiconductor CS89x0 NIC
  180. # 'device ed' requires 'device miibus'
  181. #device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards
  182. #device ex # Intel EtherExpress Pro/10 and Pro/10+
  183. #device ep # Etherlink III based cards
  184. #device fe # Fujitsu MB8696x based cards
  185. #device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc.
  186. #device sn # SMC's 9000 series of Ethernet chips
  187. #device xe # Xircom pccard Ethernet

  188. # Wireless NIC cards
  189. #device wlan # 802.11 support
  190. #device wlan_wep # 802.11 WEP support
  191. #device wlan_ccmp # 802.11 CCMP support
  192. #device wlan_tkip # 802.11 TKIP support
  193. #device wlan_amrr # AMRR transmit rate control algorithm
  194. #device wlan_scan_ap # 802.11 AP mode scanning
  195. #device wlan_scan_sta # 802.11 STA mode scanning
  196. #device an # Aironet 4500/4800 802.11 wireless NICs.
  197. #device ath # Atheros pci/cardbus NIC's
  198. #device ath_hal # Atheros HAL (Hardware Access Layer)
  199. #device ath_rate_sample # SampleRate tx rate control for ath
  200. #device awi # BayStack 660 and others
  201. #device ral # Ralink Technology RT2500 wireless NICs.
  202. #device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
  203. #device wl # Older non 802.11 Wavelan wireless NIC.

  204. # Pseudo devices.
  205. device loop # Network loopback
  206. device random # Entropy device
  207. device ether # Ethernet support
  208. #device sl # Kernel SLIP
  209. #device ppp # Kernel PPP
  210. #device tun # Packet tunnel.
  211. device pty # Pseudo-ttys (telnet etc)
  212. #device md # Memory "disks"
  213. #device gif # IPv6 and IPv4 tunneling
  214. #device faith # IPv6-to-IPv4 relaying (translation)
  215. #device firmware # firmware assist module

  216. # The `bpf' device enables the Berkeley Packet Filter.
  217. # Be aware of the administrative consequences of enabling this!
  218. # Note that 'bpf' is required for DHCP.
  219. device bpf # Berkeley packet filter


  220. # FireWire support
  221. #device firewire # FireWire bus code
  222. #device sbp # SCSI over FireWire (Requires scbus and da)
  223. #device fwe # Ethernet over FireWire (non-standard!)
  224. #device fwip # IP over FireWire (RFC 2734,3146)
  225. #device dcons # Dumb console driver
  226. #device dcons_crom # Configuration ROM for dcons

复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP