old use server

Installation Guide

Connecting to Linux Server

  • Connection configuration (PuTTY & WinSCP & Xming)
  • You will need the IP ADDRESS (66.64.81.149) of the server as you work through the configuration.  Please do not share this IP address with unauthorized users.  It is RESTRICTED information.  Knowing the IP address opens up more potential for attack on the server.  This is why we do not have this information in the pdf document that is more widely accessed.

Using PC SAS to submit jobs to the Linux Server

      • Open the Base SAS application in your PC or laptop
      • At the top of your program type in the following (This is run at the beginning every time you start up base sas)
        %let server = 66.64.81.149 5019;
        options comamid = tcp remote = server;
        signon username = _prompt_;
        run;
      • Submit this small program. It will ask for your login/pwd for the server. Log in.
      • After that. you can put any code you want to run on the server between the following two keywords (rsubmit & rsubmitend)
      • Example (this code should work for everyone. Run this to confirm you are setup correctly.)
        rsubmit;
        libname in “/opt/HPM/usr/kum/data”;
        proc print data=in.test(obs=10);
        rsubmitend;
      • More documentation