
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="http://mediawiki.ceinge.unina.it/skins/common/feed.css?63"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://mediawiki.ceinge.unina.it/index.php?action=history&amp;feed=atom&amp;title=biolocal%3AVeil</id>
		<title>biolocal:Veil - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://mediawiki.ceinge.unina.it/index.php?action=history&amp;feed=atom&amp;title=biolocal%3AVeil"/>
		<link rel="alternate" type="text/html" href="http://mediawiki.ceinge.unina.it/index.php?title=biolocal:Veil&amp;action=history"/>
		<updated>2026-04-11T04:23:51Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.10.0</generator>

	<entry>
		<id>http://mediawiki.ceinge.unina.it/index.php?title=biolocal:Veil&amp;diff=1223&amp;oldid=prev</id>
		<title>Gianluca: Bioinfolocal:veil moved to biolocal:Veil: moving to the right namespace</title>
		<link rel="alternate" type="text/html" href="http://mediawiki.ceinge.unina.it/index.php?title=biolocal:Veil&amp;diff=1223&amp;oldid=prev"/>
				<updated>2008-02-18T10:55:15Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/index.php/Bioinfolocal:veil&quot; title=&quot;Bioinfolocal:veil&quot;&gt;Bioinfolocal:veil&lt;/a&gt; moved to &lt;a href=&quot;/index.php/biolocal:Veil&quot; title=&quot;biolocal:Veil&quot;&gt;biolocal:Veil&lt;/a&gt;: moving to the right namespace&lt;/p&gt;

			&lt;table border='0' width='98%' cellpadding='0' cellspacing='4' style=&quot;background-color: white;&quot;&gt;
			&lt;tr&gt;
				&lt;td colspan='2' width='50%' align='center' style=&quot;background-color: white;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' width='50%' align='center' style=&quot;background-color: white;&quot;&gt;Revision as of 10:55, 18 February 2008&lt;/td&gt;
			&lt;/tr&gt;
		&lt;/table&gt;</summary>
		<author><name>Gianluca</name></author>	</entry>

	<entry>
		<id>http://mediawiki.ceinge.unina.it/index.php?title=biolocal:Veil&amp;diff=1182&amp;oldid=prev</id>
		<title>Gianluca: New page: Veil is a shared postgres library, used to introduce complex access control onto the DB.  To install Veil on a RedHat based ditribution, be sure to have the devel package of your postgres ...</title>
		<link rel="alternate" type="text/html" href="http://mediawiki.ceinge.unina.it/index.php?title=biolocal:Veil&amp;diff=1182&amp;oldid=prev"/>
				<updated>2008-02-15T10:26:29Z</updated>
		
		<summary type="html">&lt;p&gt;New page: Veil is a shared postgres library, used to introduce complex access control onto the DB.  To install Veil on a RedHat based ditribution, be sure to have the devel package of your postgres ...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Veil is a shared postgres library, used to introduce complex access control onto the DB.&lt;br /&gt;
&lt;br /&gt;
To install Veil on a RedHat based ditribution, be sure to have the devel package of your postgres installation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
yum update postgresql-devel&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The base postgres RPMs will be installed in the following paths:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pgconfigdir=/var/lib/pgsql/data&lt;br /&gt;
pgbindir=/usr/bin&lt;br /&gt;
pgincludedir=/usr/include/pgsql&lt;br /&gt;
pglibdir=/usr/lib&lt;br /&gt;
pgsharedir=/usr/share&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download the Veil packet:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget http://pgfoundry.org/frs/download.php/1601/Veil-0.9.6.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Compile and install it:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd /usr/local/src&lt;br /&gt;
tar xvzf /downloadpath/Veil-0.9.6.tar.gz&lt;br /&gt;
cd Veil-0.9.6&lt;br /&gt;
./configure --prefix=/usr --with-pgconfigdir=/var/lib/pgsql/data --with-pgbindir=/usr/bin \ --with-pgincludedir=/usr/include/pgsql --with-pglibdir=/usr/lib --with-pgsharedir=/usr/share&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Configure postgres server to load the new shared object:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
vi /var/lib/pgsql/data/postgresql.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
look for the shared_libriries directive and add the following:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
shared_preload_libraries = 'veil.so'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Restart the postgres server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For other OSs or postgres installation not based on binary packets, the procedure is very similar; just pay attention to set the correct postgres paths in the configure command.&lt;/div&gt;</summary>
		<author><name>Gianluca</name></author>	</entry>

	</feed>