Changes between Version 197 and Version 198 of Versions


Ignore:
Timestamp:
Feb 8, 2022, 9:07:40 AM (2 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Versions

    v197 v198  
    204204- rasdapy on Python 2 is not maintained anymore, migrating to rasdapy3 is recommended ([https://pypi.org/project/rasdapy3/ docs])
    205205
    206 === Upgrading instructions
    207 
    208 TODO
     206=== Upgrading
     207
     208The sections below contain instructions on how to upgrade the software installation from a previous version to stable rasdaman v10.0.
     209
     210In addition, it is highly recommended to review the list of incompatible changes.
     211
     212==== From v9.8
     213
     214To upgrade from the previous stable version v9.8 to stable v10.0:
     215
     2161. Update the repository metadata with `sudo apt-get update` (Ubuntu) or `sudo yum update` (CentOS 7)
     2172. Stop rasdaman with `sudo service rasdaman stop`; make sure that the processes are really stopped: if `ps aux | grep -E 'ras(mgr|server)'` returns any processes, stop them with `pkill -9 -f 'ras(mgr|server)'`
     2183. Install the new rasdaman version with `sudo apt-get install rasdaman` (Ubuntu) or `sudo yum upgrade rasdaman` (CentOS 7)
     219
     220==== From testing
     221
     222To upgrade from the latest testing version to stable v10.0:
     223
     2241. Change the testing package repository to the stable one in `/etc/apt/sources.list.d/rasdaman.list` (Ubuntu) or `/etc/yum.repos.d/rasdaman.repo` (CentOS 7)
     2252. Stop rasdaman with `sudo service rasdaman stop`; make sure that the processes are really stopped: if `ps aux | grep -E 'ras(mgr|server)'` returns any processes, stop them with `pkill -9 -f 'ras(mgr|server)'`
     2263. Remove the current rasdaman package with `sudo apt-get remove rasdaman` (Ubuntu) or `sudo yum erase rasdaman` (CentOS 7); this is required because the stable package has the same version but a lower iteration number than the testing one
     2274. Install the new rasdaman version with `sudo apt-get install rasdaman` (Ubuntu) or `sudo yum upgrade rasdaman` (CentOS 7)
    209228
    210229=== Contributors