mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:13 +01:00
Add openSUSE installation instruction
parent
0c96d05d5b
commit
03d1db6162
@ -19,3 +19,154 @@ below list.
|
||||
* * *
|
||||
|
||||
**IMPORTANT:** ``EGroupware installation consists of two versions; EPL Version and Community Version. Technically, the only installation difference between EPL and Community version is their repository URLs. Please make sure you will follow relevant difference parts of your desired version.``
|
||||
|
||||
Are you an expert admin? then follow the Express Instruction below, otherwise
|
||||
please follow [step-by-step](#step-by-step-installation) installation.
|
||||
|
||||
| Express Instruction
|
||||
|---------------------------------
|
||||
| [1](#step-1)- ``` vi /etc/zypp/repos.d/egroupware-epl.repo``` <br></br>Add the following lines:<br></br>```#EGroupware EPL repository```<br></br>```[egroupware-epl]```<br>```name=EGroupware EPL (openSUSE VERSION)```<br>```type=rpm-md```<br>```baseurl = http://USERNAME:PASSWORD@download.egroupware.org/repos/stylite-epl/openSUSE_Leap_42.2/ ./```<br>```gpgkey = http://USERNAME:PASSWORD@download.egroupware.org/repos/stylite-epl/openSUSE_Leap_42.2/repodata/repomd.xml.key```<br>```gpgcheck=1```<br>```enabled=1```<br>```autorefresh=1```
|
||||
| [2](#step-2)- ```zypper update```
|
||||
| [3](#step-3)- ```zypper install mariadb egroupware-epl```<br></br>follow the installation instruction
|
||||
| [4](#step-4)- ```less /root/egroupware-epl.log```
|
||||
| [5](#step-5)- ***Congratulations!!!*** You may login to your EGroupware instance
|
||||
|
||||
******
|
||||
|
||||
### STEP-BY-STEP INSTALLATION
|
||||
|
||||
You can quickly install EGroupware by following below steps:
|
||||
|
||||
#### step 1:
|
||||
Add EGroupware repository into source lists in order to fetch EGroupware's packages.
|
||||
|
||||
```
|
||||
vi /etc/zypp/repos.d/egroupware-epl.repo
|
||||
```
|
||||
|
||||
For EPL Version:
|
||||
```
|
||||
#EGroupware EPL repository
|
||||
deb http://USERNAME:PASSWORD@download.egroupware.org/repos/stylite-epl/DISTRO_NAME/ ./
|
||||
```
|
||||
Example:
|
||||
```
|
||||
#EGroupware EPL repository
|
||||
deb http://peter:secret@download.egroupware.org/repos/stylite-epl/openSUSE_Leap_42/ ./
|
||||
```
|
||||
OR
|
||||
|
||||
For Community Version:
|
||||
```
|
||||
#EGroupware Community repository
|
||||
deb http://download.egroupware.org/repositories/server:/eGroupWare/DISTRO_NAME/ ./
|
||||
```
|
||||
Example:
|
||||
```
|
||||
#EGroupware Community repository
|
||||
deb http://download.opensuse.org/repositories/server:/eGroupWare/openSUSE_Leap_42/ ./
|
||||
```
|
||||
Replace the following variables used in above urls with your own values:</br>
|
||||
*USERNAME*:*PASSWORD* are your given credentials for EPL version.</br>
|
||||
|
||||
*DISTRO_NAME*: Means the version of distribution you're install EGroupware on it. You can find out the right version name from following list:</br>
|
||||
|
||||
<table>
|
||||
<tr ><td colspan="all">DISTRO_NAME</td></tr>
|
||||
<tr>
|
||||
<td>openSUSE_Leap_42.3</td>
|
||||
<td>openSUSE_Leap_42.2</td>
|
||||
<td>openSUSE_Leap_42.1</td>
|
||||
<td>openSUSE_13.2</td>
|
||||
<td>openSUSE_13.1</td>
|
||||
<td>openSUSE_11.4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>SLE_12</td>
|
||||
<td>SLE_11_SP3</td>
|
||||
<td>SLE_11_SP2</td>
|
||||
<td>SLE_11_SP1</td>
|
||||
<td>SLE_11</td>
|
||||
<td>SLE_10</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
*** if you are not sure what distribution you're running, simply execute the following command:</br>
|
||||
```
|
||||
cat /etc/os-release
|
||||
```
|
||||
|
||||
#### Step 2:
|
||||
After adding EGroupware's repository into sources list, we need to update to fetch packages. Before doing the update we are going to make sure that we have the repository key
|
||||
added.
|
||||
|
||||
EGroupware EPL Version:
|
||||
```
|
||||
wget -O - http://USER:PASSWORD@download.egroupware.org/build%40egroupware.org | apt-key add -
|
||||
```
|
||||
OR
|
||||
|
||||
EGroupware Community Version:
|
||||
```
|
||||
wget -nv https://download.opensuse.org/repositories/server:eGroupWare/Debian_9.0/Release.key -O Release.key | apt-key add -
|
||||
```
|
||||
if you're not running Debian_9.0 please see [DISTRO_NAME](https://software.opensuse.org/download.html?project=server%3AeGroupWare&package=egroupware-epl) to find out your distro specific url.
|
||||
|
||||
```
|
||||
apt update
|
||||
```
|
||||
|
||||
#### Step 3:
|
||||
|
||||
Now it's time to install egroupware-epl packages. Depends on the webserver you
|
||||
would like to use with EGroupware, you may install a webserver among the egroupware-epl
|
||||
packages, by default Apache will be installed.
|
||||
|
||||
``` apt install egroupware-epl ```
|
||||
|
||||
e.g. for nginx installation:
|
||||
|
||||
``` apt install nginx php-fpm egroupware-epl```
|
||||
|
||||
follow the installation instruction as shown in following figures:
|
||||
|
||||
``In the following instructions whenever you leave a password field empty,
|
||||
a randomized password gets generated which you can get access to it via egroupware-epl.log
|
||||
file after installation is completed.``
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><img src="https://raw.githubusercontent.com/wiki/EGroupware/egroupware/pics/installation/figure1.png"/></td>
|
||||
<td><img src="https://raw.githubusercontent.com/wiki/EGroupware/egroupware/pics/installation/figure2.png"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://raw.githubusercontent.com/wiki/EGroupware/egroupware/pics/installation/figure3.png"/></td>
|
||||
<td><img src="https://raw.githubusercontent.com/wiki/EGroupware/egroupware/pics/installation/figure4.png"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://raw.githubusercontent.com/wiki/EGroupware/egroupware/pics/installation/figure5.png"/></td>
|
||||
<td><img src="https://raw.githubusercontent.com/wiki/EGroupware/egroupware/pics/installation/figure6.png"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
#### Step 4:
|
||||
You may check egroupware-epl.log file in order to check if everything went well during the installation plus you can get access to your egroupware credentials.
|
||||
|
||||
```
|
||||
less /root/egroupware-epl.log
|
||||
```
|
||||
|
||||
from this moment on you may get logged in to your EGroupware instance via the mentioned
|
||||
url in egroupware-epl.log. Although, before doing that we highly do recommend to take couple of more steps to adjust couple of settings for [PHP and MyQL](https://github.com/EGroupware/egroupware/wiki/Basic-PHP-%26amp%3B-MySQL-Adjustments) in order to get the best performance.
|
||||
|
||||
#### Step 5:
|
||||
Congratulations!!!
|
||||
|
||||
_back to [Content](#content)_
|
||||
|
||||
* * *
|
||||
|
||||
##### End of Document
|
||||
|
||||
* * *
|
||||
|
Loading…
Reference in New Issue
Block a user