Skip to content

Commit

Permalink
creating updateing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
André Bauer committed Nov 14, 2016
1 parent f2ea243 commit 236f8a0
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,15 @@ The documentation for Zammad is organized into a couple of sections:

.. toctree::
:maxdepth: 2
:caption: Installation
:caption: Installation & Update

install-source
install-rpm
install-deb
install-docker
install-vagrant
install-elasticsearch
install-update


.. _getting-started-docs:
Expand Down
72 changes: 72 additions & 0 deletions install-update.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
Updateing Zammad
****************

Source update
=============

1. Download Zammad on your system
---------------------------------

You can directly download Zammad from https://ftp.zammad.com/ or use the direct url to get the latest stable release via https://ftp.zammad.com/zammad-latest.tar.gz

::

root@shell> wget https://ftp.zammad.com/zammad-latest.tar.gz
root@shell> cd /opt/
root@shell> tar -xzf zammad-latest.tar.gz
root@shell> chown -R zammad /opt/zammad
root@shell> su - zammad

2. Install all dependencies
---------------------------

::

zammad@shell> cd zammad
zammad@shell> gem install bundler

# For PostgreSQL (note, the option says "without ... mysql")::
zammad@shell> bundle install --without test development mysql

# For MySQL (note, the option says "without ... postgres")::
zammad@shell> bundle install --without test development postgres

3. Stop zammad services
-----------------------

Stop the application server, websocket server and scheduler.

4. Upgrade your database
------------------------

::

zammad@shell> export RAILS_ENV=production
zammad@shell> export RAILS_SERVE_STATIC_FILES=true # only if you use no http reverse proxy
zammad@shell> rake db:migrate

5. Start zammad services
------------------------

Start the application server, websocket server and scheduler.

6. Go and login to Zammad
-------------------------

DEB update
==========


::

apt-get update
apt-get upgrade

RPM update
==========

::

yum update


0 comments on commit 236f8a0

Please sign in to comment.