Update README_Install_Ubuntu.rdoc

This commit is contained in:
monotek 2013-01-09 14:48:18 +01:00
parent ba7e0d7d2a
commit 9221dbb818

View file

@ -7,18 +7,16 @@
* gem install rails
* gem install therubyracer
2. Add User
* useradd zammad -m -d /var/www/zammad -s /bin/bash
* echo "export RAILS_ENV=production" >> /var/www/zammad/.bashrc
3. Apache Config
* vi /etc/apache2/sites-available/zammad
<VirtualHost *:80>
ServerName zammad.inet.h1.mdd
ServerAdmin abauer@magix.net
ServerName zammad.example.com
ServerAdmin yourmail@example.com
SuexecUserGroup "zammad" "zammad"
@ -67,28 +65,24 @@
* ln -s /etc/apache2/mods-available/suexec.load /etc/apache2/mods-enabled/suexec.load
* service apache2 restart
4. Get Zammad
* cd /var/www/zammad
* wget http://zammad.org/zammad-1.0.1.tar.gz
* tar -xzf zammad-1.0.1.tar.gz
5. Edit Gemfile
* vi Gemfile
** comment
*** gem 'sqlite3'
** uncomment
*** gem 'libv8', '~> 3.11.8'
*** gem 'execjs'
*** gem 'therubyracer'
* comment
* gem 'sqlite3'
* uncomment
* gem 'libv8', '~> 3.11.8'
* gem 'execjs'
* gem 'therubyracer'
6. Install zammad
* bundle install
* chown -R zammad:zammad /var/www/zammad
7. Create Database
* mysql --defaults-extra-file=/etc/mysql/debian.cnf -e "CREATE DATABASE zammad_prod DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; CREATE USER 'zammad'@'localhost' IDENTIFIED BY 'some_pass'; GRANT ALL PRIVILEGES ON zammad_prod.* TO 'zammad'@'localhost'; FLUSH PRIVILEGES;"
* vi config/database.yml