Sponsored Content
Operating Systems SCO Old COBOL app move to new server Post 302972361 by datalink on Wednesday 4th of May 2016 10:50:03 AM
Old 05-04-2016
Wrench

Hello Mobble.
Reading your post's i see that your OS is Openserver 5.0.6
and Cobol system is RmCobol85. I am a cobol developer
since 1980 and ex Hp / Sco reseller and system administrator.

My problem was the same and Openserver 6 was unwanted.

My solution (for myself and all my customer) is to migrate
Os, Apps and Data to a virtualized environment using Virtualbox
(but with Wmplayer is the same).

Unlucky the SCO filesystem (Htfs) has no support or driver for
Windows/Linux, so the only way to migrate data and apps is FTP.

More, Virtualbox runs Openserver 5.0.7 very fine (5.0.6 is well know
to have a lot of bugs) but the original Cd is required to do a new
installation over the virtual hard-disk (and the license key, of curse).

I create a new VM (generic unix/linux) with 2 GB ram (this depend on
your hardware and how many users will login to the virtual server,
usually 4/8 gb are good). Virtual Hard disk kind IDE.

Starting from original Sco CD the OS was installed, then activated
(with original license key)

Sco Login (graphical desktop) disabled , only text console (as root: scologin disable)

Using FTP all Apps/Data/Homes directory copied from real server
to virtual machine.

More: instead of copy all into the virtual disk, you can map a Linux
folder with NFS into SCO, be aware that SCO 5 only support NFS V.3

Sco 5.0.7 give good support to usb, can format and mount pendrive
(for data migration and backup), and Usb Tape Drive.
Printers configured all as LPD queue

At end my customers with Putty Telnet open the same old login as
always. They don't see any difference between old real server and
the new one virtualized.

Simply, well working, at lowest cost.

Enjoy.

Bye
This User Gave Thanks to datalink For This Post:
 

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how to move a file from one server to another server using FTP in shell script?

I have a file --> file1.txt i need to copy this file to another server using FTP....the 2 servers are server1 and server2..may i know how to write a script that can do this? thanks in advance! Im a newbie to this... (4 Replies)
Discussion started by: forevercalz
4 Replies

2. Programming

cobol crn programme run on express cobol as .gnt

can i run .crn programme in express cobol which support to .gnt programme .... Plz tell me solution (2 Replies)
Discussion started by: bibi
2 Replies

3. Shell Programming and Scripting

Calling script from RM cobol and returning value to cobol

Is there a way you can return a value from a script that is called from a rm cobol program... 01 WS-COMD-LINE-PGM X(39) value sh ./getUserId.sh 12345" 01 WS-RETURN-SYS-CODE PIC 9(8). CALL "SYSTEM" USING WS-COMD-LINE-PGM GIVING WS-RETURN-SYS-CODE. ... (1 Reply)
Discussion started by: pavanmp
1 Replies

4. UNIX for Dummies Questions & Answers

difference weblogic server/webserver/app server

Hi All, I am getting confused with the terms below. All I know is an application can be installed on a server. But I see the following terms used in a company. All of them are installed on same Unix box. Could you please help me out in layman terms as to what these exactly means. (PS: I don't... (1 Reply)
Discussion started by: tostay2003
1 Replies

5. UNIX for Advanced & Expert Users

Sun java app server

quick question: where can I download sun java application server that will run in java6? or both? I need to install sun java app server and java6. thanks ---------- Post updated at 09:20 AM ---------- Previous update was at 09:12 AM ---------- OS: solaris10 (0 Replies)
Discussion started by: lhareigh890
0 Replies

6. Red Hat

Configure app server to view server files

Hi, We have a OEL6.1 installed on our server. We want developers to view there application logs generated on the server, but doesn't really want to give them access to server machine. Can someone please suggest how can we configure apache/httpd to create a url which will show all files in... (1 Reply)
Discussion started by: shrshah64
1 Replies

7. UNIX and Linux Applications

How to Monitor Tomcat App Server?

Tomcat stops logging intermittently for brief intervals of time like for 5 or 6 secs I wish to monitor if my Tomcat process gets stuck, hung or even shutdown or remains healthy at the time i see the problem of no logging. Can you please let me know how can i monitor Tomcat Application... (10 Replies)
Discussion started by: mohtashims
10 Replies
Plack::Handler(3pm)					User Contributed Perl Documentation				       Plack::Handler(3pm)

NAME
Plack::Handler - Connects PSGI applications and Web servers SYNOPSIS
package Plack::Handler::AwesomeWebServer; sub new { my($class, %opt) = @_; ... return $self; } sub run { my($self, $app) = @_; # launch the AwesomeWebServer and run $app in the loop } # then from command line plackup -s AwesomeWebServer -a app.psgi DESCRIPTION
Plack::Handler defines an adapter (connector) interface to adapt plackup and Plack::Runner to various PSGI web servers, such as Apache2 for mod_perl and Standalone for HTTP::Server::PSGI. It is an empty class, and as long as they implement the methods defined as an Server adapter interface, they do not need to inherit Plack::Handler. If you write a new handler for existing web servers, I recommend you to include the full name of the server module after Plack::Handler prefix, like Plack::Handler::Net::Server::Coro if you write a handler for Net::Server::Coro. That way you'll be using plackup command line option like: plackup -s Net::Server::Coro that makes it easy to figure out which web server you're going to use. METHODS
new $server = FooBarServer->new(%args); Creates a new adapter object. %args can take arbitrary parameters to configure server environments but common parameters are: port Port number the server listens to. host Address the server listens to. Set to undef to listen any interface. run $server->run($app); Starts the server process and when a request comes in, run the PSGI application passed in $app in the loop. register_service $server->register_service($app); Optional interface if your server should run in parallel with other event loop, particularly AnyEvent. This is the same as "run" but doesn't run the main loop. SEE ALSO
rackup perl v5.14.2 2011-02-27 Plack::Handler(3pm)
All times are GMT -4. The time now is 03:47 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy