Version 13 (modified by 12 years ago) ( diff ) | ,
---|
Upgrades
Fabfile
This is normally done using Fab:
fab <systemname> deploy
- Current Fabfile: http://eden.sahanafoundation.org/browser/static/scripts/tools/fabfile.py
- Current Aliases: ConfigurationGuidelines#Usefulaliases
See:
Old
Note: As of January 2012, BZR/Launchpad info for eden is deprecated. Please visit the GitHub page. Thanks.
Put site into Maintenance:
vim /etc/crontab #0-59/1 * * * * www-data cd /path/to/web2py/ && python web2py.py -C -D 1 >> /tmp/cron.output 2>&1 vim /etc/apache/sites-available/maintenance RewriteEngine On RewriteRule ^/(.*) /maintenance.html ln -sf /etc/apache/sites-available/maintenance /etc/apache/sites-enabled/mysite /etc/init.d/apache2 force-reload
Update code:
cd /path/to/web2py git pull upstream
Trial run:
cd /path/to/web2py python web2py.py -S eden -M
Fix any Database Issues:
- The .table files in the databases directory contains what web2py knows about your database
- You need to set deployment_settings.base.migrate=True in
models/000_config.py
before you update the code and switch back to deployment_settings.base.migrate=False later on. - In case of database mismatches - check the databases directory for the appropriate
.table
file and change accordingly.
If using MySQL, then can use phpMyAdmin, if using SQLite then can use sqlite3
command-line tool:
- Linux: (
apt-get install sqlite3
) - Windows: http://www.sqlite.org/sqlite-3_6_23_1.zip
- Documentation: http://www.sqlite.org/sqlite.html
Restore site into production:
vim /etc/crontab 0-59/1 * * * * www-data cd /path/to/web2py/ && python web2py.py -C -D 1 >> /tmp/cron.output 2>&1 ln -sf /etc/apache/sites-available/mysite /etc/apache/sites-enabled/mysite /etc/init.d/apache2 force-reload
UserGuidelines/Admin UserGuidelines/Admin UserGuidelines/Admin
Attachments (1)
-
db_migration_4_gis.sh
(8.8 KB
) - added by 10 years ago.
Script to update the database after the GIS schema changes: https://github.com/flavour/eden/commit/393ee22bd91a9125181c09da25a9463692326f7c
Download all attachments as: .zip
Note:
See TracWiki
for help on using the wiki.