Results 1 to 3 of 3
I have a problem running Xampp server.
harish@harish-laptop:~$ sudo /opt/lampp/lampp start
Starting XAMPP for Linux 1.7.1...
XAMPP: Another web server daemon is already running.
XAMPP: Starting MySQL...
XAMPP: Starting ProFTPD...
...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-24-2009 #1Linux Newbie
- Join Date
- Nov 2005
- Posts
- 176
Problem with Xampp server
I have a problem running Xampp server.
harish@harish-laptop:~$ sudo /opt/lampp/lampp start
Starting XAMPP for Linux 1.7.1...
XAMPP: Another web server daemon is already running.
XAMPP: Starting MySQL...
XAMPP: Starting ProFTPD...
XAMPP for Linux started.
I dont understand why another webserver is running. I didnt install any apache.
Please tell me to check whether any server is running.
- 05-25-2009 #2
Well, you could try to display what processes are running. At a terminal command line:
or as most servers "listen" to ports then you could run:Code:sudo ps -A
The results here may shed some light on what server may be operational.Code:sudo netstat -tunap | grep LISTEN
Also, your output shows "XAMPP for Linux started.".
Does it not perform as expected?Ubuntu 11.04 on IBM ThinkCentre
Fedora, VMware Player (windows xp,Knoppix 6.5) on Lenovo Laptop
GRUB Fedora / Windows 7, VMware Player (Windows 2008 server) on NCIX quad core PC.
- 05-25-2009 #3Linux Newbie
- Join Date
- Nov 2005
- Posts
- 176
This is the output of the second above command
harish@harish-laptop:~$ sudo netstat -tunap | grep LISTEN
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 3141/cupsd
tcp6 0 0 :::80 :::* LISTEN 3317/apache2
tcp6 0 0 ::1:631 :::* LISTEN 3141/cupsd
I searched on google to stop the apache server
This is the command
sudo /etc/init.d/apache2 stop
Which is useful for me to stop the already running apache server.
Now i am able to run my xampp server. Thanks for the help.. !!


Reply With Quote
