home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / database / ingres / 2190 < prev    next >
Encoding:
Text File  |  1993-01-08  |  1.9 KB  |  52 lines

  1. Newsgroups: comp.databases.ingres
  2. Path: sparky!uunet!gatech!darwin.sura.net!uvaarpa!cv3.cv.nrao.edu!mail-to-news-gateway
  3. From: drcoles@somnet.sandia.gov (Dwight R Coles)
  4. Subject: Shared Memory Address Bug, Ingres on Sun 4.1.3
  5. Message-ID: <9301071943.AA09853@somnet.Sandia.GOV>
  6. Sender: root@nrao.edu (Operator)
  7. Organization: National Radio Astronomy Observatory
  8. Date: Thu, 7 Jan 1993 19:43:02 GMT
  9. Lines: 41
  10.  
  11. Sorry if you on the list have already heard of this bug, but since
  12. I've been off of it for two months, I don't know if it has been
  13. discussed.  Anyway....
  14.  
  15. Ingres (ver 6.4/02/00) fails to iistartup properly on Sun 4.1.3
  16. due to a bad shared memory address.  This bug popped up at 4.1.3,
  17. as things were OK under 4.1.2 and earlier.  You will recognize it
  18. by the following output from the step in iistartup which 
  19. "allocates shared memory":
  20.  
  21. !shmat for id 102 at address F4000000 fails
  22. !errno = 22
  23. !Can't map locking segment into memory at address FFFFFFFF
  24. !Check or adjust the value of II_LG_MAP_ADDR.....
  25.  
  26. To fix this, set the Ingres variable II_LG_MAP_ADDR to 10000000.
  27. Example:
  28.  
  29.     ingsetenv II_LG_MAP_ADDR 10000000
  30.  
  31. You will probably want to stick this line into the rc or the rc.local
  32. file immediately before the "su ingres...." line.
  33.  
  34.  
  35.  
  36. A second bug which we found on the Ingres 6.4/02/00 tape for Suns is 
  37. that the ingres/files/iishutdown file is in compressed form (.Z).  If
  38. you are doing a new install, there is no iishutdown available when
  39. iibuild tries to do it (the iishutdown step occurs BEFORE the uncompress
  40. step).   Thus, after reading the tape, you may want to:
  41.  
  42.    cd utility
  43.    uncompress iishutdown.Z
  44.    cd ..
  45.  
  46. On updated installs, you simply get to use the old version of iishutdown
  47. to shut down any old versions of Ingres back-ends (which is fine).  Then
  48. the uncompress command overwrites the iishutdown file with a new copy.
  49.  
  50. Later - Dwight Coles      drcoles@sandia.gov
  51.  
  52.