Upgrades Ubuntu 16

From DreamFactory
Jump to: navigation, search
DreamFactoryAPTUbuntu 16.04Upgrades Ubuntu 16
Line 17: Line 17:
 
#* <source lang="bash">$ php artisan dreamfactory:service-type-migrate</source>
 
#* <source lang="bash">$ php artisan dreamfactory:service-type-migrate</source>
 
# Reset permissions
 
# Reset permissions
#* <source lang="bash">$ sudo chown -R dfuser:www-data storage/ bootstrap/cache/</source>
+
#* <source lang="bash">$ sudo chown -R www-data:dfuser storage/ bootstrap/cache/</source>
 
#* <source lang="bash">$ sudo chmod -R 2775 storage/ bootstrap/cache/</source>
 
#* <source lang="bash">$ sudo chmod -R 2775 storage/ bootstrap/cache/</source>
 
# Clear caches
 
# Clear caches

Revision as of 12:10, 24 October 2016

Upgrading DreamFactory involves getting the required code via git and composer and then using the Laravel artisan command migrate system data and settings. In these instructions, we will assume you are logged in as a user named dfuser. Anywhere you see this username substitute your own. We will also assume your installed dreamfactory in /opt/dreamfactory just like in the Installation instructions.

  1. Navigate to the install directory
    • $ cd /opt/dreamfactory
  2. Stash and changes tracked by git
    • $ git stash
  3. Get the latest code
    • $ git checkout master
    • $ git pull origin master
  4. Update composer
    • $ composer self-update
  5. User composer to get dependencies
    • Note for commercial users: Copy your commercial license files into the working directory before running this command.
    • $ composer install --no-dev
  6. Migrate the system data
    • $ php artisan migrate --seed
    • $ php artisan dreamfactory:service-type-migrate
  7. Reset permissions
    • $ sudo chown -R www-data:dfuser storage/ bootstrap/cache/
    • $ sudo chmod -R 2775 storage/ bootstrap/cache/
  8. Clear caches
    • $ php artisan config:clear
    • $ php artisan cache:clear
  9. Log in to your instance in the browser (you may need to refresh/clear browser cache.) Go to the Config tab and confirm the instance was upgraded.