• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

How to install xampp 7.2.4 on ubuntu 18.04

{{postValue.id}}

To install Xampp 7.2.4 on Ubuntu 18.04

XAMPP is a free and open source cross-platform web server solution stack which contains PHP, Apache web server, MySQL database, and Perl. It is simple and lightweight Apache distribution hence it is extremely easy for developers to create a local web server for testing and deployment purposes. Apart from that, Xampp is packed with several powerful features and some of them are listed below.

Features

&bull Regularly updated to the latest versions of Apache, MariaDB, PHP, and Perl.
&bull Supports other modules like OpenSSL, phpMyAdmin, MediaWiki, Joomla, WordPress etc.,
&bull Tests the website designers and programmers work without Internet.
&bull Allows creation and manipulation of databases in MariaDB and SQLite.

It is so simple to install Xampp 7.2.4 on Ubuntu 18.04 and this tutorial covers the ground on the same process

Installing XAMPP

To start the installation process, download the XAMPP package by executing the wget command.

root@linuxhelp:~# wget https://www.apachefriends.org/xampp-files/7.2.4/xampp-linux-x64-7.2.4-0-installer.run
--2018-04-14 04:22:56--  https://www.apachefriends.org/xampp-files/7.2.4/xampp-linux-x64-7.2.4-0-installer.run
Resolving www.apachefriends.org (www.apachefriends.org)... 107.22.247.161
Connecting to www.apachefriends.org (www.apachefriends.org)|107.22.247.161|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://downloadsapachefriends.global.ssl.fastly.net/xampp-files/7.2.4/xampp-linux-x64-7.2.4-0-installer.run?from_af=true [following]
--2018-04-14 04:22:58--  https://downloadsapachefriends.global.ssl.fastly.net/xampp-files/7.2.4/xampp-linux-x64-7.2.4-0-installer.run?from_af=true
Resolving downloadsapachefriends.global.ssl.fastly.net (downloadsapachefriends.global.ssl.fastly.net)... 151.101.1.194, 151.101.65.194, 151.101.129.194, ...
Connecting to downloadsapachefriends.global.ssl.fastly.net (downloadsapachefriends.global.ssl.fastly.net)|151.101.1.194|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 141741238 (135M) [binary/octet-stream]
Saving to: ‘ xampp-linux-x64-7.2.4-0-installer.run’ 

xampp-linux-x64-7.2.4-0-instal 100%[====================================================> ] 135.17M  1.12MB/s    in 2m 7s   

2018-04-14 04:25:05 (1.07 MB/s) - ‘ xampp-linux-x64-7.2.4-0-installer.run’  saved [141741238/141741238]

The package is downloaded into the target system. Give the execution permission for downloaded xampp file by running the following command.

root@linuxhelp:~# chmod +x xampp-linux-x64-7.2.4-0-installer.run

The permission has been granted to the downloaded package. Now start and execute XAMPP installation process by executing the following command.

root@linuxhelp:~# ./xampp-linux-x64-7.2.4-0-installer.run

After that, the xampp installer wizard will appear on the screen and start the installation by clicking on next option.
installer_wizard

Here you have to choose the required components you want to install and click next when you are ready to continue.
components

At next wizard, you have to verify the installation path of your xampp application and click on next
installation_path

The setup is ready to install on the computer now, click next to initiate the installation.
ready_to_install


next_option

After the successful installation, the wizard will display the completion status. Click finish and application will be launched. if you don' t want to launch xampp after installation, untick the launch xampp tick box and click on finish.
finish

the xampp application is launched now which will look similar to the image below
launch

To manage services goto manage servers tab, where you will see the status of the servers running and servers available on xampp.
manage_service

To start a server, let' s say we want to start the MySQL database choose the server and click start.
choose_service
service_start

MySQL Database is up and running and also you can View the log by navigating to the application log tab.
log
with this, the method to install xampp 7.2.4 on Ubuntu 18.04 comes to an end

Tags:
isaac
Author: 

Comments ( 8 )

linuxhelp
Hi ! Maidislam The problem you are having is almost certainly a problem with the software package you are installing. It could be that it got corrupted during download - in which case you should download it again
maidislam
HI @issac When I trying to install xampp in ubuntu 18.04 I get error after this command: ./xampp-linux-x64-7.2.4-0-installer.run.
Error message is :sudo ./xampp-linux-x64-7.2.4-0-installer.run
[sudo] password for droidmaid:
libpng warning: Application jmp_buf size changed
Segmentation fault

Please let me know how can I resolved the issue and install xampp in ubuntu 18.04.
kutmanzairov
there has been an error. this installer requires root privileges. please become superuser before executing the installer
mehulrana
I installed xampp server as mentioned above.. but I don't know how to reopen again that application for managing the server. I tried with the ./xampp-linux-x64-7.2.4-0-installer.run but it will again go for the installation which i already installed before.. can you please help me to find how to reopen or relaunch that application. Thanks in advance
Gokul
can you Please verify the application log and let me know the reasons of Apache Fail.
view More
Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

Where are the main XAMPP configuration files?

A

The main Xammp config files are
Apache configuration file:
/opt/lampp/etc/httpd.conf, /opt/lampp/etc/extra/httpd-xampp.conf
PHP configuration file: /opt/lampp/etc/php.ini
MySQL configuration file: /opt/lampp/etc/my.cnf
ProF

Q

What is Xampp & its uses?

A

XAMPP is a free and open source cross-platform web server solution stack which contains PHP, Apache web server, MySQL database, and Perl. It is simple and lightweight Apache distribution hence it is extremely easy for developers to create a local web server for testing and deployment purposes.

Q

What are the features of xampp 7.2.4 on ubuntu 18.04?

A

The features of xampp 7.2.4 on ubuntu 18.04 are

Regularly updated to the latest versions of Apache, MariaDB, PHP, and Perl.
Supports other modules like OpenSSL, phpMyAdmin, MediaWiki, Joomla, WordPress etc.,
Tests the website designers and programmers work without Internet.

Q

How to assign a execute permission for the Xampp installer ?

A

To assign a execute permission for the Xampp installer use the following command

#chmod +x xampp-linux-x64-7.2.4-0-installer.run

Q

Where i can check the logs of Xampp?

A

You can check the logs at application log tab on Xammp

Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Gibbson ?
How do i run both nginx and apache in same instance on centos

Hi...,

my server is based centos operating system and my webserver is already running on Apache.... i need to run both apache and nginx on same instance ... please help me to implement this concept...

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.