I tried again and I got the same error but I noticed that I got "BUILD
SUCCESSFUL" message before the error
[globus@head gt4.2.0-all-source-installer]$ make install
ln -sf /usr/local/globus-4.2.0/etc/gpt/packages
/usr/local/globus-4.2.0/etc/globus_packages
/usr/local/globus-4.2.0/sbin/gpt-postinstall
running /usr/local/globus-4.2.0/setup/globus/setup-cas-database..[ Changing to
/usr/local/globus-4.2.0/setup/globus ]
Buildfile: /usr/local/globus-4.2.0/share/globus_cas_common/build.xml
setupDerbyDatabase:
[echo] Creating a Derby database for CAS
[java] ij version 10.1
[java] WARNING 01J01: Database
'directory:/usr/local/globus-4.2.0/var/casDatabase' not created, connection
made to existing database instead.
[java] CONNECTION0* -
jdbc:derby:directory:/usr/local/globus-4.2.0/var/casDatabase
[java] * = current connection
[java] ij> -- Schema for CAS Server backend database for Derby
[java] -- createdb casDatabase
[java]
[java] create schema casAdmin;
[java] ERROR X0Y68: Schema 'CASADMIN' already exists.
[java] ij> drop table casAdmin.policy_table;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.object_group_entry;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.object_group_table;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.object_table;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.namespace_table;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.service_action_group_entry;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.service_action_group;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.service_type_action;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.service_type;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.user_group_entry;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.user_group_table;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.user_table;
[java] 0 rows inserted/updated/deleted
[java] ij> drop table casAdmin.trust_anchor_table;
[java] 0 rows inserted/updated/deleted
[java] ij> -- Trust Anchor
[java] -- The nickname field is just to identify the record with the
database
[java] -- The trust anchor is uniquely identified by auth_method and
auth_data
[java] create table casAdmin.trust_anchor_table (
[java] trust_anchor_nickname varchar(100) not null,
[java] authentication_method varchar(100) not null,
[java] authentication_data varchar(100) not null,
[java] constraint trust_unique unique(authentication_method,
authentication_data),
[java] constraint trust_primary primary key(trust_anchor_nickname));
[java] 0 rows inserted/updated/deleted
[java] ij> -- Users
[java] -- The nickname field is just to identify the record with the
database
[java] -- The user is uniquely identified by subject_name and
trust_anchor_name
[java] create table casAdmin.user_table
[java] (
[java] user_nickname varchar(100) not null,
[java] subject_name varchar(200) not null,
[java] trust_anchor_nickname varchar(100) not null,
[java] constraint user_unique unique(subject_name,
trust_anchor_nickname),
[java] constraint user_primary primary key(user_nickname),
[java] constraint user_reference foreign key(trust_anchor_nickname)
references casAdmin.trust_anchor_table
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> create table casAdmin.user_group_table
[java] (
[java] user_group_name varchar(100) not null,
[java] constraint user_gp_primary primary key(user_group_name)
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> create table casAdmin.user_group_entry
[java] (
[java] user_group_name varchar(100) not null,
[java] user_nickname varchar(100) not null,
[java] constraint usergp_primary primary key(user_group_name,
user_nickname),
[java] constraint usergp_gp_reference foreign key(user_group_name)
references casAdmin.user_group_table,
[java] constraint usergp_user_reference foreign key(user_nickname)
references casAdmin.user_table
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> -- Actions
[java]
[java] create table casAdmin.service_type
[java] (
[java] service_type_name varchar(100) not null,
[java] constraint service_primary primary key(service_type_name)
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> create table casAdmin.service_type_action
[java] (
[java] service_action_id int not null generated always as identity
(start with 1, increment by 1),
[java] service_type_name varchar(100) not null,
[java] action_name varchar(100) not null,
[java] constraint sa_primary primary key(service_action_id),
[java] constraint sa_unique unique(service_type_name, action_name),
[java] constraint sa_service_reference foreign key(service_type_name)
references casAdmin.service_type
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> create table casAdmin.service_action_group
[java] (
[java] service_action_group_name varchar(100) not null,
[java] constraint sa_gp_primary primary key(service_action_group_name)
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> create table casAdmin.service_action_group_entry
[java] (
[java] service_action_group_name varchar(100) not null,
[java] service_action_id int not null,
[java] constraint sagp_primary primary key(service_action_group_name,
service_action_id),
[java] constraint sagp_gp_reference foreign
key(service_action_group_name) references casAdmin.service_action_group,
[java] constraint sagp_sa_reference foreign key(service_action_id)
references casAdmin.service_type_action
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> -- Resources and actions
[java] create table casAdmin.namespace_table
[java] (
[java] namespace_nickname varchar(100) not null,
[java] basename varchar(100) not null,
[java] comparisonAlg varchar(100) not null,
[java] constraint ns_primary primary key(namespace_nickname),
[java] constraint ns_unique unique(basename, comparisonAlg)
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> create table casAdmin.object_table
[java] (
[java] object_id int not null generated always as identity (start with
1, increment by 1),
[java] object_name varchar(100) not null,
[java] namespace_nickname varchar(100) not null,
[java] constraint obj_primary primary key(object_id),
[java] constraint obj_unique unique(object_name, namespace_nickname),
[java] constraint objgp_ns_reference foreign key(namespace_nickname)
references casAdmin.namespace_table
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> create table casAdmin.object_group_table
[java] (
[java] object_group_name varchar(100) not null,
[java] constraint obj_gp_primary primary key(object_group_name)
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> -- object_specification object_id(convert to text), user_name,
user_group_name,
[java] -- service_type_name
[java] -- namespace_nick, trustAnchor_nick
[java] -- object_spec_desc object, user, userGroup, serviceType,
namespace, trustAnchor
[java] create table casAdmin.object_group_entry
[java] (
[java] object_spec_desc varchar(100) not null,
[java] object_specification varchar(100) not null,
[java] object_group_name varchar(100) not null,
[java] constraint objgp_primary primary key(object_spec_desc,
object_specification, object_group_name),
[java] constraint objgp_reference foreign key(object_group_name)
references casAdmin.object_group_table
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij> -- Policy table
[java]
[java] -- action specification can be service_action_id(convert to text)
or
[java] -- service_action_gp_name
[java] -- action_spec_desc serviceAction, serviceActionGroup
[java] -- userGroupname (permissions can be only on usergroup and not on
indivudual
[java] -- users
[java] -- object_specification object_id(convert to text),
object_group_name,
[java] -- user_name, user_group_name, service_type_name, namespaceNick,
trustAnchorNick
[java] -- object_spec_desc object, objectGroup, user, userGroup,
serviceType,
[java] -- namespace, trustAnchor
[java] create table casAdmin.policy_table
[java] (
[java] policy_id int not null generated always as identity (start with
1, increment by 1),
[java] user_group_name varchar(100) not null,
[java] action_specification varchar(100) not null,
[java] action_spec_desc varchar(100) not null,
[java] object_specification varchar(100) not null,
[java] object_spec_desc varchar(100) not null,
[java] constraint policy_primary primary key(policy_id),
[java] constraint policy_unique unique(user_group_name,
action_specification, action_spec_desc, object_specification, object_spec_desc)
[java] );
[java] 0 rows inserted/updated/deleted
[java] ij>
BUILD SUCCESSFUL
Total time: 6 seconds
..Done
running /usr/local/globus-4.2.0/setup/globus/setup-globus-common..[ Changing to
/usr/local/globus-4.2.0/setup/globus ]
ERROR: Setup package not found. Looking for:
name=globus_common_setup,setup_name=, and
setup version=
ERROR: Command failed
make: *** [postinstall] Error 9
From: [email protected]
To: [email protected]; [email protected]
Date: Fri, 2 Mar 2012 15:52:43 +0000
Subject: Re: [gt-user] Error in installing GT4 on CentOS5
Yes I ran make and I got the message "Your build completed
successfully. Please run make install." and when I ran make install
I got the error that appear in my previous email. I will try now to install
globus as a globus user since I tried before as a root user. I noticed when I
ran ./configure it runs without warning but in the checking build system type
it gave x86_64-unknown-linux-gnu so does that means that globus did not
identify the OS and can I replace the config.sub file by the same file
from the newest versions.
> To: [email protected]
> From: [email protected]
> Date: Fri, 2 Mar 2012 01:02:03 +0000
> Subject: Re: [gt-user] Error in installing GT4 on CentOS5
>
> Are you sure you ran, make before running make install. I have successfully
> installed 4.0.8 and 5.0.2 on CentOS5.
>
> Sent from my BlackBerry® smartphone
>
> -----Original Message-----
> From: [email protected]
> Sender: [email protected]
> Date: Thu, 01 Mar 2012 12:02:16
> To: <[email protected]>
> Reply-to: [email protected]
> Subject: gt-user Digest, Vol 42, Issue 1
>
> Send gt-user mailing list submissions to
> [email protected]
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://lists.globus.org/mailman/listinfo/gt-user
> or, via email, send a message with subject or body 'help' to
> [email protected]
>
> You can reach the person managing the list at
> [email protected]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of gt-user digest..."
>
>
> Today's Topics:
>
> 1. Error in installing GT4 on CentOS5 (Hameed Alzahrani)
> 2. asdf (Rodolfo Edelmann)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 1 Mar 2012 12:44:33 +0000
> From: Hameed Alzahrani <[email protected]>
> Subject: [gt-user] Error in installing GT4 on CentOS5
> To: <[email protected]>
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset="iso-8859-1"
>
>
>
> I tried to install globus toolkit 4.2.0 on CentOS5 but I got the
> following error when I type "make install"
>
> [root@head gt4.2.0-all-source-installer]# make install
> ln -sf /usr/local/globus-4.2.0/etc/gpt/packages
> /usr/local/globus-4.2.0/etc/globus_packages
> /usr/local/globus-4.2.0/sbin/gpt-postinstall
> running /usr/local/globus-4.2.0/setup/globus/setup-globus-common..[ Changing
> to /usr/local/globus-4.2.0/setup/globus ]
> ERROR: Setup package not found. Looking for:
> name=globus_common_setup,setup_name=, and
> setup version=
> ERROR: Command failed
> make: *** [postinstall] Error 9
>
>
> Although I got the message Your build completed successfully. Please run make
> install. when I typed make.
> Thanks
>
>
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://lists.globus.org/pipermail/gt-user/attachments/20120301/c9506aa5/attachment-0001.htm>
>
> ------------------------------
>
> Message: 2
> Date: Thu, 1 Mar 2012 12:19:54 -0300
> From: Rodolfo Edelmann <[email protected]>
> Subject: [gt-user] asdf
> To: [email protected]
> Message-ID:
> <cafiqxvv_ja4zb_vqpbpjbtfbdk3qx5zzjf76ieuid+xvq0q...@mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> del user
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://lists.globus.org/pipermail/gt-user/attachments/20120301/e1b4a2c8/attachment-0001.htm>
>
> ------------------------------
>
> _______________________________________________
> gt-user mailing list
> [email protected]
> https://lists.globus.org/mailman/listinfo/gt-user
>
> End of gt-user Digest, Vol 42, Issue 1
> **************************************