Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jess Portnoy committed Dec 29, 2015
1 parent 14b6b87 commit 3b7f219
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,26 @@ const char *appname; // app identifier string, configured with the aware.appname

# Basic setup

## Debian/Ubuntu and friends


## RHEL/CentOS and friends
The JaM extensions are available from Kaltura's CE repo.
To add the repo, run:
To add the RHEL/CentOS 6 repo, add this to /etc/yum.repos.d/jam.list:
```
[Kaltura]
name = Kaltura Server
baseurl = http://installrepo.origin.kaltura.org/releases/latest/RPMS/$basearch/
gpgkey = http://installrepo.origin.kaltura.org/releases/RPM-GPG-KEY-kaltura
gpgcheck = 1
enabled = 1
```
# rpm -ihv http://installrepo.kaltura.org/releases/kaltura-release.noarch.rpm
To add the RHEL/CentOS 7 repo, add this to /etc/yum.repos.d/jam.list:
```
[Kaltura]
name = Kaltura Server
baseurl = http://installrepo.origin.kaltura.org/rhel7/latest/RPMS/$basearch/
gpgkey = http://installrepo.origin.kaltura.org/releases/RPM-GPG-KEY-kaltura
gpgcheck = 1
enabled = 1
```
To install the main JaM ext:
```
Expand All @@ -62,10 +74,17 @@ To install the main JaM ext:

To install the backends:
```
# yum install php-jam-email php-jam-elasticsearch
# yum install php-jam-email php-jam-elasticsearchi php-jam-snmp php-jam-files
```
Then set proper values in /etc/php.d/jam\*.ini and reload Apache if needed.

If you use a different distro that supports RPM, you can build the packages from php-jam.spec:
```
$ rpmbuild -bb --with email --with files --with snmp --with elasticsearch php-jam.spec
```

## Debian/Ubuntu and friends

## Compiling from source

### Compiling the JaM extension
Expand Down

0 comments on commit 3b7f219

Please sign in to comment.