I am making db connection to sql server using dbi proxy.I have one window service(build using perlsvc) written in perl bundled dbiproxy.exe and myserver.exe.
myserver.exe return a available port when client make INET connection.myserver.exe checks port used and return a port. after that db connection is made from DBI.my $sock = new IO::Socket::INET( PeerAddr => $server, PeerPort => 9000, Proto => 'tcp', );
After all db operation we close $dbh handle. Here it should kill dbiproxy.exe running on server. But in some case or may be when too much or parallel connection is made, some zombie process created even after closing DBI connection. This cause on server side that dbiproxy.exe hold a port that should be free.my $dsn = "DBI:Proxy:hostname=$server;port=$port;dsn=DBI:ODBC:" . $sel +f->get_db_name(); $dbh = DBI->connect( $dsn, $self->get_db_user(), $self->get_db_password(), { RaiseError => 1, PrintError => 0 } );
I did some investigation and found out dbiproxy.exe created folders inside windows directory. like
C:\WINDOWS\TEMP\pdk-SYSTEM-$PID\dbiproxy.exe
I did wmic query to check the list of zombie process and deleted process and after that folder related to these process too.
It seems like now not every process is getting finished as a zombie.
In reply to DBI connection creates zombie process by prashantktyagi
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |