RE: install deploy on centos 7

2016-05-20 Thread Pascal Robert
cti...@lists.apple.com> de la part de jazzsalsa <jazzsa...@me.com> Envoyé : 20 mai 2016 17:46:18 À : Theodore Petrosky Cc : webobjects-dev@lists.apple.com Objet : Re: install deploy on centos 7 Ted, I don't think this will be a problem. The rpm spec says [1]: %post service ht

Re: install deploy on centos 7

2016-05-20 Thread jazzsalsa
Ted, I don’t think this will be a problem. The rpm spec says [1]: %post service httpd graceful > /dev/null 2>&1 And CentOS 7 uses 'systemctl restart httpd' i.s.o. 'service httpd restart' on CentOS 6, so the restart of httpd failed. You should do this yourself: sudo systemctl restart httpd

Re: install deploy on centos 7

2016-05-19 Thread jazzsalsa
Hi Ted, If you manually copy/past the below contents in this file it works: /etc/yum.repos.d/wocommunity.repo [wocommunity] name=WOCommunity baseurl=http://packages.wocommunity.org/CentOS/6/ enabled=1 gpgcheck=0 #gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6-LocalRepo protect=0 2. sudo

Re: install deploy on centos 7

2016-05-19 Thread Flavio Donadio
_ >>> De : webobjects-dev-bounces+probert=macti...@lists.apple.com >>> <mailto:webobjects-dev-bounces+probert=macti...@lists.apple.com> >>> <webobjects-dev-bounces+probert=macti...@lists.apple.com >>> <mailto:webobjects-dev-bounces+probert=

Re: install deploy on centos 7

2016-05-17 Thread Larry Mills-Gahl
re Petrosky <tedp...@yahoo.com> > Envoyé : 17 mai 2016 11:31:42 > À : WebObjects-Dev7 or Objet : install deploy on centos 7 > > I know I have used this before with success! > > https://wiki.wocommunity.org/display/documentation/Installing+a+deployment+environment+on+RedHat%

RE: install deploy on centos 7

2016-05-17 Thread Pascal Robert
de la part de Theodore Petrosky <tedp...@yahoo.com> Envoyé : 17 mai 2016 11:31:42 À : WebObjects-Dev Objet : install deploy on centos 7 I know I have used this before with success! https://wiki.wocommunity.org/display/documentation/Installing+a+deployment+environment+on+RedHat%2C+CentOS+or+

Deploy on CentOS

2014-04-23 Thread jazz
Hi list, I am running a simple webobjects app on CentOS. Installed with Pascal's excellent packages: http://wiki.wocommunity.org/display/documentation/Installing+a+deployment+environment+on+RedHat%2C+CentOS+or+Amazon+Linux wotaskd and javamonitor are running fine. I can deploy the app from the

Re: Deploy on CentOS

2014-04-23 Thread Theodore Petrosky
are the permission set on the application correctly? On Apr 23, 2014, at 3:59 PM, jazz jazzsa...@me.com wrote: Hi list, I am running a simple webobjects app on CentOS. Installed with Pascal's excellent packages:

Re: Deploy on CentOS

2014-04-23 Thread Theodore Petrosky
does it work if you turn off the firewall? chkconfig iptables off chkconfig iptables on to reenable it. the port for the app does not need to be open. I have a centos box with both SElinux and the firewall off. But I am behind a firewall appliance that only forwards ports 80 and 443. On

Re: Deploy on CentOS

2014-04-23 Thread Chuck Hill
I added several additional checks for launch problems, fixed bugs, and added better logging and messages for my presentation at WOWODC this year. If you want to build wotaskd and monitor yourself, you can clone my repo from here: https://github.com/chillatgvc/wonder/tree/WOWODC14 I still have

Re: Deploy on CentOS

2014-04-23 Thread David Avendasora
Have you tried launching the application from the command line? You’ll get launch errors right in the console that are otherwise hidden. Click on the “Configure” link for an *instance* (not the application itself, but a specific instance) and it will give you what arguments will be passed to

Re: Deploy on CentOS

2014-04-23 Thread David Avendasora
Hi Bart, Please keep replies on the list - even if they do seriously jeopardize my hard-earned reputation of being the “list idiot”. And this is a perfect example of why you should; I have now exhausted my entire wealth of deployment troubleshooting tips and tricks! I know there are lots of

Re: Deploy on CentOS

2014-04-23 Thread David Avendasora
On Apr 23, 2014, at 5:20 PM, David Avendasora webobje...@avendasora.com wrote: are far more expert than I on deployment issues than I. Before you all jump on it, yes, there are probably also lots of people far more expert in using the English language than I. Pascal, Ken, Philippe, and one

Re: Deploy on CentOS

2014-04-23 Thread Aaron Rosenzweig
Hi Bart, As a quick fix you can jump into your .woa and edit the executable right there… Note all the “export” statements then add one more: export NEXT_ROOT NEXT_ROOT=/usr/local/webobjects If that is not where your java WO stuff is “the root” then point it to where it is. That’s what I have

Re: Deploy on CentOS

2014-04-23 Thread Klaus Berkling
On Apr 23, 2014, at 12:59 PM, jazz jazzsa...@me.com wrote: wotaskd and javamonitor are running fine. I can deploy the app from the command line. Everything works fine. Does this mean that starting the instance from JavaMonitor does not actually start the instance? Are you starting the app

Re: Deploy on CentOS

2014-04-23 Thread Klaus Berkling
On Apr 23, 2014, at 2:34 PM, Aaron Rosenzweig aa...@chatnbike.com wrote: As a quick fix you can jump into your .woa and edit the executable right there… Note all the “export” statements then add one more: export NEXT_ROOT NEXT_ROOT=/usr/local/webobjects Yeah, not getting NEXT_ROOT

Re: Deploy on CentOS

2014-04-23 Thread Pascal Robert
Le 2014-04-23 à 17:34, Aaron Rosenzweig aa...@chatnbike.com a écrit : Hi Bart, As a quick fix you can jump into your .woa and edit the executable right there… Note all the “export” statements then add one more: export NEXT_ROOT NEXT_ROOT=/usr/local/webobjects NEXT_ROOT when using