Changes between Initial Version and Version 1 of Csle2022/Agenda/databaseandweb


Ignore:
Timestamp:
Oct 20, 2022, 8:28:53 AM (2 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/databaseandweb

    v1 v1  
     1= Apache Web Server Installation =
     2
     3=== perfSONAR Installation Options ===
     4
     5First update the Ubuntu package repository.
     6
     7{{{
     8sudo apt update
     9}}}
     10
     11Then install the web server.
     12{{{
     13sudo apt install apache2
     14}}}
     15
     16Check the apache version
     17
     18{{{
     19apache2 -v
     20}}}
     21
     22Now visit your server through the IP address. http://server_ip_address.
     23
     24[[Image(https://ws.learn.ac.lk/raw-attachment/wiki/Nmm2022/Agenda/perfSONARsetup/ps1.png)]]
     25
     26= MariaDB DBMS Installation =
     27
     28Here we will choose MariaDB DBMS as our database application. Install this using below command.
     29
     30{{{
     31sudo apt install mariadb-server mariadb-client
     32}}}
     33
     34Once installed check the version,
     35
     36{{{
     37mysql --version
     38}}}
     39
     40For mysql there is a script that strengthen the mariaDB server security. It is a series of yes no questions which removes initial weaknesses of the server.
     41
     42To execute the scripts,
     43
     44{{{
     45sudo mysql_secure_installation
     46}}}
     47
     48[[Image(https://ws.learn.ac.lk/raw-attachment/wiki/Nmm2022/Agenda/perfSONARsetup/ps1.png)]]
     49
     50You can find more information on these option from [https://docs.perfsonar.net/install_options.html this page].