To uninstall xampp completely, you need to type sudo -i cd /opt/lampp ./uninstall and rm -r /opt/lampp commands on the ubuntu terminal window and hit enter. How to Uninstall xampp in Ubuntu using Terminal Here are some solutions to completely
Category: Apache
How to Install XAMPP on Ubuntu 22.04 using Terminal
To install xampp, it needs to be downloaded from the official website, and type xampp installer command “sudo chmod +x xampp-linux-*-installer” on terminal, After running the installer script, the setup installer wizard will start, with the help of which it
Read More How to Install XAMPP on Ubuntu 22.04 using Terminal
How to Change MySQL Root User Password Ubuntu 22.04|20.04
If you want to change the password of the root user of MySQL in your Ubuntu system, you have to type 3 commands such as sudo mysql, use mysql, AND UPDATE USER SET authentication_string = password(“new_password”) WHERE user = “root”,
Read More How to Change MySQL Root User Password Ubuntu 22.04|20.04
How to Change the Root Password on Ubuntu 22.04
To change the root user password on Ubuntu, you need to open the terminal and use the sudo -i command to switch to the root user, after that, type the sudo passwd root command and press Enter, this will open
How to Change Password on Ubuntu 22.04 using Terminal
If you are using an Ubuntu 22.04 or 20.04 system, and you want to change the user’s password by username, the root user’s password, or Ubuntu own password, then for this you can use the sudo passwd, sudo root passed,
Read More How to Change Password on Ubuntu 22.04 using Terminal
Failed to Start, Stop, Restart The Apache HTTP Server Ubuntu
If you are using apache 2 http server services like start, stop, reload, restart, and status, and you are getting some error like a job for apache2.service failed because the control process exited with an error code, see “systemctl status
Read More Failed to Start, Stop, Restart The Apache HTTP Server Ubuntu
Failed to start, stop, restart apache2.service unit not found
You have apache2 installed in your system, but when you type apache2 service start, stop, restart and status commands on the terminal window you get some errors like failed to start, stop, restart the Apache http server, apache2.service: failed with
Read More Failed to start, stop, restart apache2.service unit not found
How to Disable ufw Firewall on Ubuntu 22.04
If firewall status is activated in your Ubuntu 22.04 system, you just type sudo ufw disable command in the terminal and hit enter, and UFW firewall will be disabled in your system. In this tutorial, we will show you how
UFW Status Inactive Ubuntu 22.04
If you are working in Apache 2 Ubuntu system and if you run ufw status command on terminal you see “ufw status inactive”. And, You can enable or activate the issue using the sudo ufw enable command on a terminal
How to Install Git on Ubuntu 22.04
To install and configure Git Bash on your Ubuntu 22.04 system, you can use two simple ways, first from the official repository and second using the source code. Here are two approaches to installing git on Ubuntu 22.04 system: Approach