Changes between Version 2 and Version 3 of Csle2022/Agenda/databaseandweb
- Timestamp:
- Oct 20, 2022, 9:12:34 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Csle2022/Agenda/databaseandweb
v2 v3 24 24 [[Image(https://ws.learn.ac.lk/raw-attachment/wiki/Csle2022/Agenda/databaseandweb/web1.png)]] 25 25 26 27 = PHP Installation = 28 29 Then install PHP and related modules for apache server and MariaDB. 30 31 {{{ 32 sudo apt install php libapache2-mod-php php-mysql 33 }}} 34 35 To 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 {{{ 38 sudo nano /var/www/html/info.php 39 }}} 40 41 Insert the following command to show the php information. 42 43 {{{ 44 <?php 45 phpinfo(); 46 ?> 47 }}} 48 26 49 = MariaDB DBMS Installation = 27 50 … … 48 71 [[Image(https://ws.learn.ac.lk/raw-attachment/wiki/Csle2022/Agenda/databaseandweb/web2.png)]] 49 72 50 You can find more information on these option from [https://docs.perfsonar.net/install_options.html this page]. 73 To login MariaDB enter below command and use the password entered above. 74 75 {{{ 76 sudo mysql -u root -p 77 }}} 78 79 [[Image(https://ws.learn.ac.lk/raw-attachment/wiki/Csle2022/Agenda/databaseandweb/web3.png)]] 80 81 To exit type, 82 83 {{{ 84 exit 85 }}} 86 87 = Apache Virtual Hosting = 88