Re: Ajax Update Link not working on one server
Re: Ajax Update Link not working on one server
- Subject: Re: Ajax Update Link not working on one server
- From: Bastian Triller <email@hidden>
- Date: Sun, 03 Mar 2013 09:26:24 +0100
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@hidden> wrote:
>
> >
> > Am 07.02.2013 um 01:27 schrieb Jeffrey Schmitz <email@hidden>:
> >
> >> 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@hidden)
> > Help/Unsubscribe/Update your Subscription:
> >
> > This email sent to email@hidden
>
>
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list (email@hidden)
> Help/Unsubscribe/Update your Subscription:
>
> This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden