LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 02-13-2013, 07:02 AM   #1
mohammad alsharqi
LQ Newbie
 
Registered: Feb 2013
Posts: 13

Rep: Reputation: Disabled
is the port open or not ??


hi

i want to open port 9100 and the connect server could not to connect to my application

this my results of netstat tulpn


Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 localhost:9100 localhost:60991 TIME_WAIT
tcp 0 0 localhost:9100 localhost:16384 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60996 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60994 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60999 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60990 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60997 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60995 TIME_WAIT
tcp 0 0 localhost:9100 localhost:16385 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60993 TIME_WAIT
tcp 0 0 192.168.10.1:3128 192.168.10.2:52407 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60988 TIME_WAIT
tcp 0 0 192.168.10.1:3128 192.168.10.2:52405 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60987 TIME_WAIT
tcp 0 48 192.168.10.1:ssh 192.168.10.2:52182 ESTABLISHED
tcp 0 0 localhost:9100 localhost:60992 TIME_WAIT
tcp 0 0 192.168.10.1:3128 192.168.10.2:52406 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60998 TIME_WAIT
tcp 0 0 localhost:9100 localhost:60989 TIME_WAIT
tcp 0 0 localhost:9100 localhost:61000 TIME_WAIT
tcp 0 0 localhost:9100 localhost:16386 TIME_WAIT
Active UNIX domain sockets (w/o servers)
Proto RefCnt Flags Type State I-Node Path
unix 2 [ ] DGRAM 2720 @/org/kernel/udev/udevd
unix 5 [ ] DGRAM 3732 /dev/log
unix 3 [ ] STREAM CONNECTED 5044
unix 3 [ ] STREAM CONNECTED 5043
unix 2 [ ] DGRAM 4867
unix 2 [ ] DGRAM 4215
unix 2 [ ] DGRAM 3751
unix 3 [ ] STREAM CONNECTED 3626
unix 3 [ ] STREAM CONNECTED 3625
unix 3 [ ] STREAM CONNECTED 3624
unix 3 [ ] STREAM CONNECTED 3623
unix 3 [ ] STREAM CONNECTED 3617
unix 3 [ ] STREAM CONNECTED 3616
unix 3 [ ] STREAM CONNECTED 3606
unix 3 [ ] STREAM CONNECTED 3605
unix 3 [ ] STREAM CONNECTED 3601
unix 3 [ ] STREAM CONNECTED 3600
unix 3 [ ] STREAM CONNECTED 3598
unix 3 [ ] STREAM CONNECTED 3597
unix 3 [ ] STREAM CONNECTED 3591
unix 3 [ ] STREAM CONNECTED 3590
unix 3 [ ] STREAM CONNECTED 3589
unix 3 [ ] STREAM CONNECTED 3588
unix 3 [ ] STREAM CONNECTED 3587
unix 3 [ ] STREAM CONNECTED 3586
unix 3 [ ] STREAM CONNECTED 3585
unix 3 [ ] STREAM CONNECTED 3584
unix 3 [ ] DGRAM 2785
unix 3 [ ] DGRAM 2784
unix 3 [ ] STREAM CONNECTED 2715 @/com/ubuntu/upstart
unix 3 [ ] STREAM CONNECTED 2714



and this of netstat -atpn |grep 9100



tcp 0 0 127.0.0.1:9100 0.0.0.0:* LISTEN 1136/python
tcp 0 0 127.0.0.1:9100 127.0.0.1:16471 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16467 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16482 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16472 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16473 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16478 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16469 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16483 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16466 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16481 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16477 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16479 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16470 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16468 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16474 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16476 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16480 TIME_WAIT -
tcp 0 0 127.0.0.1:9100 127.0.0.1:16475 TIME_WAIT -

i want the rpc server connect properly

thanks and bye
 
Old 02-13-2013, 07:25 AM   #2
Highjo
Member
 
Registered: Jan 2007
Posts: 36

Rep: Reputation: 0
Hi,
Try telnet 127.0.0.1 9100 and tell us what you see

kindly have a look at this http://www.linuxquestions.org/questi...ubuntu-451282/

thanks

Last edited by Highjo; 02-13-2013 at 07:27 AM.
 
Old 02-13-2013, 07:41 AM   #3
mohammad alsharqi
LQ Newbie
 
Registered: Feb 2013
Posts: 13

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Highjo View Post
Hi,
Try telnet 127.0.0.1 9100 and tell us what you see

kindly have a look at this http://www.linuxquestions.org/questi...ubuntu-451282/

thanks
thanks for replay
i get this
trying 127.0.0.1
connected to 127.0.0.1
escape character is `^]`

and i expect there is another application try connect to it
 
Old 02-13-2013, 08:02 AM   #4
Highjo
Member
 
Registered: Jan 2007
Posts: 36

Rep: Reputation: 0
From what i see your port is opened. because when you do ctrl and ] you would have telnet prompt "telnet>".
if it's not opened it's either saying "trying to connect .... " or so or " Unable to connect to remote host: Connection refused"

maybe you might want to see if your application is able to connect to anything at all
 
Old 02-13-2013, 08:40 AM   #5
mohammad alsharqi
LQ Newbie
 
Registered: Feb 2013
Posts: 13

Original Poster
Rep: Reputation: Disabled
i've install videocache appilcation and seems could not connect to rpc server at this port 9100

i ask if another application than videocache is try to connect to rpc server
 
Old 02-13-2013, 09:15 AM   #6
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,646

Rep: Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969
Quote:
Originally Posted by mohammad alsharqi View Post
i've install videocache appilcation and seems could not connect to rpc server at this port 9100

i ask if another application than videocache is try to connect to rpc server
Could be...what other services do you have running on the server?? And the results of the "netstat -tulpn" command seem to be wrong, since it should also return the PID of all the running processes as the last column. Once you have the PID, you can do a "ps -ef | grep <PID number>" to find out what service it is.

Wild guess...do you have network printers? Port 9100 is typically used by network printers (been the 'standard' for HP for years...lots of other makers use it too), so CUPS or other print services may be conflicting. Would be far easier to change the port of your video app, than to change all the printers and CUPs.
 
Old 02-13-2013, 10:02 AM   #7
mohammad alsharqi
LQ Newbie
 
Registered: Feb 2013
Posts: 13

Original Poster
Rep: Reputation: Disabled
i do a s aux |grep python and get



proxy 664 0.0 0.1 44212 8336 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 665 0.0 0.1 44204 8328 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 666 0.0 0.1 44208 8332 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 667 0.0 0.1 44212 8336 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 668 0.0 0.1 44212 8336 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 669 0.0 0.1 44212 8336 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 670 0.0 0.1 44212 8336 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 671 0.0 0.1 44208 8332 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 672 0.0 0.1 44212 8336 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 673 0.0 0.1 44212 8336 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 675 0.0 0.1 44208 8332 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 677 0.0 0.1 44208 8332 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 678 0.0 0.1 44208 8332 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 681 0.0 0.1 44208 8332 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 682 0.0 0.1 44204 8328 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 686 0.0 0.1 44212 8336 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 687 0.0 0.1 44212 8336 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 690 0.0 0.1 44208 8332 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 693 0.0 0.1 44208 8332 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 698 0.0 0.1 44204 8328 ? Ssl 15:53 0:00 (python) /usr/share/videocache/videocache.py
proxy 1204 0.2 0.1 72436 9104 ? Sl 15:54 0:00 python /usr/sbin/vc-scheduler -s restart
proxy 1228 0.0 0.0 43872 8092 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1229 0.0 0.0 43872 8088 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1230 0.0 0.0 43872 8088 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1231 0.1 0.0 43876 8092 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1232 0.0 0.0 43872 8092 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1233 0.0 0.0 43872 8088 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1234 0.1 0.0 43868 8084 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1235 0.0 0.0 43872 8088 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1236 0.1 0.0 43864 8084 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1237 0.0 0.0 43876 8092 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1238 0.1 0.0 43868 8084 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1239 0.0 0.0 43868 8084 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1240 0.0 0.0 43872 8088 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1241 0.0 0.0 43876 8092 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1242 0.0 0.0 43872 8088 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1243 0.1 0.0 43876 8088 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1244 0.1 0.0 43872 8088 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1245 0.0 0.0 43872 8088 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1246 0.0 0.0 43876 8092 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1247 0.1 0.0 43868 8084 ? Ssl 15:54 0:00 (python) /usr/share/videocache/videocache.py
proxy 1363 4.1 0.0 43548 7592 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1364 4.1 0.0 43552 7596 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1365 4.0 0.0 43548 7588 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1366 4.0 0.0 43552 7596 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1367 4.0 0.0 43552 7596 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1368 4.1 0.0 43548 7588 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1369 4.1 0.0 43544 7588 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1370 5.0 0.0 43552 7596 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1371 5.0 0.0 43552 7596 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1372 4.8 0.0 43548 7592 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1373 5.0 0.0 43552 7596 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1374 4.8 0.0 43552 7592 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1375 4.8 0.0 43548 7592 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1376 5.0 0.0 43548 7592 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1377 5.0 0.0 43544 7588 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1378 4.8 0.0 43548 7588 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1379 5.0 0.0 43548 7592 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1380 5.0 0.0 43552 7596 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1381 5.0 0.0 43548 7592 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
proxy 1382 5.0 0.0 43544 7584 ? Ssl 16:00 0:00 (python) /usr/share/videocache/videocache.py
root 1445 0.0 0.0 3348 896 pts/0 S+ 16:00 0:00 grep --color=auto python



and i changed the proxy of my videocache to 1024 and ifaced the same error
 
Old 02-13-2013, 10:20 AM   #8
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,646

Rep: Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969
Quote:
Originally Posted by mohammad alsharqi View Post
i do a s aux |grep python and get
Ok, so why are you doing that??? What is the PID # from the netstat command?? Grep for that instead. And again, do you have any network printers????
Quote:
and i changed the proxy of my videocache to 1024 and ifaced the same error
What does the proxy have to do with an open port?? Is the video server behind a proxy server?

You have two simple choices:
  1. Find out what's using port 9100 now, and make it use something else (see previous post about how to find that out)
  2. Change your video server to use a different port
None of these things involve a proxy server, and you didn't mention that before. Please run the commands given, post the output, and please post a clear description of your environment. We don't know and can't guess what you have running.
 
Old 02-13-2013, 10:30 AM   #9
mohammad alsharqi
LQ Newbie
 
Registered: Feb 2013
Posts: 13

Original Poster
Rep: Reputation: Disabled
sorry iam not prof in ubuntu
i have ubuntu with squid server and now installed videocache application

is this command use to find out netstat -lnptu | grep 9100??

if it is i get this

tcp 0 0 127.0.0.1:9100 0.0.0.0:* LISTEN 1235/python

i don't have a network printers
 
Old 02-13-2013, 11:16 AM   #10
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,646

Rep: Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969
Quote:
Originally Posted by mohammad alsharqi View Post
sorry iam not prof in ubuntu i have ubuntu with squid server and now installed videocache application
You did not mention squid before, and is squid on the same server as the video app? If not, does the video server sit BEHIND or IN FRONT OF, the proxy? And what "videocache" application did you install? How did you install it? Where did you get it?

I'm guessing you mean "proficient", and you don't have to be...we'll help you, but you DO need to provide complete details.
Quote:
is this command use to find out netstat -lnptu | grep 9100?
if it is i get this
tcp 0 0 127.0.0.1:9100 0.0.0.0:* LISTEN 1235/python
Ok...so the process ID is 1235. Again, run a "ps -ef | grep 1235" to see what process is using that port, and AGAIN, either change it to be something else, or change your video app to be something else.
Quote:
i don't have a network printers
Do you have CUPS running on that server???? If so, try stopping it to see what happens.
 
Old 02-13-2013, 12:06 PM   #11
mohammad alsharqi
LQ Newbie
 
Registered: Feb 2013
Posts: 13

Original Poster
Rep: Reputation: Disabled
at first i am sorry if i disturb you

iam unprofessional in ubuntu and to be serious with you i have an network with clients and i want to cache video to save bandwidth
i'd installed the squid and videocache app with the same server

i applied this command now and i get this
proxy 1200 1 0 17:13 ? 00:00:01 python /usr/sbin/vc-scheduler -s start
root 1499 1467 0 17:23 pts/0 00:00:00 grep --color=auto 1200

what is the CUPS?
 
Old 02-13-2013, 12:08 PM   #12
mohammad alsharqi
LQ Newbie
 
Registered: Feb 2013
Posts: 13

Original Poster
Rep: Reputation: Disabled
this is the videocache's application website to cache video
http://cachevideos.com/
 
Old 02-13-2013, 01:00 PM   #13
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,646

Rep: Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969
Quote:
Originally Posted by mohammad alsharqi View Post
at first i am sorry if i disturb you iam unprofessional in ubuntu
You're not disturbing anyone, but unless you provide DETAILS, no one will be able to help you. The same is true for asking a question about ANYTHING...would you just say "My car won't start...the check engine light is on...what can it be?" to a mechanic? Or would you tell them what kind of car, engine, symptoms, etc? This is the same thing.
Quote:
and to be serious with you i have an network with clients and i want to cache video to save bandwidth i'd installed the squid and videocache app with the same server

i applied this command now and i get this
proxy 1200 1 0 17:13 ? 00:00:01 python /usr/sbin/vc-scheduler -s start
root 1499 1467 0 17:23 pts/0 00:00:00 grep --color=auto 1200
You applied WHAT command?? You didn't put in what you ran, so there's nothing what you posted above can tell us.
Quote:
what is the CUPS?
Common Unix Printing System (CUPS). Again, if it's running, it *MIGHT* have something to do with a problem, since (again) network printing typically runs on port 9100. And are you ABSOLUTELY SURE that there are NO PRINTERS anywhere on that network?

AGAIN:
  • Shut down any of the videocaching software completely.
  • Run the netstat command, and grep for 9100
  • Take the PID from that command, and run "ps -ef | grep <PID number>"
  • See what process is running on port 9100
  • Either stop or reconfigure that service to run on a different port.
And did you follow the instructions COMPLETELY on that website?? Because it tells you that the default port is 9100, but you can use any OTHER port above 1024. Have you just tried a different port?? And if you're not too familar with Linux, is there somone more experienced who could help you?
 
Old 02-13-2013, 02:13 PM   #14
ncdmr
LQ Newbie
 
Registered: Feb 2013
Location: Mechelen, Belgium
Distribution: Ubuntu, scientific Linux, Red Hat
Posts: 1

Rep: Reputation: Disabled
Hi, as root, issue 'lsof -i:9100' (note the adjacent : & the port, no space!). Will return the process that spawned the port.

From there, use - again as root - 'lsof -p <process>'. It will give you the list of all file(handler)s involved.

hth.
 
Old 02-13-2013, 04:13 PM   #15
mohammad alsharqi
LQ Newbie
 
Registered: Feb 2013
Posts: 13

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by TB0ne View Post
You're not disturbing anyone, but unless you provide DETAILS, no one will be able to help you. The same is true for asking a question about ANYTHING...would you just say "My car won't start...the check engine light is on...what can it be?" to a mechanic? Or would you tell them what kind of car, engine, symptoms, etc? This is the same thing.

You applied WHAT command?? You didn't put in what you ran, so there's nothing what you posted above can tell us.

Common Unix Printing System (CUPS). Again, if it's running, it *MIGHT* have something to do with a problem, since (again) network printing typically runs on port 9100. And are you ABSOLUTELY SURE that there are NO PRINTERS anywhere on that network?

AGAIN:
  • Shut down any of the videocaching software completely.
  • Run the netstat command, and grep for 9100
  • Take the PID from that command, and run "ps -ef | grep <PID number>"
  • See what process is running on port 9100
  • Either stop or reconfigure that service to run on a different port.
And did you follow the instructions COMPLETELY on that website?? Because it tells you that the default port is 9100, but you can use any OTHER port above 1024. Have you just tried a different port?? And if you're not too familar with Linux, is there somone more experienced who could help you?

yeah i am sorry but i told u i am not prof in the ubuntu

i use this command ps -ef | grep 1027 and i get
proxy 1027 1 0 17:13 ? 00:00:01 python /usr/sbin/vc-scheduler -s start
root 1499 1467 0 17:23 pts/0 00:00:00 grep --color=auto 1027

and i am absolute sure there is no printer
and i'd changed the port to 1024 and after reboot i faced the same error of port 9100 with 1024
i expect there is a problem in squid.conf (note:my squid v2) because the problem had disappeared with squid3

i attached my conf please find out if there is a problem with it

in the videocache application the trace.log used to detect a problem with the videocache
so i checked it and get this error
may be this help u to detect the problem
File "/usr/lib/python2.6/httplib.py", line 776, in _send_output
self.send(msg)
File "/usr/lib/python2.6/httplib.py", line 735, in send
self.connect()
File "/usr/lib/python2.6/httplib.py", line 716, in connect
self.timeout)
File "/usr/lib/python2.6/socket.py", line 514, in create_connection
raise error, msg
error: [Errno 111] Connection refused



iam sorry but the promoter of this application doesn't replay to my problem
Attached Files
File Type: txt squid.txt (8.0 KB, 15 views)
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
CentOS 5: iptables - cannot open port 80 and nat to port 8080 for Tomcat steve willett Linux - Networking 4 09-24-2010 04:03 AM
If I forward a port in iptables, does the port have to be open on the firewall? qwertyjjj Linux - Server 4 08-06-2009 09:22 AM
port 25 filtered despite firewall having port 25 open ille.pugil42 Linux - Security 8 03-09-2007 12:51 AM
best port scanner To scan open port in a network tanveer Linux - Security 8 01-21-2007 08:19 PM
cannot SFTP to SUSE 9.2 box, port 22 open, can putty in though using same port. jgrady Linux - Networking 6 03-29-2005 08:44 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 05:02 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration