if the connect time takes long, check if you're ssh server tries to
reverse dns your hostname. You can turn that off on OpenSSH with UseDNS
no in /etc/ssh/sshd_config.

Another long-connect issue I had is with CentOS/Redhat servers, which
try Kerberos auth. To turn that off use
$ ssh -o "GSSAPIAuthentication no" user@host
or put that in your ~/.ssh/config
Host host
User user
GSSAPIAuthentication no

To avoid the "bandwidth problem" I use rsync to manually sync my apps:
$ rsync -zavPc /path/to/app.woa user@host:/path/to/dest/applications
One probably want a backup before sync'ing:
$ ssh user@host cp -a /path/to/dest/applications/app.woa{,-`date +%F`}

Am Samstag, den 02.03.2013, 18:10 -0600 schrieb Jeffrey Schmitz:
> Hi Maik,
>    I've avoided doing that thus far because of the size it makes my project.  
> ssh'ing to the server takes a LONG time that way.  Perhaps there's a way to 
> copy just the changed modules though?  Have tried a few times to look at 
> Jenkins, etc. but just couldn't get things running.
> 
> Jeff
> 
> On Feb 7, 2013, at 12:18 AM, Musall Maik <[email protected]> wrote:
> 
> > 
> > Am 07.02.2013 um 01:27 schrieb Jeffrey Schmitz <[email protected]>:
> > 
> >> The problem was a library mismatch.  
> > 
> > What library was that?
> > 
> > You should embed all required libraries in the deployment package to remove 
> > dependencies on the state of the machines you install it to. Know what I 
> > mean?
> > 
> > Maik
> > 
> > 
> > _______________________________________________
> > Do not post admin requests to the list. They will be ignored.
> > Webobjects-dev mailing list      ([email protected])
> > Help/Unsubscribe/Update your Subscription:
> > https://lists.apple.com/mailman/options/webobjects-dev/jeff%40netbrackets.com
> > 
> > This email sent to [email protected]
> 
> 
>  _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list      ([email protected])
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/webobjects-dev/bastian.triller%40gmail.com
> 
> This email sent to [email protected]


 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to