Posts

Showing posts from March, 2022

Installation of WAMP or LAMP

 Installation of WAMP is easy one click solution. Just download the  https://www.wampserver.com/en/ Installation of LAMP (Linux, Apache, MySQL, PHP) Step 1: Install Apache Apache is a free open source software which runs over 50% of the world’s web servers. To install apache, open terminal and type in these commands: sudo apt-get update sudo apt-get install apache2 1- https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu Removing Mysql 1-    dpkg -S `which mysql`  Above command shows the path of mysql command. Generally all command resides at /usr/bin/ bin is also known as binary files binary files. 1- sudo apt-get remove --purge mysql* 2- sudo apt-get autoremove 2- sudo apt-get autoclean References: https://askubuntu.com/questions/446203/is-mysql-still-running-after-uninstall-it#:~:text=Yes%2C%20it%20is%20still%20running.