Re: [Bug 300151] Re: ssh slow during logon, when ENTERING INTERACTIVE SESSION

2009-06-05 Thread ichudov
Yes, fixed in Jaunty.

i

On Sat, Jun 06, 2009 at 12:11:58AM -, Jeff Enns wrote:
 I'm just checking to see if this issue has been resolved.  The bug this
 was related to was fixed in a later release.  Let me know this is or is
 not the case.  Thank you!
 
 ** Changed in: consolekit
Status: New = Invalid
 
 ** Changed in: openssh
Status: New = Invalid
 
 ** Changed in: openssh (Ubuntu)
Status: New = Invalid


-- 
ssh slow during logon, when ENTERING INTERACTIVE SESSION
https://bugs.launchpad.net/bugs/300151
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 300151] Re: ssh slow during logon, when ENTERING INTERACTIVE SESSION

2008-11-24 Thread ichudov
** Also affects: consolekit
   Importance: Undecided
   Status: New

-- 
ssh slow during logon, when ENTERING INTERACTIVE SESSION
https://bugs.launchpad.net/bugs/300151
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


Re: [Bug 300151] Re: ssh slow during logon, when ENTERING INTERACTIVE SESSION

2008-11-24 Thread ichudov
On Mon, Nov 24, 2008 at 11:46:35PM -, James Westby wrote:
 This sounds similar to bug 284229, is console-kit-daemon using a lot
 of CPU on the system you are logging in to?

Yep, quite a bit of cpu used by it

-- 
ssh slow during logon, when ENTERING INTERACTIVE SESSION
https://bugs.launchpad.net/bugs/300151
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 300151] Re: ssh slow during logon, when ENTERING INTERACTIVE SESSION

2008-11-20 Thread ichudov
I think that I have a track. Based on similar su problems, I decided
to explore the possibility that it is the fault of dbus. Based on
results below, I believe it to be the case and I reassign this issue to
dbus. Restarting dbus fixes this issue.

So I did:

1) time how long ssh to localhost takes:

==time ssh localhost date
Thu Nov 20 22:55:54 CST 2008

real0m0.248s
user0m0.000s
sys 0m0.004s

2) Restarted dbus as root:

root:~ ###/etc/init.d/dbus restart
 * Stopping System Tools Backends system-tools-backends
   ...done.
 * Stopping bluetooth
   ...done.
 * Stopping Hardware abstraction layer hald
   ...done.
 * Stopping system message bus dbus
   ...done.
 * Starting system message bus dbus
   ...done.
 * Starting Hardware abstraction layer hald
   ...done.
 * Starting bluetooth
   ...done.
 * Starting System Tools Backends system-tools-backends
   ...done.

(this killed gnome-panel and stuff also, no biggy)

3) tried ssh again:
==time ssh localhost date
Thu Nov 20 22:56:06 CST 2008

real0m0.268s
user0m0.000s
sys 0m0.008s

So restarting dbus fixed this issue.


** Also affects: openssh
   Importance: Undecided
   Status: New

-- 
ssh slow during logon, when ENTERING INTERACTIVE SESSION
https://bugs.launchpad.net/bugs/300151
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 300151] Re: ssh slow during logon, when ENTERING INTERACTIVE SESSION

2008-11-20 Thread ichudov
oops, bad paste, first ssh took 25 seconds.

-- 
ssh slow during logon, when ENTERING INTERACTIVE SESSION
https://bugs.launchpad.net/bugs/300151
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 300151] [NEW] ssh slow during logon, when ENTERING INTERACTIVE SESSION

2008-11-19 Thread ichudov
Public bug reported:

I am using a Ubuntu Intrepid 32 bit server with all latest patches.

Logging on via ssh (USING KEYS) is incredibly, painfully slow.

I have done some investigation.

1. Slowness is mild after a reboot and, as time goes on, it becomes
progressively slower and sloowweerr and ssslllooowwweee.

2. If I run ssh -v, then I can see that the ssh process is stuck for
many seconds after saying entering interactive session.

3. This even happens if I do, from that server, a command ssh
localhost.

4. Disabling GSSAPI authentication, as well as saying UseDNS no, in
sshd_config, does not help.

5. A similar problems applies to use of su and can be more easily
debugged. If, as root, I say su - username date, it is also
incredibly slow. If I debug that with

  strace -o q -f su - myuserid date

then I see that su tries to connect to UNIX socket
/var/run/dbus/system_bus_socket, and then it is stuck doing poll(),
which remains unfinished. Not sure if it is related, but it could be.

munmap(0x7f21ab91a000, 2970)= 0
close(4)= 0
socket(PF_FILE, SOCK_STREAM, 0) = 4
connect(4, {sa_family=AF_FILE, path=/var/run/dbus/system_bus_socket}, 33) = 0
fcntl(4, F_GETFL)   = 0x2 (flags O_RDWR)
fcntl(4, F_SETFL, O_RDWR|O_NONBLOCK)= 0
fcntl(4, F_GETFD)   = 0
fcntl(4, F_SETFD, FD_CLOEXEC)   = 0
geteuid()   = 0
poll([{fd=4, events=POLLOUT, revents=POLLOUT}], 1, 0) = 1
write(4, \0, 1)   = 1
write(4, AUTH EXTERNAL 30\r\n, 18)= 18
poll([{fd=4, events=POLLIN, revents=POLLIN}], 1, -1) = 1
read(4, OK 951631a86cc350048c747bce491f8..., 2048) = 37
poll([{fd=4, events=POLLOUT, revents=POLLOUT}], 1, -1) = 1
write(4, BEGIN\r\n, 7)= 7
poll([{fd=4, events=POLLIN|POLLOUT, revents=POLLOUT}], 1, -1) = 1
writev(4, [{l\1\0\1\0\0\0\0\1\0\0\0n\0\0\0\1\1o\0\25\0\0\0/org/fre..., 128}, 
{, 0}], 2) = 128
gettimeofday({1227143564, 211248}, NULL) = 0
poll([{fd=4, events=POLLIN, revents=POLLIN}], 1, 25000) = 1
read(4, l\2\1\1\r\0\0\0\1\0\0\0E\0\0\0\6\1s\0\10\0\0\0:1.28259..., 2048) = 282
read(4, 0x24686e0, 2048)= -1 EAGAIN (Resource temporarily 
unavailable)
writev(4, [{l\1\0\1\304\0\0\0\2\0\0\0\273\0\0\0\1\1o\0#\0\0\0/org/..., 208}, 
{\274\0\0\0\0\0\0\0\t\0\0\0unix-user\0\1i\0\0\0\0\350\3..., 196}], 2) = 404
gettimeofday({1227143564, 213048}, NULL) = 0
poll(

** Affects: openssh (Ubuntu)
 Importance: Undecided
 Status: New

-- 
ssh slow during logon, when ENTERING INTERACTIVE SESSION
https://bugs.launchpad.net/bugs/300151
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs