Skip to content

Commit

Permalink
reorganized install from DEB/RPM to OS name
Browse files Browse the repository at this point in the history
  • Loading branch information
André Bauer committed Nov 15, 2016
1 parent 957690b commit 5d64aac
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 22 deletions.
6 changes: 4 additions & 2 deletions index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ The documentation for Zammad is organized into a couple of sections:
:caption: Installation & Update

install-source
install-rpm
install-deb
install-centos
install-debian
install-ubuntu
install-suse
install-docker
install-vagrant
install-elasticsearch
Expand Down
8 changes: 6 additions & 2 deletions install-rpm.rst → install-centos.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Install with RPM
****************
Install on CentOS
*****************

Currently we support RHEL6/CentOS6 and RHEL7/CentOS7.

Expand All @@ -22,6 +22,10 @@ CentOS7
baseurl=https://rpm.packager.io/gh/zammad/zammad/centos7/stable
enabled=1" | sudo tee /etc/yum.repos.d/zammad.repo

::

sudo yum install zammad


CentOS6
-------
Expand Down
69 changes: 69 additions & 0 deletions install-debian.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
Install on Debian
*****************

Currently we support Debian 8


Add Zammad DEB Repo and install
===============================

::

wget -qO - https://deb.packager.io/key | sudo apt-key add -
echo "deb https://deb.packager.io/gh/zammad/zammad jessie stable" | sudo tee /etc/apt/sources.list.d/zammad.list
sudo apt-get update
sudo apt-get install zammad


Start Zammad services:
======================

::

sudo systemctl zammad start

You can manage the Zammad services manually:
--------------------------------------------

::

sudo systemctl status zammad
sudo systemctl stop zammad
sudo systemctl start zammad
sudo systemctl restart zammad

only web application server
---------------------------

::

sudo systemctl status zammad-web
sudo systemctl stop zammad-web
sudo systemctl start zammad-web
sudo systemctl restart zammad-web

only worker process
-------------------

::

sudo systemctl status zammad-worker
sudo systemctl stop zammad-worker
sudo systemctl start zammad-worker
sudo systemctl restart zammad-worker

only websocket server
---------------------

::

sudo systemctl status zammad-websocket
sudo systemctl stop zammad-websocket
sudo systemctl start zammad-websocket
sudo systemctl restart zammad-websocket


Go to http://localhost and you'll see:
======================================

* "Welcome to Zammad!", there you need to create your admin user and you need to invite other agents.
13 changes: 13 additions & 0 deletions install-suse.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Install on Suse
***************

Currently we support SLES 12 & OpenSuse 42.



Sorry, this still needs to be added :-(

Do you want to contribute to the Zammad documentation?

Open a new GitHub pull request @ https://github.com/zammad/zammad-documentation with your changes.

21 changes: 3 additions & 18 deletions install-deb.rst → install-ubuntu.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Install with DEB
Install on Ubuntu
****************

Currently we support Debian 8 & Ubuntu 16.04
Currently we support Ubuntu 16.04


Add Zammad DEB Repo and install
Expand All @@ -10,26 +10,11 @@ Add Zammad DEB Repo and install
::

wget -qO - https://deb.packager.io/key | sudo apt-key add -

Debian:
-------

::

echo "deb https://deb.packager.io/gh/zammad/zammad jessie stable" | sudo tee /etc/apt/sources.list.d/zammad.list

Ubuntu:
-------

::

echo "deb https://deb.packager.io/gh/zammad/zammad xenial stable" | sudo tee /etc/apt/sources.list.d/zammad.list

::

sudo apt-get update
sudo apt-get install zammad


Start Zammad services:
======================

Expand Down

0 comments on commit 5d64aac

Please sign in to comment.