Difference between revisions of "Installing Pier on Ubuntu"
From Organic Design wiki
(→Simple Setup of a Pier Image on a Webserver) |
(→Simple Setup of a Pier Image on a Webserver) |
||
Line 4: | Line 4: | ||
* Download Pier-2.0-OneClick.zip from http://www.piercms.com/download | * Download Pier-2.0-OneClick.zip from http://www.piercms.com/download | ||
+ | |||
* Unzip into any directory, but probably /var/www/domains/Pier.app for an OD install | * Unzip into any directory, but probably /var/www/domains/Pier.app for an OD install | ||
+ | |||
* Change ownership to www-data: | * Change ownership to www-data: | ||
{{code| | {{code| | ||
Line 22: | Line 24: | ||
"$VM" $VM_PARAMS "$IMAGE" | "$VM" $VM_PARAMS "$IMAGE" | ||
</pre> | </pre> | ||
+ | |||
* Restart | * Restart | ||
+ | |||
* Navigate to http://yourdomain:8080 | * Navigate to http://yourdomain:8080 |
Revision as of 08:42, 14 March 2011
Installing Pier on Ubuntu Organic Design procedure |
Simple Setup of a Pier Image on a Webserver
- Download Pier-2.0-OneClick.zip from http://www.piercms.com/download
- Unzip into any directory, but probably /var/www/domains/Pier.app for an OD install
- Change ownership to www-data:
- Edit /etc/rc.local and add the following BASH script just before exit 0 (note you will need to change paths if you unzipped into a directory other than /var/www/domains)
#!/bin/bash # settings USER="www-data" VM="/var/www/domains/Pier.app/Contents/Linux/squeakvm" VM_PARAMS="-mmap 256m -vm-sound-null -vm-display-null" IMAGE="/var/www/domains/Pier.app/Contents/Resources/Pier.image" # start the vm exec \ setuidgid "$USER" \ "$VM" $VM_PARAMS "$IMAGE"
- Restart
- Navigate to http://yourdomain:8080