Re: [WebDNA] Which linux distros for webdna?

This WebDNA talk-list message is from

2008


It keeps the original formatting.
numero = 101451
interpreted = N
texte = Here some instructions to install apache 2.0.63 and WebDNA 6.0 on a Fedora Core 9 release. Should be more or less the same on an Ubuntu or CentOS. Note apache is more picky than WebDNA itself: it will request its own libraries. Apache (must be compiled and will request its own libraries)) ====== * compilation files are inside /root/httpd-2.0.63 It is better to choose an incremental compilation, meaning if you want to add modules in the future, you will just have to work from this directory. * Execute and config with # ./configure --enable-rewrite --enable-so --enable-cgi --enable-ssl --enable-deflate --sysconfdir=/etc/apache2 --enable-so --enable-mime-magic * The ./configure checks that all packs and dependencies are available. We have had to add those two dependencies: # yum install gcc # yum install zlib-develhttpd-2.0.63 * Then we wrote the init file /etc/init.d/apachectl WebDNA ====== * we made a directory /etc/httpd and inside, a link to /etc/apache2 named conf. /etc/httpd/conf was linked to /etc/apache2 too, where apache configuration is. This is because we want WebDNA to find apache configuration files. * we installed two libraries that WebDNA will require # yum install compat-libstdc++-296 # yum install compat-libstdc++-33 * next move, we installed WebDNA rpm # yum localinstall WebCatalog-6.0-1.i386.rpm * /WebCatalog-Engine and /WebCatalog are not in the right place because of our compiled apache version, so we have to move them: # mv /var/www/cgi-bin/WebCatalogEngine /usr/local/apache2/cgi-bin/ # mv /var/www/html/WebCatalog /usr/local/apache2/htdocs/ * small fix in /var/www/cgi-bin/WebCatalogEngine/webdna.conf the line LoadModule webcatalog2_module /usr/local/apache2/cgi-bin/ WebCatalogEngine/mod_webcatalog2.so.2 should show LoadModule webcatalog2_module /usr/local/apache2/cgi-bin/ WebCatalogEngine/mod_webcatalog2.so.2-42 * /etc/apache2/httpd.conf must include webdna.conf like this: Include /usr/local/apache2/cgi-bin/WebCatalogEngine/webdna.conf * Time to modify UID and GID in httpd.conf User apache Group apache * change UID:GID for the files to show apache:apache # cd /usr/local/apache2/; chown apache:apache * * Then restart WebDNA and apache # /etc/init.d/apachectl stop; # /etc/init.d/apachectl start; # /etc/init.d/WebCatalog stop; # /etc/init.d/WebCatalog start; done! chris On Nov 18, 2008, at 3:53, Donovan Brooke wrote: > Kenneth Grome wrote: > [snip] >> If you had to make any special configuration changes before you got >> it to work this info would be exceedingly useful and very much >> appreciated too of course. >> Thanks! >> Sincerely, >> Ken Grome > > RH > Fedora > and Centos seem to be the most common flavors people use. > > As time passes, the more tweaking that has to be done. > (last development for the latest builds is approaching > what.. over 4 years now?).. > so, you can't expect this to be a plug and play sort of > thing unless you are installing from scratch, RH8, for > example... and even at that point, linux just takes some > technical know how... or in leu of know-how.. some tenacity > perhaps.(which more fits my personal traits) ;-) > > *I don't think I have to mention that we are, and will > be working on more compatible installs... sorry, no > time frames right now* > > For those wanting to install linux 6.0a now, I'd use > one of those flavors and start with an older .iso install > (around 2K6 maybe). Make sure to install an apache build > not much higher than 2.0.x. Those guidelines will get you > close and minimize the "tweaking". > > I actually installed 6.0a on Gutsy Gibbon (ubuntu 7.1x), but > I'm not suggesting it. I used a 3rd part utility > called alian to convert the .rpm packages into .deb packages... > then started tweaking from there. > > Christophe recently helped someone install WebDNA using > yum. > > http://yum.baseurl.org/ > > (perhaps a good tool in our current situation) > > He may have a step by step for that approach. > > Donovan > > > > > -- > Donovan D. Brooke PH/FAX: 1 (608) 291-2024 > ---------------------------------------------- > VP > WebDNA Software Corporation > 16192 Coastal Highway > Lewes, DE 19958 > --------------------------------------------------------- > This message is sent to you because you are subscribed to > the mailing list . > To unsubscribe, E-mail to: > archives: http://mail.webdna.us/list/talk@webdna.us > old archives: http://dev.webdna.us/TalkListArchive/ Associated Messages, from the most recent to the oldest:

    
  1. Re: [WebDNA] Which linux distros for webdna? ("William DeVaul" 2008)
  2. Re: [WebDNA] Which linux distros for webdna? (Donovan Brooke 2008)
  3. Re: [WebDNA] Which linux distros for webdna? (christophe.billiottet@webdna.us 2008)
  4. Re: [WebDNA] Which linux distros for webdna? (Donovan Brooke 2008)
  5. [WebDNA] Which linux distros for webdna? (Kenneth Grome 2008)
Here some instructions to install apache 2.0.63 and WebDNA 6.0 on a Fedora Core 9 release. Should be more or less the same on an Ubuntu or CentOS. Note apache is more picky than WebDNA itself: it will request its own libraries. Apache (must be compiled and will request its own libraries)) ====== * compilation files are inside /root/httpd-2.0.63 It is better to choose an incremental compilation, meaning if you want to add modules in the future, you will just have to work from this directory. * Execute and config with # ./configure --enable-rewrite --enable-so --enable-cgi --enable-ssl --enable-deflate --sysconfdir=/etc/apache2 --enable-so --enable-mime-magic * The ./configure checks that all packs and dependencies are available. We have had to add those two dependencies: # yum install gcc # yum install zlib-develhttpd-2.0.63 * Then we wrote the init file /etc/init.d/apachectl WebDNA ====== * we made a directory /etc/httpd and inside, a link to /etc/apache2 named conf. /etc/httpd/conf was linked to /etc/apache2 too, where apache configuration is. This is because we want WebDNA to find apache configuration files. * we installed two libraries that WebDNA will require # yum install compat-libstdc++-296 # yum install compat-libstdc++-33 * next move, we installed WebDNA rpm # yum localinstall WebCatalog-6.0-1.i386.rpm * /WebCatalog-Engine and /WebCatalog are not in the right place because of our compiled apache version, so we have to move them: # mv /var/www/cgi-bin/WebCatalogEngine /usr/local/apache2/cgi-bin/ # mv /var/www/html/WebCatalog /usr/local/apache2/htdocs/ * small fix in /var/www/cgi-bin/WebCatalogEngine/webdna.conf the line LoadModule webcatalog2_module /usr/local/apache2/cgi-bin/ WebCatalogEngine/mod_webcatalog2.so.2 should show LoadModule webcatalog2_module /usr/local/apache2/cgi-bin/ WebCatalogEngine/mod_webcatalog2.so.2-42 * /etc/apache2/httpd.conf must include webdna.conf like this: Include /usr/local/apache2/cgi-bin/WebCatalogEngine/webdna.conf * Time to modify UID and GID in httpd.conf User apache Group apache * change UID:GID for the files to show apache:apache # cd /usr/local/apache2/; chown apache:apache * * Then restart WebDNA and apache # /etc/init.d/apachectl stop; # /etc/init.d/apachectl start; # /etc/init.d/WebCatalog stop; # /etc/init.d/WebCatalog start; done! chris On Nov 18, 2008, at 3:53, Donovan Brooke wrote: > Kenneth Grome wrote: > [snip] >> If you had to make any special configuration changes before you got >> it to work this info would be exceedingly useful and very much >> appreciated too of course. >> Thanks! >> Sincerely, >> Ken Grome > > RH > Fedora > and Centos seem to be the most common flavors people use. > > As time passes, the more tweaking that has to be done. > (last development for the latest builds is approaching > what.. over 4 years now?).. > so, you can't expect this to be a plug and play sort of > thing unless you are installing from scratch, RH8, for > example... and even at that point, linux just takes some > technical know how... or in leu of know-how.. some tenacity > perhaps.(which more fits my personal traits) ;-) > > *I don't think I have to mention that we are, and will > be working on more compatible installs... sorry, no > time frames right now* > > For those wanting to install linux 6.0a now, I'd use > one of those flavors and start with an older .iso install > (around 2K6 maybe). Make sure to install an apache build > not much higher than 2.0.x. Those guidelines will get you > close and minimize the "tweaking". > > I actually installed 6.0a on Gutsy Gibbon (ubuntu 7.1x), but > I'm not suggesting it. I used a 3rd part utility > called alian to convert the .rpm packages into .deb packages... > then started tweaking from there. > > Christophe recently helped someone install WebDNA using > yum. > > http://yum.baseurl.org/ > > (perhaps a good tool in our current situation) > > He may have a step by step for that approach. > > Donovan > > > > > -- > Donovan D. Brooke PH/FAX: 1 (608) 291-2024 > ---------------------------------------------- > VP > WebDNA Software Corporation > 16192 Coastal Highway > Lewes, DE 19958 > --------------------------------------------------------- > This message is sent to you because you are subscribed to > the mailing list . > To unsubscribe, E-mail to: > archives: http://mail.webdna.us/list/talk@webdna.us > old archives: http://dev.webdna.us/TalkListArchive/ christophe.billiottet@webdna.us

DOWNLOAD WEBDNA NOW!

Top Articles:

Talk List

The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...

Related Readings:

WebDNA HitLogger available (was Signal Raised Error) (1997) Re:E-mailer application times out (1998) searching by date (1998) ShowIf Question (1998) RE: [WebDNA] bug with max and startat (2010) WebCat2b15MacPlugin - showing [math] (1997) Database Program (1997) Authorize.net, SIM, tcpconnect and applescript (2003) WebCat3.04/w*4/OS8.5.1 and aliases (1999) Search Command, multiple dbs, etc. --further elucidation needed (2000) [random] only for 1-100??? (1997) WebCatalog Mac 2.1b3 (1997) IIS Brain Dead (1998) HTML Editors (1997) OFF-TOPIC: Lending investors ... (2002) PIXO support (1997) WebCat2b13 Mac plugin - [sendmail] and checkboxes (1997) rn doesn't work on date fields (1998) Searchable WebCat (etc.) Docs ? (1997) country of origin from IPADDRESS??? (2001)