Changes between Version 5 and Version 6 of Public/Docs/CinnamonSetupDebian1010


Ignore:
Timestamp:
Sep 16, 2019, 6:12:08 PM (5 years ago)
Author:
Administrator
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Public/Docs/CinnamonSetupDebian1010

    v5 v6  
    139139
    140140TODO rewrite
    141 * Pull files from the proxy to the VM.
    142 > **NOTE:** This is specific to the texolution hosting environment. In other environments, the files must be provided in an appropriate way. A download package for the resources needed to install Cinnamon Server will be provided soon.
    143  {{{
    144  scp install@<proxy ip>:/home/install/content.sql.gz /root
    145  scp install@<proxy ip>:/home/install/content.tar.gz /root
    146  scp install@<proxy ip>:/home/install/cinnamon.war /root
    147  gunzip /root/content.sql.gz
    148  }}}
    149 * Restore the content files.
    150  {{{
    151  mkdir /opt/cinnamon/cinnamon-data
    152  mkdir /opt/cinnamon/cinnamon-data/index
    153  tar xf /root/content.tar.gz -C /opt/cinnamon/cinnamon-data
    154  }}}
    155 * Move the {{{content}}} folder directly under {{{cinnamon-data}}}.
    156 TODO end rewrite
    157 
     141* Upload cinnamon.zip to /home/install.
     142* Unzip the required files and move Cinnamon content and system files to the correct location:
     143 {{{
     144 unzip cinnamon.zip
     145 cd cinnamon
     146 mv cinnamon-data /opt/cinnamon
     147 mv cinnamon-system /opt/cinnamon
     148 }}}
    158149* Create database and import SQL dump.
    159150 {{{
     
    161152 create database content with owner=cinnamon;
    162153 \q
    163  sudo -u postgres psql content < /root/content.sql
    164  }}}
    165 
    166 TODO rewrite
    167 * Restore the configuration files.
    168  {{{
    169  mkdir /opt/cinnamon/cinnamon-system
    170  mkdir /opt/cinnamon/cinnamon-system/global
    171  mkdir /opt/cinnamon/cinnamon-system/global/log
    172  mkdir /opt/cinnamon/cinnamon-backup
    173  }}}
    174 TODO end rewrite
    175 
     154 sudo -u postgres psql content < /home/install/cinnamon/content.sql
     155 }}}
    176156* Change the owner and permissions of the Cinnamon directories.
    177157 {{{