Process stuck in "pipewr" state


 
Thread Tools Search this Thread
Operating Systems BSD Process stuck in "pipewr" state
# 1  
Old 06-09-2011
Process stuck in "pipewr" state

Hi Experts,

I am executing "svn" checkout command through my java code on a freeBSD machine. SVN checkout gets started , but when I run "top" command on my freebsd machine, I have observed that "svn" processes are stuck in "pipewr" state.

Any pointer for this problem?


Thanks,
akash
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Red Hat

Orphaned process "D" state

Hello, How can we clear the D state (orphaned) process? I have tried to kill it with kill -9 but not work. The server is critical, so is there anyway to clear the D process without rebooting the server? (9 Replies)
Discussion started by: Phat
9 Replies

2. Solaris

Solaris 5.10 "Move Pointer" stuck

Hey there, I joined this forum just now cause I need help with an old SUN machine at work. I work on a helpdesk and we use a SOLARIS 5.10 OS. Every once in a while we will try to move one of our windows out of the way to make room on the desktop, and sometimes the mouse doesn't release what we... (7 Replies)
Discussion started by: TRex_2005
7 Replies

3. IP Networking

Stuck at "bringing up interface eth0:"

Server is stuck at "Stuck at "bringing up interface eth0:"" after i hard reset the server I have IPMI access, please help me diagnose the cause if you can :( (0 Replies)
Discussion started by: postcd
0 Replies

4. UNIX for Advanced & Expert Users

Processes on FreeBSD are stuck in "pipewr" state

Hi Experts, I am executing "svn" checkout command through my java code on a freeBSD machine. SVN checkout gets started , but when I run "top" command on my freebsd machine, I have observed that "svn" processes are stuck in "pipewr" state. Any pointer for this problem? Thanks, akash (0 Replies)
Discussion started by: akash.mahakode
0 Replies

5. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

6. AIX

"fuser -c -k /XXX/XXXXXXX" Fails and stuck on AIX 6100-05-01-1016

Hi I was wondering if anybody has come across in a failure of fuser command. We have a backup script that is: fuser -c -k /XXX/XXXXXXX sync;sync umount /XXX/XXXXXXX/ backup -0 -f /dev/rmt0.1 -u /dev/XXXXXXXlv mount /XXX/XXXXXXX/ sync;sync The script is called from crontab via an... (2 Replies)
Discussion started by: ggovotsis
2 Replies

7. Solaris

Printer Entries stuck "finished printing"

On Solaris 8, when I do a lpstat -o: I have tried cancel 140828p-16974, but the entries remain New prints to this printer and others work successfully. Can anyone suggest how to get rid of these entries. Thanks (2 Replies)
Discussion started by: pmm
2 Replies

8. Red Hat

"service" , "process" and " daemon" ?

Friends , Anybody plz tell me what is the basic difference between "service" , "process" and " daemon" ? Waiting for kind reply .. .. (1 Reply)
Discussion started by: shipon_97
1 Replies

9. AIX

boot process stuck on "Welcome to AIX" banner

Good afternoon, I'm currently working on an IBM 9110-510, with an AIX 6.1 on it. Currently, I've put an HyperTerminal on the machine vty0. Folowing the procedure given by a support guy(§details), I'm able to get to the AIX banner ... (6 Replies)
Discussion started by: nilleb
6 Replies
Login or Register to Ask a Question
Git::SVN::Prompt(3)					User Contributed Perl Documentation				       Git::SVN::Prompt(3)

NAME
Git::SVN::Prompt - authentication callbacks for git-svn SYNOPSIS
use Git::SVN::Prompt qw(simple ssl_client_cert ssl_client_cert_pw ssl_server_trust username); use SVN::Client (); my $cached_simple = SVN::Client::get_simple_provider(); my $git_simple = SVN::Client::get_simple_prompt_provider(&simple, 2); my $cached_ssl = SVN::Client::get_ssl_server_trust_file_provider(); my $git_ssl = SVN::Client::get_ssl_server_trust_prompt_provider( &ssl_server_trust); my $cached_cert = SVN::Client::get_ssl_client_cert_file_provider(); my $git_cert = SVN::Client::get_ssl_client_cert_prompt_provider( &ssl_client_cert, 2); my $cached_cert_pw = SVN::Client::get_ssl_client_cert_pw_file_provider(); my $git_cert_pw = SVN::Client::get_ssl_client_cert_pw_prompt_provider( &ssl_client_cert_pw, 2); my $cached_username = SVN::Client::get_username_provider(); my $git_username = SVN::Client::get_username_prompt_provider( &username, 2); my $ctx = new SVN::Client( auth => [ $cached_simple, $git_simple, $cached_ssl, $git_ssl, $cached_cert, $git_cert, $cached_cert_pw, $git_cert_pw, $cached_username, $git_username ]); DESCRIPTION
This module is an implementation detail of the "git svn" command. It implements git-svn's authentication policy. Do not use it unless you are developing git-svn. The interface will change as git-svn evolves. DEPENDENCIES
SVN::Core. SEE ALSO
SVN::Client. INCOMPATIBILITIES
None reported. BUGS
None. perl v5.16.3 2013-06-10 Git::SVN::Prompt(3)