Thread: [Arsperl-users] Moving installation between servers
Brought to you by:
jeffmurphy
|
From: White, L. <lin...@ed...> - 2008-01-31 19:44:20
|
I am currently working on getting ARSPerl installed on one of our lab = servers, and will need to move it to multiple servers once it's tested = and compiled. The issue is that the servers I will be moving to do not = have any compilers on them, so I will have to copy the files over. What = files are created/moved in an ARSperl installation that I will need to = move? Some of them I'm aware of, others I am not. |
|
From: jeff m. <jcm...@je...> - 2008-01-31 22:19:55
Attachments:
smime.p7s
|
You don't even have to 'install' it. You can copy the blib directory and the, at the top of your script place use lib '/path/to/blib'; which will allow perl to find the ARS module jeff On Jan 31, 2008, at 2:24 PM, White, Linn wrote: > I am currently working on getting ARSPerl installed on one of our > lab servers, and will need to move it to multiple servers once it's > tested and compiled. The issue is that the servers I will be moving > to do not have any compilers on them, so I will have to copy the > files over. What files are created/moved in an ARSperl installation > that I will need to move? Some of them I'm aware of, others I am not. > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/_______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: White, L. <lin...@ed...> - 2008-01-31 23:25:05
|
Is this the blib directory that is created after I do a 'make' in my = current directory? Also, I'm having trouble tracking down a C compiler on any of our aix = machines. Is there any place I can find a pre-compiled version for AIX? -----Original Message----- From: ars...@ar... on behalf of jeff murphy Sent: Thu 1/31/2008 5:18 PM To: ARSperl User Discussion Subject: Re: [Arsperl-users] Moving installation between servers =20 You don't even have to 'install' it. You can copy the blib directory =20 and the, at the top of your script place use lib '/path/to/blib'; which will allow perl to find the ARS module jeff On Jan 31, 2008, at 2:24 PM, White, Linn wrote: > I am currently working on getting ARSPerl installed on one of our =20 > lab servers, and will need to move it to multiple servers once it's =20 > tested and compiled. The issue is that the servers I will be moving =20 > to do not have any compilers on them, so I will have to copy the =20 > files over. What files are created/moved in an ARSperl installation =20 > that I will need to move? Some of them I'm aware of, others I am not. > > = -------------------------------------------------------------------------= > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/__________________= _____________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: jeff m. <jcm...@je...> - 2008-01-31 23:44:25
Attachments:
smime.p7s
|
On Jan 31, 2008, at 6:21 PM, White, Linn wrote: > Is this the blib directory that is created after I do a 'make' in my > current directory? > Yes > Also, I'm having trouble tracking down a C compiler on any of our > aix machines. Is there any place I can find a pre-compiled version > for AIX? > I don't have access to AIX, but perhaps someone else on the list does and can help you out.. |
|
From: Bowman, B. A <Bow...@st...> - 2008-02-01 00:13:46
|
What I've done to keep this simple is to just build perl as I would want it on all server with all of the modules, etc. Then tar up the entire perl folder and extract it on all of the other servers. Also add depencies like the arapi folder, other api folders (if needed) into the same directory structure as on the build server. I've never had a problem with this procedure. =20 Brent Bowman ________________________________ From: ars...@ar... [mailto:ars...@ar...] On Behalf Of White, Linn Sent: Thursday, January 31, 2008 2:25 PM To: ars...@ar... Subject: [Arsperl-users] Moving installation between servers I am currently working on getting ARSPerl installed on one of our lab servers, and will need to move it to multiple servers once it's tested and compiled. The issue is that the servers I will be moving to do not have any compilers on them, so I will have to copy the files over. What files are created/moved in an ARSperl installation that I will need to move? Some of them I'm aware of, others I am not. |
|
From: Axton <axt...@gm...> - 2008-02-01 05:50:58
|
I've always compiled it on the machine with the compiler, the tar'd the build directory, moved it to the new machine, the perform the make install on the target machine. Directory structure, perl version, ars install dir, etc. are all the same between the machines I maintain. Axton Grams On Jan 31, 2008 2:48 PM, Bowman, Brent A <Bow...@st...> wrote: > > > What I've done to keep this simple is to just build perl as I would want it > on all server with all of the modules, etc. Then tar up the entire perl > folder and extract it on all of the other servers. Also add depencies like > the arapi folder, other api folders (if needed) into the same directory > structure as on the build server. I've never had a problem with this > procedure. > > Brent Bowman > > ________________________________ > From: ars...@ar... > [mailto:ars...@ar...] On Behalf Of White, Linn > Sent: Thursday, January 31, 2008 2:25 PM > To: ars...@ar... > Subject: [Arsperl-users] Moving installation between servers > > > > > I am currently working on getting ARSPerl installed on one of our lab > servers, and will need to move it to multiple servers once it's tested and > compiled. The issue is that the servers I will be moving to do not have any > compilers on them, so I will have to copy the files over. What files are > created/moved in an ARSperl installation that I will need to move? Some of > them I'm aware of, others I am not. > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > |
|
From: White, L. <lin...@ed...> - 2008-02-01 12:47:56
|
The problem I am faced with is that I will have limited access to the production machine, so installing it the "normal" way will not be possible. I was hoping to just copy what I need into my own directory, and use the "use lib" approach=20 -----Original Message----- From: ars...@ar... [mailto:ars...@ar...] On Behalf Of Axton Sent: Friday, February 01, 2008 12:44 AM To: ARSperl User Discussion Subject: Re: [Arsperl-users] Moving installation between servers I've always compiled it on the machine with the compiler, the tar'd the build directory, moved it to the new machine, the perform the make install on the target machine. Directory structure, perl version, ars install dir, etc. are all the same between the machines I maintain. Axton Grams On Jan 31, 2008 2:48 PM, Bowman, Brent A <Bow...@st...> wrote: > > > What I've done to keep this simple is to just build perl as I would want it > on all server with all of the modules, etc. Then tar up the entire perl > folder and extract it on all of the other servers. Also add depencies like > the arapi folder, other api folders (if needed) into the same directory > structure as on the build server. I've never had a problem with this > procedure. > > Brent Bowman > > ________________________________ > From: ars...@ar... > [mailto:ars...@ar...] On Behalf Of White, Linn > Sent: Thursday, January 31, 2008 2:25 PM > To: ars...@ar... > Subject: [Arsperl-users] Moving installation between servers > > > > > I am currently working on getting ARSPerl installed on one of our lab > servers, and will need to move it to multiple servers once it's tested and > compiled. The issue is that the servers I will be moving to do not have any > compilers on them, so I will have to copy the files over. What files are > created/moved in an ARSperl installation that I will need to move? Some of > them I'm aware of, others I am not. > > ------------------------------------------------------------------------ - > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > ------------------------------------------------------------------------ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Arsperl-users mailing list Ars...@ar... https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: White, L. <lin...@ed...> - 2008-02-01 14:38:47
|
That's a bit overkill in my instance. perl is already istalled everywhere I need it. =20 My issue is containing and using and ARSperl installing outside the "normal" install paths. =20 Then there is the issue of getting the thing compiled in the first place. I can't seem to find an aix box with the cc_r compiler, which is what perl is compiled under on the boxes. ________________________________ From: ars...@ar... [mailto:ars...@ar...] On Behalf Of Bowman, Brent A Sent: Thursday, January 31, 2008 2:49 PM To: ARSperl User Discussion Subject: Re: [Arsperl-users] Moving installation between servers =09 =09 What I've done to keep this simple is to just build perl as I would want it on all server with all of the modules, etc. Then tar up the entire perl folder and extract it on all of the other servers. Also add depencies like the arapi folder, other api folders (if needed) into the same directory structure as on the build server. I've never had a problem with this procedure. =20 Brent Bowman ________________________________ From: ars...@ar... [mailto:ars...@ar...] On Behalf Of White, Linn Sent: Thursday, January 31, 2008 2:25 PM To: ars...@ar... Subject: [Arsperl-users] Moving installation between servers =09 =09 I am currently working on getting ARSPerl installed on one of our lab servers, and will need to move it to multiple servers once it's tested and compiled. The issue is that the servers I will be moving to do not have any compilers on them, so I will have to copy the files over. What files are created/moved in an ARSperl installation that I will need to move? Some of them I'm aware of, others I am not. =09 |
|
From: strauss <st...@re...> - 2008-02-21 19:25:04
|
Has anyone had any luck trying to return results from a 7.1 server using
ARSPerl 190_701??
I write code like this and return no records from ITSM 7 HPD:Help Desk
(and they are there):
$schemaHD = 'HPD:Help Desk'; $schema_urlHD = 'HPD%3AHelpDesk';
#----------------------------------
# Load Campuswide System Down OPEN CASES
($qualHD = ars_LoadQualifier($ctrl,$schemaHD,
"'Priority*' = \"Critical\" ")) ||
die "error in ars_LoadQualifier";
# Pull Fields for Sort - Campuswide System Down OPEN
$ru_fnHD = '100000164'; # Priority
$at_fnHD = '3'; # Submit Date
# Sort Entries Campuswide System Down OPEN
@entriesHD = ars_GetListEntry($ctrl, $schemaHD, $qualHD, 0, $at_fnHD, 2,
$ru_fnHD, 1);
# Populate Field Variables Campuswide System Down OPEN
$Record_fidHD = '100000161'; # Record Entry ID
$Short_fidHD = '100000000'; # Summary
$Urgency_fidHD = '100000162'; # Urgency
$Priority_fidHD = '100000164'; # Priority
$Arrived_fidHD = '3'; # Submit Date
$Group_fidHD = '100000217'; # Assigned To Group+
$Status_fidHD = '7'; # Status Integer
$Describe_fidHD = '100000151'; # Details
# END Load Campuswide System Down OPEN
#--------------------------------------
I have tried addressing the fields by column id, name, and label, and
the contents of enumerated fields by value and enumeration.
BTW, we are seeing similar problems querying the 7.1 server from Kinetic
Calendar.
Christopher Strauss, Ph.D.
Call Tracking Administration Manager
University of North Texas Computing & IT Center
http://itsm.unt.edu/
|