I installed apache2.2 myself, but an error occurred after restarting apache. Please help! Thanks!
迷茫
迷茫 2017-05-16 17:01:41
0
2
558

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(2)
巴扎黑

The port is occupied. Check if there is an apache process running in the task manager. The apache process seems to be called httpd.

If there is, kill it and restart apache. If it is not entered in the windows command line, netstat -ano | findstr "83"check to see if there is any process listening to port 83. The following example is an example of my local port 8080. My tomcat is on 8080 Port:

C:\Users\Guogang Fan>netstat -ano | findstr "8080"
  TCP    0.0.0.0:8080           0.0.0.0:0              LISTENING       20276
  TCP    [::]:8080              [::]:0                 LISTENING       20276
  

If yes, the last column is the process ID,

C:\Users\Guogang Fan>tasklist /FI "PID eq 20276"

映像名称                       PID 会话名              会话#       内存使用
========================= ======== ================ =========== ============
javaw.exe                    20276 Console                    1    248,824 K

C:\Users\Guogang Fan>

Take a look at what is occupying your port, and then decide whether to kill it? Or reassign the port?

習慣沉默

netstat -an |grep 80Check whether port 80 is occupied

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template