2018-10-08 10:07:37 +02:00
|
|
|
Installation on Ubuntu 18.04
|
2018-10-02 10:14:48 +02:00
|
|
|
============================
|
|
|
|
|
|
|
|
# 1. Install LAMP & dependencies
|
|
|
|
|
2019-08-22 11:32:56 +02:00
|
|
|
## 1.1. Install system dependencies
|
2018-10-02 10:14:48 +02:00
|
|
|
|
2019-08-22 10:25:46 +02:00
|
|
|
$ sudo apt-get install zip unzip git gettext curl gsfonts
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
Some might already be installed.
|
|
|
|
|
2019-08-22 11:32:56 +02:00
|
|
|
## 1.2. Install MariaDB
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
$ sudo apt-get install mariadb-client mariadb-server
|
|
|
|
|
2019-08-22 11:28:06 +02:00
|
|
|
### Secure the MariaDB installation
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
$ sudo mysql_secure_installation
|
|
|
|
|
|
|
|
Especially by setting a strong root password.
|
|
|
|
|
2019-08-22 11:32:56 +02:00
|
|
|
## 1.3. Install Apache2
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
$ sudo apt-get install apache2
|
|
|
|
|
2019-08-22 11:28:06 +02:00
|
|
|
### Enable modules, settings, and default of SSL in Apache
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
$ sudo a2dismod status
|
|
|
|
$ sudo a2enmod ssl
|
|
|
|
$ sudo a2enmod rewrite
|
|
|
|
$ sudo a2enmod headers
|
|
|
|
|
2019-08-22 11:28:06 +02:00
|
|
|
### Apache Virtual Host
|
2018-10-02 10:14:48 +02:00
|
|
|
|
2019-08-22 11:42:04 +02:00
|
|
|
<VirtualHost _default_:80>
|
|
|
|
ServerAdmin admin@localhost.lu
|
|
|
|
ServerName monarc.local
|
2018-10-02 10:14:48 +02:00
|
|
|
DocumentRoot /var/lib/monarc/fo/public
|
|
|
|
|
|
|
|
<Directory /var/lib/monarc/fo/public>
|
|
|
|
DirectoryIndex index.php
|
|
|
|
AllowOverride All
|
|
|
|
Require all granted
|
|
|
|
</Directory>
|
|
|
|
|
2019-04-04 13:54:23 +02:00
|
|
|
<IfModule mod_headers.c>
|
|
|
|
Header always set X-Content-Type-Options nosniff
|
|
|
|
Header always set X-XSS-Protection "1; mode=block"
|
|
|
|
Header always set X-Robots-Tag none
|
|
|
|
Header always set X-Frame-Options SAMEORIGIN
|
|
|
|
</IfModule>
|
|
|
|
|
2019-10-30 10:53:05 +01:00
|
|
|
SetEnv APP_ENV "development"
|
2018-10-02 10:14:48 +02:00
|
|
|
</VirtualHost>
|
|
|
|
|
|
|
|
|
2019-08-22 11:32:56 +02:00
|
|
|
## 1.4. Install PHP and dependencies
|
2018-10-02 10:14:48 +02:00
|
|
|
|
2019-08-22 10:25:46 +02:00
|
|
|
$ sudo apt-get install php apache2 libapache2-mod-php php-curl php-gd php-mysql php-pear php-apcu php-xml php-mbstring php-intl php-imagick php-zip composer
|
2018-10-02 10:14:48 +02:00
|
|
|
|
2019-08-22 11:32:56 +02:00
|
|
|
## 1.5 Apply all changes
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
$ sudo systemctl restart apache2.service
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 2. Installation of MONARC
|
|
|
|
|
2019-08-22 11:32:56 +02:00
|
|
|
## 2.1. MONARC source code
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
Clone the repository and invoke `composer` using the shipped `composer.phar`:
|
|
|
|
|
2019-08-22 10:25:46 +02:00
|
|
|
$ mkdir -p /var/lib/monarc/fo
|
|
|
|
$ git clone https://github.com/monarc-project/MonarcAppFO.git /var/lib/monarc/fo
|
|
|
|
$ cd /var/lib/monarc/fo
|
|
|
|
$ mkdir data
|
2018-10-02 10:14:48 +02:00
|
|
|
$ chmod -R g+w data
|
|
|
|
$ composer install -o
|
|
|
|
|
|
|
|
|
2019-08-22 11:28:06 +02:00
|
|
|
### Back-end
|
2018-10-02 10:14:48 +02:00
|
|
|
|
2019-09-12 14:38:30 +02:00
|
|
|
The back-end is using the Zend Framework 3.
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
Create two symbolic links:
|
|
|
|
|
2019-10-30 10:53:05 +01:00
|
|
|
$ cd module/Monarc
|
|
|
|
$ ln -s ./../../vendor/monarc/core Core
|
|
|
|
$ ln -s ./../../vendor/monarc/frontoffice FrontOffice
|
|
|
|
$ cd ../..
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
There are 2 parts:
|
|
|
|
|
2019-09-12 14:38:30 +02:00
|
|
|
* Monarc\FrontOffice is only for MONARC;
|
|
|
|
* Monarc\Core is common to MONARC and to the back office of MONARC.
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
|
2019-08-22 11:28:06 +02:00
|
|
|
### Front-end
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
The frontend is an AngularJS application.
|
|
|
|
|
|
|
|
$ mkdir node_modules
|
|
|
|
$ cd node_modules
|
|
|
|
$ git clone https://github.com/monarc-project/ng-client.git ng_client
|
|
|
|
$ git clone https://github.com/monarc-project/ng-anr.git ng_anr
|
|
|
|
|
|
|
|
There are 2 parts:
|
|
|
|
|
2019-08-22 11:28:06 +02:00
|
|
|
* one only for MONARC: ng_client;
|
|
|
|
* one common for MONARC and the back office of MONARC: ng_anr.
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
|
2019-08-22 11:32:56 +02:00
|
|
|
## 2.2. Databases
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
### Create 2 databases
|
|
|
|
|
|
|
|
In your MariaDB interpreter:
|
|
|
|
|
2019-08-22 11:38:32 +02:00
|
|
|
MariaDB [(none)]> CREATE DATABASE monarc_cli DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
|
|
|
|
MariaDB [(none)]> CREATE DATABASE monarc_common DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
* monarc_common contains models and data created by CASES;
|
|
|
|
* monarc_cli contains all client risk analyses. Each analysis is based on CASES
|
|
|
|
model of monarc_common.
|
|
|
|
|
|
|
|
### Initializes the database
|
|
|
|
|
|
|
|
$ mysql -u user monarc_common < db-bootstrap/monarc_structure.sql
|
|
|
|
$ mysql -u user monarc_common < db-bootstrap/monarc_data.sql
|
|
|
|
|
|
|
|
### Database connection
|
|
|
|
|
|
|
|
Create the configuration file:
|
|
|
|
|
|
|
|
$ sudo cp ./config/autoload/local.php.dist ./config/autoload/local.php
|
|
|
|
|
|
|
|
And configure the database connection:
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'doctrine' => array(
|
|
|
|
'connection' => array(
|
|
|
|
'orm_default' => array(
|
|
|
|
'params' => array(
|
2019-08-22 12:50:05 +02:00
|
|
|
'host' => 'localhost',
|
|
|
|
'user' => 'sqlmonarcuser',
|
|
|
|
'password' => '<password>',
|
2018-10-02 10:14:48 +02:00
|
|
|
'dbname' => 'monarc_common',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'orm_cli' => array(
|
|
|
|
'params' => array(
|
2019-08-22 12:50:05 +02:00
|
|
|
'host' => 'localhost',
|
|
|
|
'user' => 'sqlmonarcuser',
|
|
|
|
'password' => '<password>',
|
2018-10-02 10:14:48 +02:00
|
|
|
'dbname' => 'monarc_cli',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-08-22 11:32:56 +02:00
|
|
|
# 3. Update MONARC
|
2018-10-02 10:14:48 +02:00
|
|
|
|
2019-08-22 11:38:32 +02:00
|
|
|
Install Grunt:
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
$ sudo apt-get -y install npm
|
|
|
|
$ npm install -g grunt-cli
|
|
|
|
|
2019-08-22 11:38:32 +02:00
|
|
|
then update MONARC:
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
$ ./scripts/update-all.sh
|
|
|
|
|
|
|
|
|
2019-08-22 11:32:56 +02:00
|
|
|
# 4. Create initial user
|
2018-10-02 10:14:48 +02:00
|
|
|
|
2019-09-12 14:38:30 +02:00
|
|
|
$ php ./vendor/robmorgan/phinx/bin/phinx seed:run -c ./module/Monarc/FrontOffice/migrations/phinx.php
|
2018-10-02 10:14:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
The username is *admin@admin.test* and the password is *admin*.
|