cerebrate/INSTALL/INSTALL.md

103 lines
3.2 KiB
Markdown
Raw Normal View History

2020-06-22 17:58:56 +02:00
## Requirements
An Ubuntu server (18.04/20.04 should both work fine) - though other linux installations should work too.
- apache2, mysql/mariadb, sqlite need to be installed and running
2020-06-25 18:29:24 +02:00
- php extensions for intl, mysql, sqlite3, mbstring, xml need to be installed and running
- composer
2020-06-29 12:08:40 +02:00
sudo apt install apache2 mariadb-server git composer php-intl php-mbstring php-dom php-ldap php-sqlite3 sqlite libapache2-mod-php php-mysql
2020-06-22 17:58:56 +02:00
## Cerebrate installation instructions
2020-06-25 18:29:24 +02:00
Install dependencies
```
sudo apt install composer apache2 libapache2-mod-php php php-intl php-mysql php-mbstring php-sqlite3 php-xml unzip mariadb-server
```
2020-06-25 18:53:52 +02:00
Clone this repository (for example into /var/www/cerebrate)
2020-06-22 14:50:56 +02:00
```
2020-06-25 18:29:24 +02:00
sudo mkdir /var/www/cerebrate
sudo chown www-data:www-data /var/www/cerebrate
sudo -u www-data git clone https://github.com/cerebrate-project/cerebrate.git /var/www/cerebrate
2020-06-22 14:50:56 +02:00
```
Run composer
2020-06-22 14:50:56 +02:00
```
cd /var/www/cerebrate
2020-06-25 18:29:24 +02:00
sudo -u www-data composer install
2020-06-22 14:50:56 +02:00
```
Create a database for cerebrate
2020-06-22 14:50:56 +02:00
```
mysql
CREATE DATABASE cerebrate;
2020-06-22 15:03:50 +02:00
CREATE USER 'cerebrate'@'localhost' IDENTIFIED BY 'YOUR_PASSWORD';
2020-06-22 14:50:56 +02:00
GRANT USAGE ON *.* to cerebrate@localhost;
GRANT ALL PRIVILEGES ON cerebrate.* to cerebrate@localhost;
2020-06-22 15:03:50 +02:00
FLUSH PRIVILEGES;
2020-06-22 14:50:56 +02:00
```
2020-06-25 18:29:24 +02:00
```
sudo mysql -e "CREATE DATABASE cerebrate;"
2020-06-25 18:53:52 +02:00
sudo mysql -e "CREATE USER 'cerebrate'@'localhost' IDENTIFIED BY 'YOuR_Pa$$WORD!';"
2020-06-25 18:29:24 +02:00
sudo mysql -e "GRANT USAGE ON *.* to cerebrate@localhost;"
sudo mysql -e "GRANT ALL PRIVILEGES ON cerebrate.* to cerebrate@localhost;"
sudo mysql -e "FLUSH PRIVILEGES;"
```
Load the default table structure into the database
2020-06-22 14:50:56 +02:00
2020-06-22 14:51:35 +02:00
```
2020-06-25 18:29:24 +02:00
sudo mysql -u cerebrate -p cerebrate < /var/www/cerebrate/INSTALL/mysql.sql
2020-06-22 14:51:35 +02:00
```
2020-06-22 14:50:56 +02:00
create your local configuration and set the db credentials
2020-06-22 14:50:56 +02:00
2020-06-22 14:51:35 +02:00
```
2020-06-25 18:29:24 +02:00
sudo -u www-data cp -a /var/www/cerebrate/config/app_local.example.php /var/www/cerebrate/config/app_local.php
sudo -u www-data vim /var/www/cerebrate/config/app_local.php
2020-06-22 14:51:35 +02:00
```
2020-06-22 14:50:56 +02:00
2020-06-25 18:29:24 +02:00
Modify the Datasource -> default array's username, password, database fields
2020-06-22 14:50:56 +02:00
2020-06-25 18:29:24 +02:00
Create an apache config file for cerebrate / ssh key and point the document root to /var/www/cerebrate/webroot/index.php and you're good to go.
2020-06-25 18:53:52 +02:00
mod_rewrite needs to be enabled:
```
sudo a2enmod rewrite
2020-06-22 14:51:35 +02:00
```
2020-06-22 14:50:56 +02:00
Simply modify the Datasource -> default array's username, password, database fields
2020-06-29 12:08:40 +02:00
This would be, when following the steps above:
2020-06-22 14:50:56 +02:00
2020-06-29 12:08:40 +02:00
```
'Datasources' => [
'default' => [
'host' => 'localhost',
'username' => 'cerebrate',
'password' => 'YOUR_PASSWORD',
'database' => 'cerebrate',
```
Create an apache config file for cerebrate / ssh key and point the document root to /var/www/cerebrate/webroot/index.php and you're good to go
2020-06-22 14:50:56 +02:00
2020-06-25 18:29:24 +02:00
For development installs the following can be done:
```
# This configuration is purely meant for local installations for development / testing
# Using HTTP on an unhardened apache is by no means meant to be used in any production environment
sudo cp /var/www/cerebrate/INSTALL/cerebrate_dev.conf /etc/apache2/sites-available/
sudo ln -s /etc/apache2/sites-available/cerebrate_dev.conf /etc/apache2/sites-enabled/
sudo service apache2 restart
```
Now you can point your browser to: http://localhost:8000
2020-06-22 14:50:56 +02:00
To log in use the default credentials below:
2020-06-25 18:29:24 +02:00
Username: admin
Password: Password1234