Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-31 Thread Chris Austin

I was able to run object code on Server A from Server B by using universal path 
name in the VOC as follows:

\\\CHRISSYS\LFUTILS.O/TEST_HARNESS2   

.\CHRISSYS\LFUTILS.O/TEST_HARNESS2   **old VOC**

So that takes care of running the source code from 1 server to the other. Now 
the next and final step would
be to install UVnet so we can edit the VOC on server B and then those programs 
will be able to run. 

Again, we only point the VOC to the development server for a day or 2 to test 
new changes before the code
is copied over.



> From: ggal...@wyanokegroup.com
> To: u2-users@listserver.u2ug.org
> Date: Wed, 31 Mar 2010 11:26:31 -0500
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another server?
> 
> I Don't work with UV on Windows, so I'm not sure.
> 
> 
> > -Original Message-
> > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > Sent: Wednesday, March 31, 2010 12:23 PM
> > To: u2-users@listserver.u2ug.org
> > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > server?
> > 
> > 
> > I setup a mapped drive drive on ServerA and i called it S:\ which maps
> > to my CHRISSYS (programming directory)
> > 
> > and I then changed the VOC from:
> > 
> > ..\CHRISSYS\LFUTILS.O/TEST_HARNESS3
> > 
> > to
> > 
> > S:LFUTILS.O/TEST_HARNESS2
> > 
> > and
> > 
> > S:\LFUTILS.O/TEST_HARNESS2
> > 
> > with no luck. I get this back from telnet:
> > 
> > LIVE>TEST_HARNESS2
> > Unable to open the operating system file "S:\LFUTILS.O/TEST_HARNESS2".
> > [ENOENT] No such file or directory
> > 
> > Do I have my path name setup correctly? The drive is mapped and I have
> > tried a couple diff pointers.
> > 
> > 
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
  
_
Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_1
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-31 Thread George Gallen
I Don't work with UV on Windows, so I'm not sure.


> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Wednesday, March 31, 2010 12:23 PM
> To: u2-users@listserver.u2ug.org
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> server?
> 
> 
> I setup a mapped drive drive on ServerA and i called it S:\ which maps
> to my CHRISSYS (programming directory)
> 
> and I then changed the VOC from:
> 
> ..\CHRISSYS\LFUTILS.O/TEST_HARNESS3
> 
> to
> 
> S:LFUTILS.O/TEST_HARNESS2
> 
> and
> 
> S:\LFUTILS.O/TEST_HARNESS2
> 
> with no luck. I get this back from telnet:
> 
> LIVE>TEST_HARNESS2
> Unable to open the operating system file "S:\LFUTILS.O/TEST_HARNESS2".
> [ENOENT] No such file or directory
> 
> Do I have my path name setup correctly? The drive is mapped and I have
> tried a couple diff pointers.
> 
> 
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-31 Thread Chris Austin

I setup a mapped drive drive on ServerA and i called it S:\ which maps to my 
CHRISSYS (programming directory)

and I then changed the VOC from:

..\CHRISSYS\LFUTILS.O/TEST_HARNESS3

to

S:LFUTILS.O/TEST_HARNESS2 

and

S:\LFUTILS.O/TEST_HARNESS2

with no luck. I get this back from telnet:

LIVE>TEST_HARNESS2
Unable to open the operating system file "S:\LFUTILS.O/TEST_HARNESS2".
[ENOENT] No such file or directory

Do I have my path name setup correctly? The drive is mapped and I have tried a 
couple diff pointers. 



> From: ggal...@wyanokegroup.com
> To: u2-users@listserver.u2ug.org
> Date: Wed, 31 Mar 2010 10:57:10 -0500
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another server?
> 
> You would need to create a new VOC entry that referenced the other drive.
> 
> ie x:pathname\LFUTILS.O/TEST_HARNESS2
> 
> You could copy the VOC entry, and and prefix the drive,
> but your example used a relative path (..) which I have
> not used on our system, I've always used full pathnames
> unless the file was in the current account directory.
> 
> As said by someone else, record locking will not exist with this method, if 
> you want record locking, you will need to use uvnet.
> 
> that said, I don't think if your only running programs this method,
> locking would be a major concern, as long as your not trying to
> update the source file from the other server, just accessing it.
> 
> What I'm not sure about is whether the "object" code is the same
> between a 32bit and 64bit O/S implementation...that's easy to test
> once you get the link setup. Just try it.
> 
> > -Original Message-
> > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > Sent: Wednesday, March 31, 2010 11:38 AM
> > To: u2-users@listserver.u2ug.org
> > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > server?
> > 
> > 
> > One more thing I wanted to add. We're trying to access the object code
> > from one server
> > on another. I assume this can be done but I wanted to clarify what our
> > goals were.
> > 
> > Server A (has object code) -> Server B (wants to run Server A object
> > code)
> > 
> > I also found the UV/NET II guide and it says this:
> > 
> > I-Descriptors and UniVerse BASIC Object Code
> > UV/Net II gives users read and write access to files on remote systems.
> > However, you
> > cannot execute I-descriptors and UniVerse BASIC object code located on
> > remote
> > systems.
> > 
> > Does that mean you can't access object code at all from one server to
> > the other??
> > 
> > Or are they saying if you're using an I-Descriptor? Thanks.
> > 
> > 
> > 
> > > From: cjausti...@hotmail.com
> > > To: u2-users@listserver.u2ug.org
> > > Date: Wed, 31 Mar 2010 10:07:03 -0500
> > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > server?
> > >
> > >
> > > We can map the drives from one server to the other. Let's call the
> > drive on Server A drive (Z:\).
> > > I assume we would still need UVnet to do this solution. If we did map
> > a drive what would the VOC
> > > pointer look like?
> > >
> > > This is an example what one of my VOC pointers looks like now:
> > >
> > > ..\CHRISSYS\LFUTILS.O/TEST_HARNESS2
> > >
> > > If we wanted to map this to serverA, using drive Z how would the
> > pointer look?
> > >
> > >
> > >
> > > > From: ggal...@wyanokegroup.com
> > > > To: u2-users@listserver.u2ug.org
> > > > Date: Wed, 31 Mar 2010 09:53:57 -0500
> > > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > server?
> > > >
> > > > Since your running windows, Can you map a drive to the other
> > servers Folder containing the programs.
> > > >
> > > > Then just setup a VOC entry pointing to the mapped drive.
> > > >
> > > > Don't use NFS, just use windows SMB protocols. As long as
> > > > they are both setup with workgroup names the same you should
> > > > be ok.
> > > >
> > > >
> > > > > -Original Message-
> > > > > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > > > > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > > > > Sent: Wednesday, March 31, 2010 10:51 AM
> > > 

Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-31 Thread George Gallen
You would need to create a new VOC entry that referenced the other drive.

ie x:pathname\LFUTILS.O/TEST_HARNESS2

You could copy the VOC entry, and and prefix the drive,
but your example used a relative path (..) which I have
not used on our system, I've always used full pathnames
unless the file was in the current account directory.

As said by someone else, record locking will not exist with this method, if you 
want record locking, you will need to use uvnet.

that said, I don't think if your only running programs this method,
locking would be a major concern, as long as your not trying to
update the source file from the other server, just accessing it.

What I'm not sure about is whether the "object" code is the same
between a 32bit and 64bit O/S implementation...that's easy to test
once you get the link setup. Just try it.

> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Wednesday, March 31, 2010 11:38 AM
> To: u2-users@listserver.u2ug.org
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> server?
> 
> 
> One more thing I wanted to add. We're trying to access the object code
> from one server
> on another. I assume this can be done but I wanted to clarify what our
> goals were.
> 
> Server A (has object code) -> Server B (wants to run Server A object
> code)
> 
> I also found the UV/NET II guide and it says this:
> 
> I-Descriptors and UniVerse BASIC Object Code
> UV/Net II gives users read and write access to files on remote systems.
> However, you
> cannot execute I-descriptors and UniVerse BASIC object code located on
> remote
> systems.
> 
> Does that mean you can't access object code at all from one server to
> the other??
> 
> Or are they saying if you're using an I-Descriptor? Thanks.
> 
> 
> 
> > From: cjausti...@hotmail.com
> > To: u2-users@listserver.u2ug.org
> > Date: Wed, 31 Mar 2010 10:07:03 -0500
> > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> server?
> >
> >
> > We can map the drives from one server to the other. Let's call the
> drive on Server A drive (Z:\).
> > I assume we would still need UVnet to do this solution. If we did map
> a drive what would the VOC
> > pointer look like?
> >
> > This is an example what one of my VOC pointers looks like now:
> >
> > ..\CHRISSYS\LFUTILS.O/TEST_HARNESS2
> >
> > If we wanted to map this to serverA, using drive Z how would the
> pointer look?
> >
> >
> >
> > > From: ggal...@wyanokegroup.com
> > > To: u2-users@listserver.u2ug.org
> > > Date: Wed, 31 Mar 2010 09:53:57 -0500
> > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> server?
> > >
> > > Since your running windows, Can you map a drive to the other
> servers Folder containing the programs.
> > >
> > > Then just setup a VOC entry pointing to the mapped drive.
> > >
> > > Don't use NFS, just use windows SMB protocols. As long as
> > > they are both setup with workgroup names the same you should
> > > be ok.
> > >
> > >
> > > > -Original Message-
> > > > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > > > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > > > Sent: Wednesday, March 31, 2010 10:51 AM
> > > > To: u2-users@listserver.u2ug.org
> > > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > > > server?
> > > >
> > > >
> > > > Our configuration is like this:
> > > >
> > > >
> > > > Server A (Windows Server 2003, 32-bit) - the "host" server with
> > > > programs.
> > > > Server B (Windows Server 2008, 64-bit) - the production server,
> need to
> > > > point to Server A only for a cpl programs.
> > > >
> > > > I've never setup an NFS but what we're doing is really basic, we
> have 3
> > > > accounts with corresponding folders
> > > > on Server A and 1 account with 1 folder on Server B.
> > > >
> > > > Does anyone know how to setup a NFS in Windows? Or do we just
> need the
> > > > ALLOWNFS setting + UVnet?
> > > >
> > > >
> > > >
> > > >
> > > > > From: ggal...@wyanokegroup.com
> > > > > To: u2-users@listserver.u2ug.org
> > > > > Date: Wed, 31 Mar 2010 08:56:19 -0500
> > &g

Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-31 Thread Chris Austin

One more thing I wanted to add. We're trying to access the object code from one 
server
on another. I assume this can be done but I wanted to clarify what our goals 
were.

Server A (has object code) -> Server B (wants to run Server A object code)

I also found the UV/NET II guide and it says this:

I-Descriptors and UniVerse BASIC Object Code
UV/Net II gives users read and write access to files on remote systems. 
However, you
cannot execute I-descriptors and UniVerse BASIC object code located on remote
systems.

Does that mean you can't access object code at all from one server to the 
other??

Or are they saying if you're using an I-Descriptor? Thanks.



> From: cjausti...@hotmail.com
> To: u2-users@listserver.u2ug.org
> Date: Wed, 31 Mar 2010 10:07:03 -0500
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another server?
> 
> 
> We can map the drives from one server to the other. Let's call the drive on 
> Server A drive (Z:\). 
> I assume we would still need UVnet to do this solution. If we did map a drive 
> what would the VOC
> pointer look like?
> 
> This is an example what one of my VOC pointers looks like now:
> 
> ..\CHRISSYS\LFUTILS.O/TEST_HARNESS2
> 
> If we wanted to map this to serverA, using drive Z how would the pointer look?
> 
> 
> 
> > From: ggal...@wyanokegroup.com
> > To: u2-users@listserver.u2ug.org
> > Date: Wed, 31 Mar 2010 09:53:57 -0500
> > Subject: Re: [U2] 2 servers - how do I point to a VOC on another server?
> > 
> > Since your running windows, Can you map a drive to the other servers Folder 
> > containing the programs.
> > 
> > Then just setup a VOC entry pointing to the mapped drive.
> > 
> > Don't use NFS, just use windows SMB protocols. As long as
> > they are both setup with workgroup names the same you should
> > be ok.
> > 
> > 
> > > -Original Message-
> > > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > > Sent: Wednesday, March 31, 2010 10:51 AM
> > > To: u2-users@listserver.u2ug.org
> > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > > server?
> > > 
> > > 
> > > Our configuration is like this:
> > > 
> > > 
> > > Server A (Windows Server 2003, 32-bit) - the "host" server with
> > > programs.
> > > Server B (Windows Server 2008, 64-bit) - the production server, need to
> > > point to Server A only for a cpl programs.
> > > 
> > > I've never setup an NFS but what we're doing is really basic, we have 3
> > > accounts with corresponding folders
> > > on Server A and 1 account with 1 folder on Server B.
> > > 
> > > Does anyone know how to setup a NFS in Windows? Or do we just need the
> > > ALLOWNFS setting + UVnet?
> > > 
> > > 
> > > 
> > > 
> > > > From: ggal...@wyanokegroup.com
> > > > To: u2-users@listserver.u2ug.org
> > > > Date: Wed, 31 Mar 2010 08:56:19 -0500
> > > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > > server?
> > > >
> > > > you didn't say what the O/S of the systems are.
> > > >
> > > > If you are running unix on both machines, you need to setup
> > > > one machine as an NFS server, and the other as an NFS Client.
> > > >
> > > > Both are fairly simple.
> > > >
> > > > basically, you are updating /etc/fstab for the Client side
> > > > and /etc/exports , /etc/hosts.allow (nfs/nfsd and portmap)
> > > > and run the command exportfs
> > > >
> > > > do a google on NFS setup, and it should explain how to configure
> > > > and use the above files/commands
> > > >
> > > > If your on a Windows platform.I don't have a clue how to
> > > > setup NFS on them.
> > > >
> > > > > -Original Message-
> > > > > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > > > > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > > > > Sent: Tuesday, March 30, 2010 5:56 PM
> > > > > To: u2-users@listserver.u2ug.org
> > > > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > > > > server?
> > > > >
> > > > >
> > > > > Thanks for the reply John. Is there anything we need to setup to
> > > > > achieve an
> &g

Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-31 Thread Chris Austin

We can map the drives from one server to the other. Let's call the drive on 
Server A drive (Z:\). 
I assume we would still need UVnet to do this solution. If we did map a drive 
what would the VOC
pointer look like?

This is an example what one of my VOC pointers looks like now:

..\CHRISSYS\LFUTILS.O/TEST_HARNESS2

If we wanted to map this to serverA, using drive Z how would the pointer look?



> From: ggal...@wyanokegroup.com
> To: u2-users@listserver.u2ug.org
> Date: Wed, 31 Mar 2010 09:53:57 -0500
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another server?
> 
> Since your running windows, Can you map a drive to the other servers Folder 
> containing the programs.
> 
> Then just setup a VOC entry pointing to the mapped drive.
> 
> Don't use NFS, just use windows SMB protocols. As long as
> they are both setup with workgroup names the same you should
> be ok.
> 
> 
> > -Original Message-
> > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > Sent: Wednesday, March 31, 2010 10:51 AM
> > To: u2-users@listserver.u2ug.org
> > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > server?
> > 
> > 
> > Our configuration is like this:
> > 
> > 
> > Server A (Windows Server 2003, 32-bit) - the "host" server with
> > programs.
> > Server B (Windows Server 2008, 64-bit) - the production server, need to
> > point to Server A only for a cpl programs.
> > 
> > I've never setup an NFS but what we're doing is really basic, we have 3
> > accounts with corresponding folders
> > on Server A and 1 account with 1 folder on Server B.
> > 
> > Does anyone know how to setup a NFS in Windows? Or do we just need the
> > ALLOWNFS setting + UVnet?
> > 
> > 
> > 
> > 
> > > From: ggal...@wyanokegroup.com
> > > To: u2-users@listserver.u2ug.org
> > > Date: Wed, 31 Mar 2010 08:56:19 -0500
> > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > server?
> > >
> > > you didn't say what the O/S of the systems are.
> > >
> > > If you are running unix on both machines, you need to setup
> > > one machine as an NFS server, and the other as an NFS Client.
> > >
> > > Both are fairly simple.
> > >
> > > basically, you are updating /etc/fstab for the Client side
> > > and /etc/exports , /etc/hosts.allow (nfs/nfsd and portmap)
> > > and run the command exportfs
> > >
> > > do a google on NFS setup, and it should explain how to configure
> > > and use the above files/commands
> > >
> > > If your on a Windows platform.I don't have a clue how to
> > > setup NFS on them.
> > >
> > > > -Original Message-
> > > > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > > > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > > > Sent: Tuesday, March 30, 2010 5:56 PM
> > > > To: u2-users@listserver.u2ug.org
> > > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > > > server?
> > > >
> > > >
> > > > Thanks for the reply John. Is there anything we need to setup to
> > > > achieve an
> > > > NFS mount? The only configuration change we made thus far was
> > setting
> > > > ALLOWNFS to 1.
> > > >
> > > > An example of a VOC entry on the OLD SERVER is as follows:
> > > >
> > > > LIVE>CT VOC TEST_HARNESS2
> > > >
> > > >  TEST_HARNESS2
> > > > 0001 V *PJC* ELEVATED FROM CHRIS PROJECT 2487 ON 11:25:11 01 SEP
> > 2009
> > > > 0002 ..\CHRISSYS\LFUTILS.O/TEST_HARNESS2
> > > > 0003 B
> > > > 0004 BNP
> > > > 0005
> > > > 0006 PICK.FORMAT
> > > > 0007 S²N²P²I²A²E²H
> > > > 0008 NO.WARN²NOPAGE²LPTR²KEEP.COMMON²²TRAP²HDR-SUPP
> > > > 0009 ..\CHRISSYS\LFUTILS.O
> > > >
> > > > I'm confused what 'mnt' would be in your notes? If you could
> > clarify
> > > > what our VOC should
> > > > be I can then test this out. I really appreciate the help! Thanks.
> > > >
> > > > -Chris
> > > >
> > > >
> > > > > Date: Tue, 30 Mar 2010 14:44:02 -0700
> > > > > From: jhes...@momtex.com
> > > > > To: u2-users@listserver.u2ug.org
> > > > >

Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-31 Thread George Gallen
Since your running windows, Can you map a drive to the other servers Folder 
containing the programs.

Then just setup a VOC entry pointing to the mapped drive.

Don't use NFS, just use windows SMB protocols. As long as
they are both setup with workgroup names the same you should
be ok.


> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Wednesday, March 31, 2010 10:51 AM
> To: u2-users@listserver.u2ug.org
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> server?
> 
> 
> Our configuration is like this:
> 
> 
> Server A (Windows Server 2003, 32-bit) - the "host" server with
> programs.
> Server B (Windows Server 2008, 64-bit) - the production server, need to
> point to Server A only for a cpl programs.
> 
> I've never setup an NFS but what we're doing is really basic, we have 3
> accounts with corresponding folders
> on Server A and 1 account with 1 folder on Server B.
> 
> Does anyone know how to setup a NFS in Windows? Or do we just need the
> ALLOWNFS setting + UVnet?
> 
> 
> 
> 
> > From: ggal...@wyanokegroup.com
> > To: u2-users@listserver.u2ug.org
> > Date: Wed, 31 Mar 2010 08:56:19 -0500
> > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> server?
> >
> > you didn't say what the O/S of the systems are.
> >
> > If you are running unix on both machines, you need to setup
> > one machine as an NFS server, and the other as an NFS Client.
> >
> > Both are fairly simple.
> >
> > basically, you are updating /etc/fstab for the Client side
> > and /etc/exports , /etc/hosts.allow (nfs/nfsd and portmap)
> > and run the command exportfs
> >
> > do a google on NFS setup, and it should explain how to configure
> > and use the above files/commands
> >
> > If your on a Windows platform.I don't have a clue how to
> > setup NFS on them.
> >
> > > -----Original Message-----
> > > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > > Sent: Tuesday, March 30, 2010 5:56 PM
> > > To: u2-users@listserver.u2ug.org
> > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > > server?
> > >
> > >
> > > Thanks for the reply John. Is there anything we need to setup to
> > > achieve an
> > > NFS mount? The only configuration change we made thus far was
> setting
> > > ALLOWNFS to 1.
> > >
> > > An example of a VOC entry on the OLD SERVER is as follows:
> > >
> > > LIVE>CT VOC TEST_HARNESS2
> > >
> > >  TEST_HARNESS2
> > > 0001 V *PJC* ELEVATED FROM CHRIS PROJECT 2487 ON 11:25:11 01 SEP
> 2009
> > > 0002 ..\CHRISSYS\LFUTILS.O/TEST_HARNESS2
> > > 0003 B
> > > 0004 BNP
> > > 0005
> > > 0006 PICK.FORMAT
> > > 0007 S²N²P²I²A²E²H
> > > 0008 NO.WARN²NOPAGE²LPTR²KEEP.COMMON²²TRAP²HDR-SUPP
> > > 0009 ..\CHRISSYS\LFUTILS.O
> > >
> > > I'm confused what 'mnt' would be in your notes? If you could
> clarify
> > > what our VOC should
> > > be I can then test this out. I really appreciate the help! Thanks.
> > >
> > > -Chris
> > >
> > >
> > > > Date: Tue, 30 Mar 2010 14:44:02 -0700
> > > > From: jhes...@momtex.com
> > > > To: u2-users@listserver.u2ug.org
> > > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > > server?
> > > >
> > > > If I'm understanding correctly, you want to run a program that
> > > > physically resides on the old server against data on the new
> server.
> > > I
> > > > haven't done this myself, but I don't see any reason why you
> couldn't
> > > > run or catalog a program that sits on an NFS mount from another
> > > server.
> > > > The VOC for the remote file might look something like this:
> > > >
> > > > BP.OLD
> > > >
> > > > 001: F
> > > > 002: /mnt/nfs/old_server/BP
> > > > 003: /mnt/nfs/old_server/D_BP
> > > >
> > > > and you'll also need the corresponding object file:
> > > >
> > > > BP.OLD.O
> > > >
> > > > 001: F
> > > > 002: /mnt/nfs/old_server/BP.O
> > > > 003: /mnt/nfs/old_server/D_BP.O
> > > >
> > >

Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-31 Thread Chris Austin

Our configuration is like this:


Server A (Windows Server 2003, 32-bit) - the "host" server with programs.
Server B (Windows Server 2008, 64-bit) - the production server, need to point 
to Server A only for a cpl programs. 

I've never setup an NFS but what we're doing is really basic, we have 3 
accounts with corresponding folders
on Server A and 1 account with 1 folder on Server B. 

Does anyone know how to setup a NFS in Windows? Or do we just need the ALLOWNFS 
setting + UVnet?




> From: ggal...@wyanokegroup.com
> To: u2-users@listserver.u2ug.org
> Date: Wed, 31 Mar 2010 08:56:19 -0500
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another server?
> 
> you didn't say what the O/S of the systems are.
> 
> If you are running unix on both machines, you need to setup
> one machine as an NFS server, and the other as an NFS Client.
> 
> Both are fairly simple.
> 
> basically, you are updating /etc/fstab for the Client side
> and /etc/exports , /etc/hosts.allow (nfs/nfsd and portmap)
> and run the command exportfs
> 
> do a google on NFS setup, and it should explain how to configure
> and use the above files/commands
> 
> If your on a Windows platform.I don't have a clue how to 
> setup NFS on them.
> 
> > -Original Message-
> > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> > boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > Sent: Tuesday, March 30, 2010 5:56 PM
> > To: u2-users@listserver.u2ug.org
> > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > server?
> > 
> > 
> > Thanks for the reply John. Is there anything we need to setup to
> > achieve an
> > NFS mount? The only configuration change we made thus far was setting
> > ALLOWNFS to 1.
> > 
> > An example of a VOC entry on the OLD SERVER is as follows:
> > 
> > LIVE>CT VOC TEST_HARNESS2
> > 
> >  TEST_HARNESS2
> > 0001 V *PJC* ELEVATED FROM CHRIS PROJECT 2487 ON 11:25:11 01 SEP 2009
> > 0002 ..\CHRISSYS\LFUTILS.O/TEST_HARNESS2
> > 0003 B
> > 0004 BNP
> > 0005
> > 0006 PICK.FORMAT
> > 0007 S²N²P²I²A²E²H
> > 0008 NO.WARN²NOPAGE²LPTR²KEEP.COMMON²²TRAP²HDR-SUPP
> > 0009 ..\CHRISSYS\LFUTILS.O
> > 
> > I'm confused what 'mnt' would be in your notes? If you could clarify
> > what our VOC should
> > be I can then test this out. I really appreciate the help! Thanks.
> > 
> > -Chris
> > 
> > 
> > > Date: Tue, 30 Mar 2010 14:44:02 -0700
> > > From: jhes...@momtex.com
> > > To: u2-users@listserver.u2ug.org
> > > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> > server?
> > >
> > > If I'm understanding correctly, you want to run a program that
> > > physically resides on the old server against data on the new server.
> > I
> > > haven't done this myself, but I don't see any reason why you couldn't
> > > run or catalog a program that sits on an NFS mount from another
> > server.
> > > The VOC for the remote file might look something like this:
> > >
> > > BP.OLD
> > >
> > > 001: F
> > > 002: /mnt/nfs/old_server/BP
> > > 003: /mnt/nfs/old_server/D_BP
> > >
> > > and you'll also need the corresponding object file:
> > >
> > > BP.OLD.O
> > >
> > > 001: F
> > > 002: /mnt/nfs/old_server/BP.O
> > > 003: /mnt/nfs/old_server/D_BP.O
> > >
> > > Then you should be able to RUN BP.OLD PROGRAMNAME or CATALOG BP.OLD
> > > PROGRAMNAME to have its VOC entry replace one that points to the
> > local
> > > copy of the program.
> > >
> > > -John
> > >
> > > -Original Message-
> > > From: u2-users-boun...@listserver.u2ug.org
> > > [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris
> > Austin
> > > Sent: Tuesday, March 30, 2010 2:31 PM
> > > To: u2-users@listserver.u2ug.org
> > > Subject: [U2] 2 servers - how do I point to a VOC on another server?
> > >
> > >
> > > Hello,
> > >
> > > We're running UniVerse 10.1.8 on our main server and we just bought
> > > another
> > > server with UniVerse 10.3.3. I would like to setup the old server as
> > the
> > > development
> > > server and keep the new server as the production server. The problem
> > is
> > > we want to "elevate" some programs to the new server. Ideally we
> > would
> > > j

Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-31 Thread George Gallen
you didn't say what the O/S of the systems are.

If you are running unix on both machines, you need to setup
one machine as an NFS server, and the other as an NFS Client.

Both are fairly simple.

basically, you are updating /etc/fstab for the Client side
and /etc/exports , /etc/hosts.allow (nfs/nfsd and portmap)
and run the command exportfs

do a google on NFS setup, and it should explain how to configure
and use the above files/commands

If your on a Windows platform.I don't have a clue how to 
setup NFS on them.

> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Tuesday, March 30, 2010 5:56 PM
> To: u2-users@listserver.u2ug.org
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> server?
> 
> 
> Thanks for the reply John. Is there anything we need to setup to
> achieve an
> NFS mount? The only configuration change we made thus far was setting
> ALLOWNFS to 1.
> 
> An example of a VOC entry on the OLD SERVER is as follows:
> 
> LIVE>CT VOC TEST_HARNESS2
> 
>  TEST_HARNESS2
> 0001 V *PJC* ELEVATED FROM CHRIS PROJECT 2487 ON 11:25:11 01 SEP 2009
> 0002 ..\CHRISSYS\LFUTILS.O/TEST_HARNESS2
> 0003 B
> 0004 BNP
> 0005
> 0006 PICK.FORMAT
> 0007 S²N²P²I²A²E²H
> 0008 NO.WARN²NOPAGE²LPTR²KEEP.COMMON²²TRAP²HDR-SUPP
> 0009 ..\CHRISSYS\LFUTILS.O
> 
> I'm confused what 'mnt' would be in your notes? If you could clarify
> what our VOC should
> be I can then test this out. I really appreciate the help! Thanks.
> 
> -Chris
> 
> 
> > Date: Tue, 30 Mar 2010 14:44:02 -0700
> > From: jhes...@momtex.com
> > To: u2-users@listserver.u2ug.org
> > Subject: Re: [U2] 2 servers - how do I point to a VOC on another
> server?
> >
> > If I'm understanding correctly, you want to run a program that
> > physically resides on the old server against data on the new server.
> I
> > haven't done this myself, but I don't see any reason why you couldn't
> > run or catalog a program that sits on an NFS mount from another
> server.
> > The VOC for the remote file might look something like this:
> >
> > BP.OLD
> >
> > 001: F
> > 002: /mnt/nfs/old_server/BP
> > 003: /mnt/nfs/old_server/D_BP
> >
> > and you'll also need the corresponding object file:
> >
> > BP.OLD.O
> >
> > 001: F
> > 002: /mnt/nfs/old_server/BP.O
> > 003: /mnt/nfs/old_server/D_BP.O
> >
> > Then you should be able to RUN BP.OLD PROGRAMNAME or CATALOG BP.OLD
> > PROGRAMNAME to have its VOC entry replace one that points to the
> local
> > copy of the program.
> >
> > -John
> >
> > -Original Message-
> > From: u2-users-boun...@listserver.u2ug.org
> > [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris
> Austin
> > Sent: Tuesday, March 30, 2010 2:31 PM
> > To: u2-users@listserver.u2ug.org
> > Subject: [U2] 2 servers - how do I point to a VOC on another server?
> >
> >
> > Hello,
> >
> > We're running UniVerse 10.1.8 on our main server and we just bought
> > another
> > server with UniVerse 10.3.3. I would like to setup the old server as
> the
> > development
> > server and keep the new server as the production server. The problem
> is
> > we want to "elevate" some programs to the new server. Ideally we
> would
> > just
> > point the VOC to the old server until we fully test the programs. We
> > have set
> > ALLOWNFS to 1 as well. What is involved for us to run a file and
> setup a
> > voc to
> > point to a completely different server?
> >
> > Example) program A is on server 1, but we want the changes to reflect
> on
> > server 2.
> >
> > What we have been doing in the past is editing the VOC from one
> account
> > to the other, but
> > I'm not sure how to do this on another server.
> >
> > Thanks.
> > ___
> > U2-Users mailing list
> > U2-Users@listserver.u2ug.org
> > http://listserver.u2ug.org/mailman/listinfo/u2-users
> 
> _
> Hotmail has tools for the New Busy. Search, chat and e-mail from your
> inbox.
> http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL
> :ON:WL:en-US:WM_HMP:032010_1
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-30 Thread Jeff Schasny

If you need record locking you will need to buy and install UVNet

Chris Austin wrote:

Hello,

We're running UniVerse 10.1.8 on our main server and we just bought another
server with UniVerse 10.3.3. I would like to setup the old server as the 
development
server and keep the new server as the production server. The problem is
we want to "elevate" some programs to the new server. Ideally we would just 
point the VOC to the old server until we fully test the programs. We have set 
ALLOWNFS to 1 as well. What is involved for us to run a file and setup a voc to 
point to a completely different server?


Example) program A is on server 1, but we want the changes to reflect on server 
2.

What we have been doing in the past is editing the VOC from one account to the 
other, but
I'm not sure how to do this on another server.

Thanks.

 		 	   		  
_

Hotmail is redefining busy with tools for the New Busy. Get more from your 
inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_2
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

  


--

Jeff Schasny - Denver, Co, USA
jschasny at gmail dot com

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-30 Thread Chris Austin

Thanks for the reply John. Is there anything we need to setup to achieve an 
NFS mount? The only configuration change we made thus far was setting ALLOWNFS 
to 1. 

An example of a VOC entry on the OLD SERVER is as follows:

LIVE>CT VOC TEST_HARNESS2

 TEST_HARNESS2
0001 V *PJC* ELEVATED FROM CHRIS PROJECT 2487 ON 11:25:11 01 SEP 2009
0002 ..\CHRISSYS\LFUTILS.O/TEST_HARNESS2
0003 B
0004 BNP
0005
0006 PICK.FORMAT
0007 S²N²P²I²A²E²H
0008 NO.WARN²NOPAGE²LPTR²KEEP.COMMON²²TRAP²HDR-SUPP
0009 ..\CHRISSYS\LFUTILS.O

I'm confused what 'mnt' would be in your notes? If you could clarify what our 
VOC should
be I can then test this out. I really appreciate the help! Thanks.

-Chris


> Date: Tue, 30 Mar 2010 14:44:02 -0700
> From: jhes...@momtex.com
> To: u2-users@listserver.u2ug.org
> Subject: Re: [U2] 2 servers - how do I point to a VOC on another server?
> 
> If I'm understanding correctly, you want to run a program that
> physically resides on the old server against data on the new server.  I
> haven't done this myself, but I don't see any reason why you couldn't
> run or catalog a program that sits on an NFS mount from another server.
> The VOC for the remote file might look something like this:
> 
> BP.OLD
> 
> 001: F
> 002: /mnt/nfs/old_server/BP
> 003: /mnt/nfs/old_server/D_BP
> 
> and you'll also need the corresponding object file:
> 
> BP.OLD.O
> 
> 001: F
> 002: /mnt/nfs/old_server/BP.O
> 003: /mnt/nfs/old_server/D_BP.O
> 
> Then you should be able to RUN BP.OLD PROGRAMNAME or CATALOG BP.OLD
> PROGRAMNAME to have its VOC entry replace one that points to the local
> copy of the program.
> 
> -John
> 
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Tuesday, March 30, 2010 2:31 PM
> To: u2-users@listserver.u2ug.org
> Subject: [U2] 2 servers - how do I point to a VOC on another server?
> 
> 
> Hello,
> 
> We're running UniVerse 10.1.8 on our main server and we just bought
> another
> server with UniVerse 10.3.3. I would like to setup the old server as the
> development
> server and keep the new server as the production server. The problem is
> we want to "elevate" some programs to the new server. Ideally we would
> just 
> point the VOC to the old server until we fully test the programs. We
> have set 
> ALLOWNFS to 1 as well. What is involved for us to run a file and setup a
> voc to 
> point to a completely different server?
> 
> Example) program A is on server 1, but we want the changes to reflect on
> server 2.
> 
> What we have been doing in the past is editing the VOC from one account
> to the other, but
> I'm not sure how to do this on another server.
> 
> Thanks.
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
  
_
Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_1
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] 2 servers - how do I point to a VOC on another server?

2010-03-30 Thread John Hester
If I'm understanding correctly, you want to run a program that
physically resides on the old server against data on the new server.  I
haven't done this myself, but I don't see any reason why you couldn't
run or catalog a program that sits on an NFS mount from another server.
The VOC for the remote file might look something like this:

BP.OLD

001: F
002: /mnt/nfs/old_server/BP
003: /mnt/nfs/old_server/D_BP

and you'll also need the corresponding object file:

BP.OLD.O

001: F
002: /mnt/nfs/old_server/BP.O
003: /mnt/nfs/old_server/D_BP.O

Then you should be able to RUN BP.OLD PROGRAMNAME or CATALOG BP.OLD
PROGRAMNAME to have its VOC entry replace one that points to the local
copy of the program.

-John

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
Sent: Tuesday, March 30, 2010 2:31 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] 2 servers - how do I point to a VOC on another server?


Hello,

We're running UniVerse 10.1.8 on our main server and we just bought
another
server with UniVerse 10.3.3. I would like to setup the old server as the
development
server and keep the new server as the production server. The problem is
we want to "elevate" some programs to the new server. Ideally we would
just 
point the VOC to the old server until we fully test the programs. We
have set 
ALLOWNFS to 1 as well. What is involved for us to run a file and setup a
voc to 
point to a completely different server?

Example) program A is on server 1, but we want the changes to reflect on
server 2.

What we have been doing in the past is editing the VOC from one account
to the other, but
I'm not sure how to do this on another server.

Thanks.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] 2 servers - how do I point to a VOC on another server?

2010-03-30 Thread Chris Austin

Hello,

We're running UniVerse 10.1.8 on our main server and we just bought another
server with UniVerse 10.3.3. I would like to setup the old server as the 
development
server and keep the new server as the production server. The problem is
we want to "elevate" some programs to the new server. Ideally we would just 
point the VOC to the old server until we fully test the programs. We have set 
ALLOWNFS to 1 as well. What is involved for us to run a file and setup a voc to 
point to a completely different server?

Example) program A is on server 1, but we want the changes to reflect on server 
2.

What we have been doing in the past is editing the VOC from one account to the 
other, but
I'm not sure how to do this on another server.

Thanks.

  
_
Hotmail is redefining busy with tools for the New Busy. Get more from your 
inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_2
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users