Changes between Version 2 and Version 3 of Csle2022/Agenda/databaseandweb


Ignore:
Timestamp:
Oct 20, 2022, 9:12:34 AM (2 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/databaseandweb

    v2 v3  
    2424[[Image(https://ws.learn.ac.lk/raw-attachment/wiki/Csle2022/Agenda/databaseandweb/web1.png)]]
    2525
     26
     27= PHP Installation =
     28
     29Then install PHP and related modules for apache server and MariaDB.
     30
     31{{{
     32sudo apt install php libapache2-mod-php php-mysql
     33}}}
     34
     35To test that your system is properly configured for PHP, create a PHP script called info.php. Here we will create at the root directory.
     36
     37{{{
     38sudo nano /var/www/html/info.php
     39}}}
     40
     41Insert the following command to show the php information.
     42
     43{{{
     44<?php
     45phpinfo();
     46?>
     47}}}
     48
    2649= MariaDB DBMS Installation =
    2750
     
    4871[[Image(https://ws.learn.ac.lk/raw-attachment/wiki/Csle2022/Agenda/databaseandweb/web2.png)]]
    4972
    50 You can find more information on these option from [https://docs.perfsonar.net/install_options.html this page].
     73To login MariaDB enter below command and use the password entered above.
     74
     75{{{
     76sudo mysql -u root -p
     77}}}
     78
     79[[Image(https://ws.learn.ac.lk/raw-attachment/wiki/Csle2022/Agenda/databaseandweb/web3.png)]]
     80
     81To exit type,
     82
     83{{{
     84exit
     85}}}
     86
     87= Apache Virtual Hosting =
     88