![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| S-125: Citrix Presentation Server IMA Vulnerability | iBot | Security Advisories (RSS) | 0 | 01-23-2008 03:30 PM |
| S-125: Citrix Presentation Server IMA Vulnerability | iBot | Security Advisories (RSS) | 0 | 01-22-2008 07:10 PM |
| Unix Citrix font problem | Esaia | UNIX for Advanced & Expert Users | 0 | 12-06-2007 06:13 AM |
| Citrix Library for UNIX | ditaru | High Level Programming | 0 | 12-15-2005 06:57 AM |
| Looking for something like Citrix for *nix | d11wtq | UNIX for Dummies Questions & Answers | 3 | 06-15-2005 05:57 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Citrix on Solaris
I am getting the following message
"Failed to establish all listening sockets" also /tmp/.X11-pipe gets to about 50 entries and then I can't start any more Citrix sessions until I manually remove those entries. Any ideas? |
|
||||
|
First find out how many files it must reach before nobody can connect to server via citrix anymore and roughly how much time it will take to reach that level.
Then write a while-loop script and run it in the background to constantly check. something like this. while true do someting .... if test `ls -1 /tmp/.X11-pipe | wc -l` -lt <some number> then sleep 3600 # in seconds else `rm -f /tmp/.X11-pipe` fi done so something like this script will run as nohup in the background constantly checking, sleeping -- waking up every hour -- do housekeeping and go to sleep again. The timing you may have to tweak to your needs - trial and error |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|