$ sudo /opt/lampp/lampp start
[sudo] password for admin: 
Starting XAMPP for Linux 1.8.2-0...
XAMPP: Starting Apache...fail.
XAMPP:  Another web server with SSL is already running.
XAMPP: Starting MySQL...ok.
XAMPP: Starting ProFTPD...ok.



위와 같이 나왔다. 아래와 같이 점유하고 있는 프로세스가 무엇인지 찾는다.

그리고 kill 명령어를 이용하여 프로세스를 중지한다.



Old 08-01-2013, 04:27 AM  #5
bathory
Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 10,643

Rep: Reputation: 1255Reputation: 1255Reputation: 1255Reputation: 1255Reputation: 1255Reputation: 1255Reputation: 1255Reputation: 1255Reputation: 1255
Quote:
XAMPP: Another web server with SSL is already running.
You can run
Code:
netstat -tanpl|grep 443
to see what is listening on the SSL port
 
1 members found this post helpful.
Old 08-01-2013, 01:09 PM  #6
Draper
LQ Newbie
 
Registered: Jul 2013
Distribution: Ubuntu
Posts: 13

Original Poster 
Rep: Reputation: Disabled
ps -A | grep httpd shows that httpd isn't running.

But..
Code:
:~# netstat -tanpl|grep 443
tcp        0      0 0.0.0.0:443             0.0.0.0:*               LISTEN      3515/vmware-hostd
tcp        0      0 10.x.1.130:43484       74.125.239.113:443      ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:48163       23.54.241.224:443       ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:52182       74.125.239.32:443       ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:60668       74.125.239.130:443      ESTABLISHED 3893/chrome     
tcp6       0      0 :::443                  :::*                    LISTEN      3515/vmware-hostd
:~# kill 3515
:~# netstat -tanpl|grep 443
tcp        0      0 10.x.1.130:35283       74.125.239.144:443      ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:56126       72.21.91.121:443        ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:56125       72.21.91.121:443        ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:42565       74.125.239.136:443      ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:56124       72.21.91.121:443        ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:52182       74.125.239.32:443       ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:56130       72.21.91.121:443        ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:50738       74.125.239.98:443       ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:56123       72.21.91.121:443        ESTABLISHED 3893/chrome     
tcp        0      0 10.x.1.130:56129       72.21.91.121:443        ESTABLISHED 3893/chrome     
:~# /opt/lampp/lampp start
Starting XAMPP for Linux 1.8.2-0...
XAMPP: Starting Apache...ok.
XAMPP: Starting MySQL...ok.
XAMPP: Starting ProFTPD...ok.
Thank you all very much. I appreciate the help.


+ Recent posts