I install the os in vmware and login in using root account. then I login in from my own OS using test account. I find each other using command who -H. However, I use talk 192.168.9.10 or talk username or talk username@hostname, all does not work. And I have set mesg y yet. Who can help me or give me a tip? Thanks a lot for your attention. I am new, please tell me detailly if you get the ans...
by ibmscream - Solaris - 2009-06-15 21:57:23 阅读(1667) 回复(7)
Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. 没有设置什么pool啊,怎么会这样子啊
在TOMCAT中 什么原因出现下面的Exception? StandardWrapperValve[default]: Servlet.service() for servlet default threw exception java.net.SocketException: broken pipe at java.net.SocketOutputStream.socketWrite0(Native Method) at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) at java.net.SocketOutputStream.write(SocketOutputStream.java:136) at org.apache.catalina.connector.Res...
在snort生成的日志中出现以下信息 ICMP PATH MTU Denial of Service 报的是ICMP,但是我用tcpdump却没抓到icmp包 哪位朋友见过此种信息
Vault: " src="http://py.vaults.ca/gfx/dir1.gif" width=17 align=absMiddle> Applications - Ready to run programs written in, or using, Python. (5|86) " src="http://py.vaults.ca/gfx/dir1.gif" width=17 align=absMiddle> Database - Database related. (95) " src="http://py.vaults.ca/gfx/dir1.gif" width=17 align=absMiddle> Games - And game systems. (61) " src="http://py.vault...
server端的代码如下: while True: sock,address = server_socket.accept() data = sock.recv(bufsize) while data != '': data = sock.recv(bufsize) print 'sock closed by peer' string = 'nihao,client' a = 0 while True: a += sock.send(string) time.sleep(1) print a print 'write finish: %d' % a 客户端的代码就是连接,然后发送一段数据,然后close...