Difference between revisions of "Xebra Installation"

(Windows Installer (NEW))
(Windows Installer (NEW))
Line 17: Line 17:
  
 
=Windows Installer (NEW)=
 
=Windows Installer (NEW)=
{{Note| This installer was tested with Xebra revision 80407, EiffelStudio 6.5.8.294, on Windows XP SP2}
+
{{Note| This installer was tested with Xebra revision 80407, EiffelStudio 6.5.8.294, on Windows XP SP2}}
  
  

Revision as of 12:17, 24 August 2009

About | Installation | Documentation | Tutorials | Frequently Asked Questions


Installations

There are two ways to install Xebra:

  • Automatic (Installer/Script)
  • Manual (Step-by-step guide)

Ubuntu Installation Script

Information.png Note: This script was tested with Xebra revision 79737, EiffelStudio 6.5.7.9553 ($ISE_EIFFEL) and $EIFFEL_SRC revision 79737. The env vars $EIFFEL_SRC, $ISE_EIFFEL, $ISE_PLATFORM and $ISE_LIBRARY are expected to be set. ISE_LIBRARY is set to EIFFEL_SRC

There is an installation script available at https://svn.eiffel.com/eiffelstudio/trunk/Src/framework/web/xebra/tools/scripts/install_xebra_ubuntu.sh

The script expects $XEBRA_DEV, $EIFFEL_SRC, $ISE_EIFFEL and $ISE_LIBRARY to be set. It will checkout xebra to $XEBRA_DEV, download, install and configure apache 2.2.11 to $XEBRA_DEV/httpd. Apache will be configured to listen on port 55000 (instead of 80) in order to not interfere with an already installed http server. After the script was successfully run see tutorials for how to start the server.

Windows Installer (NEW)

Information.png Note: This installer was tested with Xebra revision 80407, EiffelStudio 6.5.8.294, on Windows XP SP2


There is a windows installer available for revision 80396 at https://svn.origo.ethz.ch/eiffelstudio/trunk/Src/framework/web/xebra/tools/installer/win/innosetup/output/setup.exe

It was tested with Eiffel Studio Eiffel65_gpl_80294-windows.msi and Windows XP SP2.

You have to adapt two files in ISE_LIBRARY to make it work since there is a bug in the eiffel argument parser library:

  • In the class ISE_EIFFEL/experimental/library/argument_parser/parsers/argument_terminal_source.e:
    • In the feature arguments: ARRAY [STRING] replace the line
create Result.make (1, l_count)

with

create Result.make_filled ("", 1, l_count)
  • In the class argument_base_parser.e:
    • In the feature arguments: ARRAY [STRING] replace the line
create Result.make (1, l_result.count)

with

create Result.make_filled ("", 1, l_result.count)

Manual Installation

Checkout Xebra

Install HTTP Server

Ubuntu 9.04 with Apache

Note:

  • Mod_xebra does currently not run with the apache distribution that comes with ubuntu.


  • Download apache unix source from http://httpd.apache.org/download.cgi
  • Extract
  • Define $APACHE2 where you want to install apache, e.g. to $XEBRA_DEV/httpd
  • Run the following commands in the extracted folder:
CFLAGS="-ggdb"
./configure --prefix={path were apache should be installed}
make
make install
  • Compile the module by running
cd $XEBRA_DEV/c_projects/apache_mod_xebra
$APACHE2/bin/apxs -c -Wc,-ggdb -I$ISE_EIFFEL/studio/spec/$ISE_PLATFORM/include mod_xebra.c mod_xebra.h
  • Install the module to apache by running
$APACHE2/bin/apxs -i mod_xebra.la
  • Add the following lines to Apache2.2\conf\httpd.conf:
#Xebra Module
LoadModule xebra_module modules/mod_xebra.so
 
 <IfModule xebra_module>
  AddHandler mod_xebra .xeb
  AddHandler mod_xebra .xrpc
  XebraServer_port 55001
  XebraServer_host "127.0.0.1"
  XebraServer_max_upload_size 10000000
  XebraServer_upload_path "/tmp"
  DirectoryIndex index.xeb
 <Files ~ "\.(ini|e|ecf)$">
  Order allow,deny
  Deny from all
 </Files>
 <Directory ~ "EIFGENs">
  Order allow,deny
  Deny from all
 </Directory>
</IfModule>
  • Create the directory /tmp or choose another temp upload directory.
  • Restart apache
$APACHE2/bin/apachectl restart
  • Browse to http://localhost/test.xeb. You should see a message saying "Cannot connect to XebraServer. See apache error log."
  • Hint: keep an eye on the apache error log tail -f $APACHE2/logs/error_log

Windows with Apache

Note

  • If mod_xebra.so was compiled with VS2008, it has a delay-load dependency on the Visual C++ 9.0 debug runtime library, msvcr90d.dll. This dll comes with Visual Studio 2008 C++ including the free Visual Studio 2008 C++ Express edition. This file can be copied in to the System32 directory. If this DLL is not found you will get an Apache error Cannot load C:/Xebra/httpd/modules/mod_xebra.so into server: This application has failed to start because the application configuration is incorrect.


  • Download apache windows binary from http://httpd.apache.org/download.cgi
  • Install (Choose Custom Installation and install Build Headers and Libraries as well)
  • Copy $XEBRA_DEV/c_projects/apache_mod_xebra/mod_xebra.so to your Apache2.2\modules folder.
  • Add the following lines to Apache2.2\conf\httpd.conf:
#Xebra Module
LoadModule xebra_module modules/mod_xebra.so
 
 <IfModule xebra_module>
  AddHandler mod_xebra .xeb
  AddHandler mod_xebra .xrpc
  XebraServer_port 55001
  XebraServer_host "127.0.0.1"
  XebraServer_max_upload_size 10000000
  XebraServer_upload_path "c:\tmp"
  DirectoryIndex index.xeb
 <Files ~ "\.(ini|e|ecf)$">
  Order allow,deny
  Deny from all
 </Files>
 <Directory ~ "EIFGENs">
  Order allow,deny
  Deny from all
 </Directory>
</IfModule>
  • Create the directory c:\tmp or choose another temp upload directory.
  • Restart Apache
  • Browse to http://localhost/test.xeb. You should see the a message saying "Cannot connect to XebraServer. See apache error log."

Windows7 with IIS7

  • Open %XEBRA_DEV%\c_projects\iis_xebra_handler\XebraEventSourceInstaller\XebraEventSourceInstaller.sln in VS2008
  • Compile and run (This will install the XebraHandler source to the Windows Event Log. This cannot be performed by the handler because it lacks permissions.)
  • (Optional) Open %XEBRA_DEV%\c_projects\iis_xebra_handler\Xebra.sln in VS2008 and compile
  • Create a new site in IIS and point it to %XEBRA_DEV%\www
  • Copy %XEBRA_DEV%\c_projects\iis_xebra_handler\website\web.config to %XEBRA_DEV%\www
  • Copy %XEBRA_DEV%\c_projects\iis_xebra_handler\website\bin to %XEBRA_DEV%\www

Mac OS X with Apache

Note:

  • If you're using the version of EiffelStudio from MacPorts, environment variables must be set within the startup script. /Applications/MacPorts/Eiffel64/EiffelStudio/Contents/Resources/EiffelLauncher
  • Save yourself a ton of hassle and just sudo chmod -R 777 * both the $ISE_EIFFEL and $EIFFEL_SRC directories.
  • Get Apache V2 from Mac Ports
 sudo port install apache2
  • Copy $XEBRA_DEV/www/* to /opt/local/apache2/htdocs
  • Compile the module by running
cd $XEBRA_DEV/c_projects/apache_mod_xebra
sudo /opt/local/apache2/bin/apxs -c -Wc,-ggdb -I$ISE_EIFFEL/studio/spec/$ISE_PLATFORM/include mod_xebra.c mod_xebra.h
  • Install the module to apache by running
sudo /opt/local/apache2/bin/apxs -i mod_xebra.la
  • Prepare to edit the protected httpd.conf file by running the command:
 sudo /Applications/TextEdit.app/Contents/MacOS/TextEdit
 Within TextEdit, which now is running under sudo, open /opt/local/apache2/conf/httpd.conf
  • Add the following lines to /opt/local/apache2/conf/httpd.conf:
#Xebra Module
LoadModule xebra_module modules/mod_xebra.so
 
 <IfModule xebra_module>
  AddHandler mod_xebra .xeb
  AddHandler mod_xebra .xrpc
  XebraServer_port 55001
  XebraServer_host "127.0.0.1"
  XebraServer_max_upload_size 10000000
  XebraServer_upload_path "/tmp"
  DirectoryIndex index.xeb
 <Files ~ "\.(ini|e|ecf)$">
  Order allow,deny
  Deny from all
 </Files>
 <Directory ~ "EIFGENs">
  Order allow,deny
  Deny from all
 </Directory>
</IfModule>
  • Create the directory /tmp or choose another temp upload directory.
  • The default MacPorts apache install will listen on port 80
  • Restart apache
sudo /opt/local/apache2/bin/apachectl restart
  • Browse to http://localhost/test.xeb. You should see a message saying "Cannot connect to XebraServer. See apache error log."
  • Hint: keep an eye on the apache error log tail -f $APACHE2/logs/error_log

Compile the Translator and Server

  • First we need to compile the xebra precompile library:

Linux

ec -experiment -config $XEBRA_DEV/eiffel_projects/library/xebra_precompile/xebra_precompile.ecf -target xebra_precompile -c_compile -clean -precompile

Windows

ec -experiment -config %XEBRA_DEV%\eiffel_projects\library\xebra_precompile\xebra_precompile.ecf -target xebra_precompile -c_compile -clean -precompile


  • Then run:

Linux

ec -experiment -config $XEBRA_DEV/eiffel_projects/xebra_translator/xebra_translator-voidunsafe.ecf -target xebra_translator -c_compile -clean -finalize
 
ec -experiment -config $XEBRA_DEV/eiffel_projects/xebra_server/xebra_server-voidunsafe.ecf -target xebra_server -c_compile -clean -finalize

Windows

ec -experiment -config %XEBRA_DEV%\eiffel_projects\xebra_translator\xebra_translator-voidunsafe.ecf -target xebra_translator -c_compile -clean -finalize
 
ec -experiment -config %XEBRA_DEV%\eiffel_projects\xebra_server\xebra_server-voidunsafe.ecf -target xebra_server -c_compile -clean -finalize

Run the Xebra Server

See Server Administration for how to run the server.