Virtuoso-6.1.2

Introduction to Virtuoso

Virtuoso is a cross-platform server that implements multiple server-side protocols as part of a single-server product offering. There is one server product that offers WebDAV/HTTP, Application, and Database-server functionality alongside Native XML Storage, Universal Data-Access Middleware, Business Process Integration and a Web-Services Platform.

This package is known to build and work properly using an LFS-6.7 platform.

Package Information

Virtuoso Dependencies

Required

Net-tools-1.60

Recommended

Optional

ImageMagick-6.7.3-10, Python-2.7.2

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/virtuoso

Installation of Virtuoso

Install virtuoso by running the following commands:

./configure --prefix=/usr \
            --sysconfdir=/etc \
            --localstatedir=/var \
            --without-internal-zlib \
            --program-transform-name="s/isql/isql-v/" &&
make

Virtuoso does not come with a callable test suite. An intensive check routine is part of the build process.

Now, as the root user:

make install

Command Explanations

--without-internal-zlib: This option is set to use the installed zlib and not the bundled one.

--program-transform-name: Both, Virtuoso as well as unixODBC installs a program named isql. Use this option to rename virtuosos program to isql-v

--enable-pythonAdd this option if Python is installed. It enables the use of Python by Virtuoso.

--with-jdk4: Add this option to specify the path to the JDK-6 Update 18 and to enable making use of Java.

--with-port: Add this is you want that virtuoso is listening on another port than 1111.

Configuration

Boot Script

If you want the Virtuoso server to start automatically when the system is booted, install the /etc/rc.d/init.d/virtuoso init script included in the blfs-bootscripts-20111226 package.

make install-virtuoso

User accounts

When the server is started using the start script, there is a web interface to Virtuoso at http://localhost:8890/. Several links are pointing to the OpenLink site, but the Conductor at http://localhost:8890/conductor/. This is a full featured configuration site for Virtuoso. Login as dba with the predefined password dba.

[Warning]

Change password

Remember to immediatly change the password of user dba as well as of all other predefined users. Click on [System Admin] and than on [User Accounts].

Contents

Installed Programs: virtuoso-t, isql-v{,w}, virt_mail, inifile
Installed Libraries: several shared and static libraries
Installed Directories: /var/lib/virtuoso, /usr/lib/{hibernate,virtuoso,jdbc-{2,3,4}.0,sesame,jena}, /usr/share/virtuoso

Short Descriptions

virtuoso-t

is the Universial Server daemon.

isql-v

is a interactive SQL utility.

Last updated on 2011-02-08 21:13:13 +0000