LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-04-2013, 04:09 AM   #1
snehal89
LQ Newbie
 
Registered: Nov 2012
Posts: 27

Rep: Reputation: Disabled
xampp not starting


Hello everyone,

i installed xampp on linux machine.i followed this link http://www.apachefriends.org/en/xampp-linux.html
it installed successfully.
But when i start xampp by /opt/lampp/lampp start
it is giving output like

Starting XAMPP for Linux 1.8.1...
XAMPP: Another web server daemon is already running.
XAMPP: Another MySQL daemon is already running.
XAMPP: Another FTP daemon is already running.
XAMPP for Linux...

please can any one tell me what is the problem.

thank you.
 
Old 01-04-2013, 04:51 AM   #2
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hello,

Well, it's just as indicated in the message you get back:
Code:
XAMPP: Another web server daemon is already running.
XAMPP: Another MySQL daemon is already running.
XAMPP: Another FTP daemon is already running.
Check, for example with netstat, to see what is running:
Code:
netstat -tunalp | egrep  ":80|:3306|:21"
Kind regards,

Eric
 
Old 01-04-2013, 05:06 AM   #3
snehal89
LQ Newbie
 
Registered: Nov 2012
Posts: 27

Original Poster
Rep: Reputation: Disabled
Hi,

i am using 90 port because 80 is used for other application.

netstat -tunalp | egrep ":90|:3306|:21"

output is as follow
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LIST EN 27838/mysqld
tcp 0 0 :::21 :::* LIST EN 27878/proftpd: (acc
tcp 0 0 :::90 :::* LIST EN 17745/httpd
udp 0 0 :::21879 :::* 15330/ora_lgwr_SA


thank you
 
Old 01-04-2013, 05:25 AM   #4
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi,

If you try to stop the lampp services like this:
Code:
/opt/lampp/lampp stop
and then run the netstat command again, are the processes still there? If they are then you'll need to either stop and disable/remove them or reconfigure one or the other to use different ports.

Kind regards,

Eric
 
Old 01-04-2013, 05:50 AM   #5
snehal89
LQ Newbie
 
Registered: Nov 2012
Posts: 27

Original Poster
Rep: Reputation: Disabled
Hi Eric,

when i stop same think is coming.and i have only 90 port to install.is there other service running on that port.if yes then how to remove this

with regards,
snehal
 
Old 01-04-2013, 05:58 AM   #6
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi,

OK, so the problem you have is that besideds having XAMPP installed you're already running an Apache, MySQL and FTP process which uses those ports. If you prefer to use the XAMPP processes, then you should stop and disable the other ones.
Code:
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LIST EN 27838/mysqld
tcp 0 0 :::21 :::* LIST EN 27878/proftpd: (acc
tcp 0 0 :::90 :::* LIST EN 17745/httpd
Did you install those processes on that box before installing XAMPP on it? If not, then take it up with whoever did if you're not the admin of this server.

Kind regards,

Eric
 
Old 01-04-2013, 06:04 AM   #7
snehal89
LQ Newbie
 
Registered: Nov 2012
Posts: 27

Original Poster
Rep: Reputation: Disabled
Hi,

ok. Then how to disable that.so that it will use for xampp.please give the detail.

thank you.
 
Old 01-04-2013, 06:53 AM   #8
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi,

What Linux distro and version are you running on that machine so that correct commands can be provided?

Kind regards,

Eric
 
Old 01-06-2013, 11:47 PM   #9
snehal89
LQ Newbie
 
Registered: Nov 2012
Posts: 27

Original Poster
Rep: Reputation: Disabled
Hi Eric,

The distribution & kernel version of machine is as follows

Distributor ID: EnterpriseEnterpriseServer
Description: Enterprise Linux Enterprise Linux Server release 5.4 (Carthage)
Release: 5.4

it is ec2 machine.

Thank you.
 
Old 01-07-2013, 01:39 AM   #10
trijit
Member
 
Registered: Sep 2010
Location: Kolkata
Distribution: Ubuntu
Posts: 35

Rep: Reputation: 3
Quote:
Originally Posted by snehal89 View Post
Hello everyone,

i installed xampp on linux machine.i followed this link http://www.apachefriends.org/en/xampp-linux.html
it installed successfully.
But when i start xampp by /opt/lampp/lampp start
it is giving output like

Starting XAMPP for Linux 1.8.1...
XAMPP: Another web server daemon is already running.
XAMPP: Another MySQL daemon is already running.
XAMPP: Another FTP daemon is already running.
XAMPP for Linux...

please can any one tell me what is the problem.

thank you.
You can use this if it helps:
http://daretodie.wordpress.com/2012/...ready-running/
 
Old 01-08-2013, 04:15 AM   #11
snehal89
LQ Newbie
 
Registered: Nov 2012
Posts: 27

Original Poster
Rep: Reputation: Disabled
Thank you.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
XAMPP 1.7.7 - XAMPP: Couldn't start MySQL sonic656 Linux - Software 2 10-09-2011 12:43 PM
When starting Xampp I now get -Warning bogus unix line ozstar Linux - Newbie 1 05-03-2010 06:19 PM
Xampp kscallions Linux - Newbie 1 02-17-2008 09:14 PM
Starting xampp during bootup on Suse 10.1 dynax Linux - Newbie 1 05-22-2006 03:33 PM
xampp charnel Programming 0 07-15-2005 07:14 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:56 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration