Changes between Version 5 and Version 6 of NewLiveServer


Ignore:
Timestamp:
10/15/10 14:57:32 (6 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewLiveServer

    v5 v6  
    55Munin starts for the server are available on [http://nsa.rat.burntout.org/munin/webarch.net/quince.webarch.net.html the webarchitects monitoring server] and on [https://kiwi.transitionnetwork.org/munin/webarch.net/quince.webarch.net.html the transition network development server]. 
    66 
     7The live site is being set up at http://live.quince.webarch.net/ 
     8 
    79== Setup Notes == 
    810 
    9 Live site: 
     11Live site, directory and svn checkup: 
    1012 
    1113{{{ 
     
    1416svn co https://svn.webarch.net/transition/code/trunk 
    1517mv trunk www 
     18cd /web/transitionnetwork.org/www/sites 
     19mkdir cache 
     20chown www-data:www-data cache 
     21mkdir workspaces.transitionnetwork.org 
     22rsync -av kiwi:/home/live/new-live-data/web/transitionnetwork.org/www/sites/workspaces.transitionnetwork.org/ workspaces.transitionnetwork.org/ 
     23chown -R www-data:www-data workspaces.transitionnetwork.org/files/ 
     24cd /web/transitionnetwork.org/www/sites/default 
     25rsync -av kiwi:/home/live/new-live-data/web/transitionnetwork.org/www/sites/default/files/ files/ 
     26chown -R www-data:www-data files 
    1627}}} 
    1728 
     29Databases were imported using a script, /usr/local/bin/mysql-update-from-gaia the two settings.php files were edited to suite. 
     30 
     31There was a problem with missing modules: 
     32 
     33{{{ 
     34Warning: require_once(./sites/all/modules/cacherouter/cacherouter.inc) [function.require-once]: failed to open stream: No such file or directory in /web/transitionnetwork.org/www/includes/bootstrap.inc on line 1009 
     35 
     36Fatal error: require_once() [function.require]: Failed opening required './sites/all/modules/cacherouter/cacherouter.inc' (include_path='.:/usr/share/php:/usr/share/pear') in /web/transitionnetwork.org/www/includes/bootstrap.inc on line 1009 
     37}}} 
     38 
     39This modules isn't in svn any more: https://svn.webarch.net/transition/code/trunk/sites/all/modules/cacherouter 
     40 
     41So it was copied over manually: 
     42 
     43{{{ 
     44mkdir /web/transitionnetwork.org/www/sites/all/modules/cacherouter/ 
     45rsync -av kiwi:/home/live/new-live-data/web/transitionnetwork.org/www/sites/all/modules/cacherouter/ /web/transitionnetwork.org/www/sites/all/modules/cacherouter/ 
     46}}} 
     47 
     48