Re: [Virtuoso-users] update/install virtuoso

2015-04-23 Thread Hugh Williams
Hi Balazs,

There have been a number of patches committed to the develop/7 branch this 
evening, some of which were for the test suite,  and I have updated my local 
tree and was able to successfully run  make clean; make ; make check 
successfully. Can you please update your tree and see if the problem persists ?

Best Regards
Hugh Williams
Professional Services
OpenLink Software, Inc.  //  http://www.openlinksw.com/
Weblog   -- http://www.openlinksw.com/blogs/
LinkedIn -- http://www.linkedin.com/company/openlink-software/
Twitter  -- http://twitter.com/OpenLink
Google+  -- http://plus.google.com/100570109519069333827/
Facebook -- http://www.facebook.com/OpenLinkSoftware
Universal Data Access, Integration, and Management Technology Providers

> On 8 Apr 2015, at 10:29, Balazs Varhegyi  wrote:
> 
> Hi again,
> 
> I've found a solution for failing tests:
> 
> The files like binsrc/tests/suite/thttp.ro/http/graphcrud_2.log and 
> binsrc/tests/suite/tdav_meta.ro/stdout file contained lines: "curl command 
> not found" and "unzip command not found" so installed them and now tests are 
> passing.
> although there're still 3 aborting tests.
> 
> these abortings happens even after fresh install of virtuoso. 
> When there's a blob insert in a foreach then I got the error: "*** Error 
> 08S01: [Virtuoso Driver]CL065: Lost connection to server"
> 
> 
> To reproduce (based on: 
> https://github.com/openlink/virtuoso-opensource/blob/develop/7/binsrc/tests/suite/wsdl_suite.sql
>  
> ):
> CREATE TABLE WS.WS.WSDL_CACHE(WC_URI VARCHAR(2048) NOT NULL,WC_XML LONG 
> VARBINARY,PRIMARY KEY(WC_URI));
> SELECT * FROM WS.WS.WSDL_CACHE;
> FOREACH HEXADECIMAL BLOB INSERT INTO WS.WS.WSDL_CACHE(WC_URI,WC_XML) 
> VALUES('http://mssoapinterop.org/stkv3/wsdl/InteropTestDocLit.wsdl 
> ',?);
> 
> Is it a virtuoso bug?
> 
> Regards,
> Balazs Varhegyi
> 
> On 06/04/15 10:11, Balazs Varhegyi wrote:
>> Hi all, 
>> 
>> How can I uninstall and/or update virtuoso? 
>> We had a version 7.1 with a bug that was fixed in 7.2. I would like to 
>> update to the new version. 
>> 
>> Previous virtuoso installation was from source. 
>> I cloned the new version and compiled (I used the same for 7.1): 
>> "CFLAGS="-O2 -m64" 
>>   export CFLAGS 
>>   ./autogen.sh --enable-maintainer-mode --prefix=/usr/local/ --with-readline 
>> --program-transform-name="s/isql/isql-vt/" 
>>   ./configure --prefix=/usr/local/ --with-readline 
>> --program-transform-name="s/isql/isql-vt/" 
>>   make 
>>   make install" 
>> 
>> 
>> It already gave an error: 
>> "mkdir: cannot create directory `/usr/local/lib/sesame': File exists 
>> make[3]: [install-data-local] Error 1 (ignored)" 
>> 
>> 
>> even though I deleted this sesame directory before. 
>> Anyway it created the virtuoso-t in /usr/local/bin and I can even start it 
>> (can log in with isql-vt and can see conductor web interface), but when I do 
>> "make check" in the source directory the result is: 
>> 
>> =  Checking log files \*.output for statistics: 
>> = 
>> =  Total number of tests PASSED  : 2841 
>> =  Total number of tests FAILED  : 4898 
>> =  Total number of tests ABORTED : 3 
>> = 
>> 
>> *** Not all tests completed successfully 
>> *** Check the file release.output for more information 
>> 
>> = 
>> =  COMPLETED test 
>> =  Thu Apr 2 15:03:12 UTC 2015 
>> = 
>> 
>> 
>> = 
>> =  WARNING: Some tests failed. See *.output in test directories under  
>> /tmp/virtuoso-opensource/binsrc/tests/suite 
>> =  Some aborted tests: 
>> ./thttp.ro/thttp.output:***ABORTED: wsdl_suite.sql 
>> ./tsql.ro/tsql.output:***ABORTED: Wordtest -- twords.sql 
>> ./trecov.ro/trecov.output:***ABORTED: trecov.sh: Inline Blobs 
>> =  Some failed tests: 
>> ./tdav_meta.ro/tdav_meta.output:***FAILED: MGET on collection 
>> ./tdav_meta.ro/tdav_meta.output:***FAILED: MGET on existing FOAF 
>> ./tdav_meta.ro/tdav_meta.output:***FAILED: MGET on existing OPML 
>> ./tdav_meta.ro/tdav_meta.output:***FAILED: MPUT on existing OPML 
>> ./tdav_meta.ro/tdav_meta.output:***FAILED: MGET of added value on OPML 
>> = 
>> make[5]: *** [check-local] Error 3 
>> make[5]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite' 
>> make[4]: *** [check-am] Error 2 
>> make[4]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite' 
>> make[3]: *** [check-recursive] Error 1 
>> make[3]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite' 
>> make[2]: *** [check-recursive] Error 1 
>> make[2]: Leaving directory `/tmp/virtuoso-open

Re: [Virtuoso-users] update/install virtuoso

2015-04-21 Thread Balazs Varhegyi

Hi again,

I've found a solution for failing tests:

The files like binsrc/tests/suite/thttp.ro/http/graphcrud_2.log and 
binsrc/tests/suite/tdav_meta.ro/stdout file contained lines: "curl 
command not found" and "unzip command not found" so installed them and 
now tests are passing.

although there're still 3 aborting tests.

these abortings happens even after fresh install of virtuoso.
When there's a blob insert in a foreach then I got the error: "*** Error 
08S01: [Virtuoso Driver]CL065: Lost connection to server"



To reproduce (based on: 
https://github.com/openlink/virtuoso-opensource/blob/develop/7/binsrc/tests/suite/wsdl_suite.sql):
CREATE TABLE WS.WS.WSDL_CACHE(WC_URI VARCHAR(2048) NOT NULL,WC_XML LONG 
VARBINARY,PRIMARY KEY(WC_URI));

SELECT * FROM WS.WS.WSDL_CACHE;
FOREACH HEXADECIMAL BLOB INSERT INTO WS.WS.WSDL_CACHE(WC_URI,WC_XML) 
VALUES('http://mssoapinterop.org/stkv3/wsdl/InteropTestDocLit.wsdl',?);


Is it a virtuoso bug?

Regards,
Balazs Varhegyi

On 06/04/15 10:11, Balazs Varhegyi wrote:

Hi all,

How can I uninstall and/or update virtuoso?
We had a version 7.1 with a bug that was fixed in 7.2. I would like to 
update to the new version.


Previous virtuoso installation was from source.
I cloned the new version and compiled (I used the same for 7.1):
"CFLAGS="-O2 -m64"
  export CFLAGS
  ./autogen.sh --enable-maintainer-mode --prefix=/usr/local/ 
--with-readline --program-transform-name="s/isql/isql-vt/"
  ./configure --prefix=/usr/local/ --with-readline 
--program-transform-name="s/isql/isql-vt/"

  make
  make install"


It already gave an error:
"mkdir: cannot create directory `/usr/local/lib/sesame': File exists
make[3]: [install-data-local] Error 1 (ignored)"


even though I deleted this sesame directory before.
Anyway it created the virtuoso-t in /usr/local/bin and I can even 
start it (can log in with isql-vt and can see conductor web 
interface), but when I do "make check" in the source directory the 
result is:


=  Checking log files \*.output for statistics:
=
=  Total number of tests PASSED  : 2841
=  Total number of tests FAILED  : 4898
=  Total number of tests ABORTED : 3
=

*** Not all tests completed successfully
*** Check the file release.output for more information

=
=  COMPLETED test
=  Thu Apr 2 15:03:12 UTC 2015
=


=
=  WARNING: Some tests failed. See *.output in test directories under  
/tmp/virtuoso-opensource/binsrc/tests/suite

=  Some aborted tests:
./thttp.ro/thttp.output:***ABORTED: wsdl_suite.sql
./tsql.ro/tsql.output:***ABORTED: Wordtest -- twords.sql
./trecov.ro/trecov.output:***ABORTED: trecov.sh: Inline Blobs
=  Some failed tests:
./tdav_meta.ro/tdav_meta.output:***FAILED: MGET on collection
./tdav_meta.ro/tdav_meta.output:***FAILED: MGET on existing FOAF
./tdav_meta.ro/tdav_meta.output:***FAILED: MGET on existing OPML
./tdav_meta.ro/tdav_meta.output:***FAILED: MPUT on existing OPML
./tdav_meta.ro/tdav_meta.output:***FAILED: MGET of added value on OPML
=
make[5]: *** [check-local] Error 3
make[5]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite'
make[4]: *** [check-am] Error 2
make[4]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite'
make[3]: *** [check-recursive] Error 1
make[3]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite'
make[2]: *** [check-recursive] Error 1
make[2]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests'
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory `/tmp/virtuoso-opensource/binsrc'
make: *** [check-recursive] Error 1





But when I did a clean install of 7.2 in virtualbox the result is:

=  Checking log files \*.output for statistics:
=
=  Total number of tests PASSED  : 7740
=  Total number of tests FAILED  : 0
=  Total number of tests ABORTED : 3
=

*** Not all tests completed successfully
*** Check the file release.output for more information

=
=  COMPLETED test
=  Thu Apr 2 14:50:16 UTC 2015
=


=
=  WARNING: Some tests failed. See *.output in test directories under  
/tmp/virtuoso-opensource/binsrc/tests/suite

=  Some aborted tests:
./thttp.ro/thttp.output:***ABORTED: wsdl_suite.sql
./trecov.ro/trecov.output:***ABORTED: trecov.sh: Inline Blobs
./tsql.ro/tsql.output:***ABORTED: Wordtest -- twords.sql
=  Some failed tests:
=
make[5]: *** [check-local] Error 3
make[5]: Leaving directory 

Re: [Virtuoso-users] update/install virtuoso

2015-04-08 Thread Kingsley Idehen

On 4/6/15 3:11 AM, Balazs Varhegyi wrote:

How can I uninstall and/or update virtuoso?
We had a version 7.1 with a bug that was fixed in 7.2. I would like to
update to the new version.

Steps:

1. Stop your 7.1 server instance
2. Start your 7.2 instance.

You will only have problems with the above if you don't shutdown the 
DBMS server process properly.


The Virtuoso RDBMS Server Application (virtuoso-iodbc-t by default) is 
distinct from the Virtuoso Database Document/File (virtuoso.db by default).


--
Regards,

Kingsley Idehen 
Founder & CEO
OpenLink Software
Company Web: http://www.openlinksw.com
Personal Weblog 1: http://kidehen.blogspot.com
Personal Weblog 2: http://www.openlinksw.com/blog/~kidehen
Twitter Profile: https://twitter.com/kidehen
Google+ Profile: https://plus.google.com/+KingsleyIdehen/about
LinkedIn Profile: http://www.linkedin.com/in/kidehen
Personal WebID: http://kingsley.idehen.net/dataspace/person/kidehen#this




smime.p7s
Description: S/MIME Cryptographic Signature
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Virtuoso-users mailing list
Virtuoso-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/virtuoso-users


[Virtuoso-users] update/install virtuoso

2015-04-07 Thread Balazs Varhegyi
Hi all,

How can I uninstall and/or update virtuoso?
We had a version 7.1 with a bug that was fixed in 7.2. I would like to 
update to the new version.

Previous virtuoso installation was from source.
I cloned the new version and compiled (I used the same for 7.1):
"CFLAGS="-O2 -m64"
   export CFLAGS
   ./autogen.sh --enable-maintainer-mode --prefix=/usr/local/ 
--with-readline --program-transform-name="s/isql/isql-vt/"
   ./configure --prefix=/usr/local/ --with-readline 
--program-transform-name="s/isql/isql-vt/"
   make
   make install"


It already gave an error:
"mkdir: cannot create directory `/usr/local/lib/sesame': File exists
make[3]: [install-data-local] Error 1 (ignored)"


even though I deleted this sesame directory before.
Anyway it created the virtuoso-t in /usr/local/bin and I can even start 
it (can log in with isql-vt and can see conductor web interface), but 
when I do "make check" in the source directory the result is:

=  Checking log files \*.output for statistics:
=
=  Total number of tests PASSED  : 2841
=  Total number of tests FAILED  : 4898
=  Total number of tests ABORTED : 3
=

*** Not all tests completed successfully
*** Check the file release.output for more information

=
=  COMPLETED test
=  Thu Apr 2 15:03:12 UTC 2015
=


=
=  WARNING: Some tests failed. See *.output in test directories under  
/tmp/virtuoso-opensource/binsrc/tests/suite
=  Some aborted tests:
./thttp.ro/thttp.output:***ABORTED: wsdl_suite.sql
./tsql.ro/tsql.output:***ABORTED: Wordtest -- twords.sql
./trecov.ro/trecov.output:***ABORTED: trecov.sh: Inline Blobs
=  Some failed tests:
./tdav_meta.ro/tdav_meta.output:***FAILED: MGET on collection
./tdav_meta.ro/tdav_meta.output:***FAILED: MGET on existing FOAF
./tdav_meta.ro/tdav_meta.output:***FAILED: MGET on existing OPML
./tdav_meta.ro/tdav_meta.output:***FAILED: MPUT on existing OPML
./tdav_meta.ro/tdav_meta.output:***FAILED: MGET of added value on OPML
=
make[5]: *** [check-local] Error 3
make[5]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite'
make[4]: *** [check-am] Error 2
make[4]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite'
make[3]: *** [check-recursive] Error 1
make[3]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite'
make[2]: *** [check-recursive] Error 1
make[2]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests'
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory `/tmp/virtuoso-opensource/binsrc'
make: *** [check-recursive] Error 1





But when I did a clean install of 7.2 in virtualbox the result is:

=  Checking log files \*.output for statistics:
=
=  Total number of tests PASSED  : 7740
=  Total number of tests FAILED  : 0
=  Total number of tests ABORTED : 3
=

*** Not all tests completed successfully
*** Check the file release.output for more information

=
=  COMPLETED test
=  Thu Apr 2 14:50:16 UTC 2015
=


=
=  WARNING: Some tests failed. See *.output in test directories under  
/tmp/virtuoso-opensource/binsrc/tests/suite
=  Some aborted tests:
./thttp.ro/thttp.output:***ABORTED: wsdl_suite.sql
./trecov.ro/trecov.output:***ABORTED: trecov.sh: Inline Blobs
./tsql.ro/tsql.output:***ABORTED: Wordtest -- twords.sql
=  Some failed tests:
=
make[5]: *** [check-local] Error 3
make[5]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite'
make[4]: *** [check-am] Error 2
make[4]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite'
make[3]: *** [check-recursive] Error 1
make[3]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests/suite'
make[2]: *** [check-recursive] Error 1
make[2]: Leaving directory `/tmp/virtuoso-opensource/binsrc/tests'
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory `/tmp/virtuoso-opensource/binsrc'
make: *** [check-recursive] Error 1

The website: "https://github.com/openlink/virtuoso-opensource"; says this 
check is optional, should I worry about these failing tests?
Any help would be appreciated,

Kind regards,
Balazs Varhegyi

--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/