Home  >  Q&A  >  body text

I installed apache2.2 myself, but an error occurred after restarting apache. Please help! Thanks!

迷茫迷茫2713 days ago529

reply all(2)I'll reply

  • 巴扎黑

    巴扎黑2017-05-16 17:03:41

    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?

    reply
    0
  • 習慣沉默

    習慣沉默2017-05-16 17:03:41

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

    reply
    0
  • Cancelreply