[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 20000131: disk full



On Mon, 31 Jan 2000, Unidata Support wrote:

> 
> ------- Forwarded Message
> 
> >To: address@hidden
> >From: "Ka Kit Lai" <address@hidden>
> >Subject: Re: 2000131: Gempak Gemenviron file
> >Organization: .
> >Keywords: 200001312057.NAA12139
> 
> steve:
>    So what you mean is if the disk is full, even I run the command ldmadmin 
> watch, I wont see data coming in? 

Ka Kit,

There is no space to store any data on the file system, so no new data. 

What is the scour does? 

It deletes the older files using a cron job

Is that use to 
> remove all the old data file coming from Albany? If it does, do I need to 
> run it manual everytime when the disk is full?

Here's a URL on how to set up scour in the crontab:

http://www.unidata.ucar.edu/packages/ldm/ldmConfigInstallList.html#s9


I'm having trouble editing files and making crontab entries on your
machine because of library problems.  I can't use vi, more, etc.  It makes
it hard to do any configurations.

Here's the current status of my login. 

- did a ldmadmin stop because of the file system full
- remade the LDM queue
- did rm -r [A-Z]*  in the data directory trying to make some space for
the LDM
- commented out the entry in  pqact.conf that was making all the products.
I didn't think you were using them. It just a test entry.
- restarted the LDM, it is receiving data


Robb...


 Also, is it possible that you 
> can login to my machine and check out after the configuration? Also, there 
> is another machine called cumulus which is running mcidas and is still 
> getting data feed from albany. We try to turn it off but since it is running 
> on an OS/2 machine, we dont know how to turn it off. Will this affect the 
> data feed for gempak in halo too? Thank you.
> 
> machine: halo.sci.ccny.cuny.edu
> 
>                                     Ka Kit Lai
> 
> 
> >From: Unidata Support <address@hidden>
> >To: "Ka Kit Lai" <address@hidden>
> >CC: address@hidden
> >Subject: 2000131: Gempak Gemenviron file
> >Date: Mon, 31 Jan 2000 13:14:45 -0700
> >
> >Ka Kit,
> >
> >The problem you have in editing the Gemenviron file is that your
> >disk is full. The no space left on device message means that you
> >have to clean off some space so that the editor can save changes
> >made to the file. If your LDM is storing data to this disk
> >partition as well, that could be the reason you are not seeing
> >new data there as well. One thing you might want to address is
> >whether you are deleting old data off your system using the
> >~ldm/bin/scour program.
> >
> >Steve Chiswell
> >Unidata User Support
> >
> >
> > >From: "Ka Kit Lai" <address@hidden>
> > >Organization: .
> > >Keywords: 200001311920.MAA09395
> >
> > >Robb:
> > >    I still not getting data feed from Albany after you login to my 
> >machine
> > >to check out with some configuration problem. Also, I just copy and paste
> > >the Gemenviron file you send to me, but when I try to edit this file and
> > >save it, a message: No space left on device (warning--Gemenviron is
> > >incomplete) and the whole file content will be wipe out, what is the
> > >problem? Can you login to my machine halo and have a check both on the
> > >configuration on Gempak and LDM, because Prof. Hindman is going to need 
> >the
> > >gempak program run next week and we desperately need to have it work this
> > >week. Sorry to bother you again and I really appreciate your help. Thank
> > >you.
> > >
> > >                                        Ka Kit Lai
> > >
> > >
> > >>From: Unidata Support <address@hidden>
> > >>To: "Ka Kit Lai" <address@hidden>
> > >>Subject: 2000131: Gempak Gemenviron file
> > >>Date: Mon, 31 Jan 2000 11:31:07 -0700
> > >>
> > >># Gemenviron file for GEMPAK 5.4
> > >>#
> > >>#         Sets environment variables used in running GEMPAK
> > >>#         UNIDATA Program Center 6/1/92 (PB)
> > >>#         Revised 8/31/94 for GEMPAK 5.2
> > >>#         Modified 12/95 for Gempak5.2.1/Nawips (Chiz)
> > >>#               Modified  8/96 for Gempak5.4/NAWIPS (Chiz)
> > >>#---------------------------------------------------------------------
> > >>#  The command
> > >>#               source Gemenviron
> > >>#
> > >>#  or the individual lines below, must be included in your .login or
> > >>#  .cshrc file!
> > >>#---------------------------------------------------------------------
> > >># <<CONFIGURE>>
> > >>#  Please configure the following definitions to reflect your system:
> > >>#
> > >># Top level directory:
> > >>    setenv NAWIPS /home/gempak/NAWIPS-5.4
> > >>    setenv GARPHOME $NAWIPS/garp
> > >>    setenv GARP_PATH $GARPHOME/config
> > >>#
> > >># --------------------------------------------------------------------
> > >># Make sure NAWIPS directory exists
> > >>#
> > >>if ( ! -d $NAWIPS ) then
> > >>         echo "Can not find NAWIPS distribution."
> > >>         echo 'Check Gemenviron NAWIPS definition ->' $NAWIPS
> > >>         unsetenv NAWIPS
> > >>         exit
> > >>endif
> > >>
> > >>#try to determine operating system: command uname must be in path
> > >>#
> > >>if($?NA_OS == 0) then
> > >>    set TMP_OS=`uname -s | tr '[A-Z]' '[a-z]'`
> > >>    switch ($TMP_OS)
> > >>         case "aix":
> > >>            setenv NA_OS "aix"
> > >>            breaksw
> > >>         case hp-ux:
> > >>     set OS_MAJOR=`uname -r | cut -f1,2 -d.`
> > >>            if($OS_MAJOR == 'B.11') then
> > >>               setenv XCFLAGS "-DSYSLOG_RETURNS_INT"
> > >>            endif
> > >>            setenv NA_OS "hpux"
> > >>            breaksw
> > >>         case irix64:
> > >>            setenv XCFLAGS "-o32"
> > >>         case irix:
> > >>            setenv NA_OS "irix"
> > >>            breaksw
> > >>         case osf1:
> > >>            setenv NA_OS "osf"
> > >>            uac p noprint # supress warnings in xw driver for unaligned
> > >>access
> > >>            breaksw
> > >>         case sunos:
> > >>            set OS_MAJOR=`uname -r | sed 's/\..*//'`
> > >>            set HARDWARE=`uname -i | tr '[A-Z]' '[a-z]'`
> > >>            setenv NA_OS "sunos"
> > >>            if($OS_MAJOR == 5) then
> > >>               setenv NA_OS "sol"
> > >>            endif
> > >>            if(($NA_OS == 'sol')&&($HARDWARE == 'i86pc')) then
> > >>               setenv NA_OS "x86"
> > >>            endif
> > >>            breaksw
> > >>         case ultrix:
> > >>            setenv NA_OS "ultrix"
> > >>            breaksw
> > >>  case linux:
> > >>     setenv NA_OS "linux"
> > >>     breaksw
> > >>         case default:
> > >>            echo "trouble determining operating system configuration"
> > >>            echo "OS reported $TMP_OS"
> > >>            exit
> > >>    endsw
> > >>endif
> > >>
> > >># --------------------------------------------------------------------
> > >>#
> > >># GEMPAK 5.4 directory:
> > >>#
> > >>    setenv GEMPAKHOME $NAWIPS/gempak5.4
> > >>#
> > >># Directory for storing object libraries (GEMPAK + related software):
> > >>#
> > >>    setenv GEMLIB    $NAWIPS/lib/${NA_OS}
> > >>#
> > >># Directory for executables (GEMPAK + related software):
> > >>#
> > >>    setenv GEMEXE    $NAWIPS/bin/${NA_OS}
> > >>#
> > >># Remaining directories used by GEMPAK  (leave as is):
> > >>#
> > >>    setenv GEMPDF    $GEMPAKHOME/pdf
> > >>    setenv GEMTBL    $GEMPAKHOME/tables
> > >>    setenv GEMERR    $GEMPAKHOME/error
> > >>    setenv GEMHLP    $GEMPAKHOME/help
> > >>    setenv GEMMAPS   $GEMPAKHOME/maps
> > >>    setenv GEMNTS    $GEMPAKHOME/nts
> > >>#
> > >>#  NAWIPS specific directories
> > >>#
> > >>    setenv NAWIPS_EXE     $GEMEXE
> > >>    setenv NAWIPS_LIB     $GEMLIB
> > >>    setenv NAWIPS_INC     $NAWIPS/include
> > >>    setenv NAWIPS_HELP    $NAWIPS/help
> > >>    setenv NAWIPS_TABLES  $NAWIPS/tables
> > >>    setenv NWX_TABLES     $NAWIPS_TABLES/nwx
> > >>#
> > >># If you are installing on DEC, and therefore must
> > >># rebuild the maps, set GEMMAPS environment
> > >># variable to:
> > >>    if(($NA_OS == "osf")||($NA_OS == "ultrix")||($NA_OS ==
> > >>"linux")||($NA_OS == "x86")) then
> > >>         setenv GEMMAPS $GEMPAKHOME/maps/decmaps
> > >>         echo "Setting to decmaps"
> > >>    endif
> > >>#
> > >>    setenv BRDGDIR   $NAWIPS/unidata/ldmbridge
> > >>#
> > >># Add NAWIPS to the X applications resource path.
> > >>#
> > >>set xresources=""
> > >>
> > >>if ( -d $NAWIPS/resource ) then
> > >>         set xresources="$NAWIPS/resource/%N"
> > >>         if ( $?XUSERFILESEARCHPATH ) then
> > >>            setenv XUSERFILESEARCHPATH 
> >${xresources}:${XUSERFILESEARCHPATH}
> > >>         else
> > >>            setenv XUSERFILESEARCHPATH $xresources
> > >>         endif
> > >>endif
> > >>
> > >>#
> > >>#
> > >># Set PATH to include $GEMEXE
> > >>#
> > >>setenv SCRIPTS_EXE   $NAWIPS/bin/scripts
> > >>setenv PATH ${PATH}:${GEMEXE}:${SCRIPTS_EXE}
> > >>
> > >>#
> > >># --------------------------------------------------------------------
> > >># <<CONFIGURE>>
> > >># Data directories, either real time or the Hurricane Bob sample data 
> >set:
> > >>#
> > >>#  setenv GEMDATA   $GEMPAKHOME/data
> > >>    setenv GEMDATA   /data/ldm/gempak
> > >>#
> > >>    setenv NTRANS_META    $GEMDATA/meta
> > >>    setenv TEXT_DATA      $GEMDATA/nwx
> > >>    setenv AFOS_BITMAPS  $NAWIPS/nprogs/afos/bitmaps
> > >>    setenv AFOS_DATA     $NAWIPS/tmp
> > >>    setenv AFOS_LOG      $NAWIPS/tmp
> > >>    setenv AFOS_BIN      $NAWIPS/tmp
> > >>    setenv AFOS_ALARMS   $NAWIPS/tmp
> > >>#
> > >>#  Location of NSAT directory tree "Required!!"...must exist
> > >>#
> > >>    setenv SAT            $GEMDATA/images/sat
> > >>#
> > >>#
> > >># Below follow  variables for data locations (site specific)
> > >># Not required for NAWIPS, but may be used in scripts etc.
> > >>#
> > >>    setenv LDMDATA        /data/ldm
> > >>    setenv GOES8          $SAT/GOES-8
> > >>    setenv GOES9          $SAT/GOES-9
> > >>    setenv HDS           $GEMDATA/hds
> > >>    setenv SAO            $GEMDATA/surface
> > >>    setenv UPA            $GEMDATA/upperair
> > >>    setenv RAW_SAO       $LDMDATA/surface/sao
> > >>    setenv RAW_SYN       $LDMDATA/surface/syn
> > >>    setenv RAW_UPA       $LDMDATA/upperair
> > >>    setenv NIDS          $GEMDATA/images/radar/nids/FTG
> > >>    setenv NLDN          $GEMDATA/nldn
> > >>
> > >>    setenv ZONEMAPS      $GEMPAKHOME/maps/bna
> > >>    setenv TORN_WARN     $TEXT_DATA/watch_warn/torn_warn
> > >>    setenv TSTRM_WARN    $TEXT_DATA/watch_warn/tstrm_warn
> > >>
> > >>
> > >
> > >______________________________________________________
> > >Get Your Private, Free Email at http://www.hotmail.com
> > >
> >
> >**************************************************************************** 
> ><
> >Unidata User Support                                    UCAR Unidata 
> >(303)497-8644                                                  P.O. Box 
> >address@hidden                                   Boulder, CO 
> >---------------------------------------------------------------------------- 
> ><
> >Unidata WWW Service                        http://www.unidata.ucar.edu/     
> >**************************************************************************** 
> ><
> 
> ______________________________________________________
> Get Your Private, Free Email at http://www.hotmail.com
> 
> 
> ------- End of Forwarded Message
> 

===============================================================================
Robb Kambic                                Unidata Program Center
Software Engineer III                      Univ. Corp for Atmospheric Research
address@hidden             WWW: http://www.unidata.ucar.edu/
===============================================================================