10 Şubat 2019 Pazar

Raspberry apache php mysql kurulumu


Apache: 


Kurulum
sudo apt-get install apache2 -y

Dosya listesi
cd /var/www/html
ls -al

Server restart
sudo service apache2 restart

Php: 

Kurulum
sudo apt-get install php libapache2-mod-php -y

Apache default index sil
sudo rm index.html

Index.php yarat
sudo leafpad index.php

Mysql:

Kurulum
sudo apt-get install mysql-server php-mysql -y

Server restart
sudo service apache2 restart