Various minor improvements in the installation instructions.

ldap
Cédric Bonhomme 2018-09-06 07:58:36 +02:00
parent 0f4fcc20dd
commit 2f49fc354b
No known key found for this signature in database
GPG Key ID: A1CB94DE57B7A70D
1 changed files with 6 additions and 12 deletions

View File

@ -14,7 +14,7 @@ project using this one.
Some might already be installed. Some might already be installed.
## Install MariaDB (a MySQL fork/alternative) ## Install MariaDB
sudo apt-get install mariadb-client mariadb-server sudo apt-get install mariadb-client mariadb-server
@ -120,34 +120,28 @@ There are 2 parts:
## Databases ## Databases
### Create 2 databases
CREATE DATABASE monarc_cli DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
CREATE DATABASE monarc_common DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
### Change SQL Mode in my.cnf ### Change SQL Mode in my.cnf
[mysqld] [mysqld]
sql-mode = MYSQL40 sql-mode = MYSQL40
### Initializes the databases ### Create 2 databases
There are 2 databases: CREATE DATABASE monarc_cli DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
CREATE DATABASE monarc_common DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
* monarc_common contains models and data created by CASES; * monarc_common contains models and data created by CASES;
* monarc_cli contains all client risk analyses. Each analysis is based on CASES * monarc_cli contains all client risk analyses. Each analysis is based on CASES
model of monarc_common. model of monarc_common.
Populate the monarc_common database: ### Initializes the database
mysql -u user monarc_common < db-bootstrap/monarc_structure.sql mysql -u user monarc_common < db-bootstrap/monarc_structure.sql
mysql -u user monarc_common < db-bootstrap/monarc_data.sql mysql -u user monarc_common < db-bootstrap/monarc_data.sql
### Database connection ### Database connection
Create the configuration file:
Create configuration file:
sudo cp ./config/autoload/local.php.dist ./config/autoload/local.php sudo cp ./config/autoload/local.php.dist ./config/autoload/local.php