Start at the Linux environment to start httpd service error: job for httpd.service failed Because the Control Process Exited with Error Code.

tags: linux  http

I want to open in the Linux environmenthttpd service

implement

systemctl start httpd.service

After the command

showReport an error

Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details.

It may be the default port of the HTTP service -port 80 is occupied

Execute the following command

netstat -lnp | grep 80


Use the following commandEnd the process of occupying port 80

kill -QUIT 4115

Use the command to startTo

RecordWindow systemBelow, the order of the process of the occupation port

netstat -ano|findstr 8080

The above command can find the TCP number corresponding to port 8080

taskkill /f /t /im 12808 

The above command can end the process, 12808 is the TCP number

Reference article is from the blog garden: https://www.cnblogs.com/sumie/p/7822906.html

for reference only

Intelligent Recommendation

[Zabbix] Job for httpd.service failed because the control process exited with error code. See "sy solution

Error when restarting zabbix (starting httpd service): Follow the prompts to execute: Check that the processes occupying the port are killed: Every startup will be occupied, so the default port of git...

Job for httpd.service failed because the control process exited with error code. See “systemctl stat

illustrate At the same time, HTTPD and Nginx are installed, the default port is 80, conflict error. Wrong solve View the port is occupied 1. Modify one of the default ports Nginx Httpd 2, uninstall on...

The centOS7 network card failed to start, and an error was reported: Job for network.service failed because the control process exited with error code.

An error is reported when starting the network card: [root@hadoop103 su]# systemctl start network Job for network.service failed because the control process exited with error code. See “systemct...

Docker start error: Job for docker.service failed because the control process exited with error code

Start Docker title the following error: Job for docker.service failed because the control process exited with error code. See “systemctl status docker.service” and “journalctl -xe&rd...

After installing docker, start reporting an error Job for docker.service failed because the control process exited with error code. See

After installing docker, start error Job for docker.service failed because the control process exited with error code. See “systemctl status docker.service” and “journalctl -xe&rdquo...

More Recommendation

Job for Jenkins.Service Failed Because The Control Process Exited with error code. Start Jenkins error resolution

Start Jenkins report Job for jenkins.service failed because the control process exited with error code I. Report an error message 2. Problem There is a problem with the Java environment in Jenkins. I ...

Nginx start error: Job for nginx.service failed Because The Control Process Exited with error code

Nginx launch error: Job for nginx.service failed Because The Control Process Exited with error code. See "Systemctl Status Nginx.service" and "journalctl -xe" for details. View err...

Start nginx and report an error Job for nginx.service failed because the control process exited with error code.

【Problem Description】 systemctl start nginx starts nginx and reports an error Job for nginx.service failed because the control process exited with error code.See "systemctl status nginx.service&q...

CentOS7 installation docker failed to start: Job for docker.service failed because the control process exited with error code

After installing docker on a new virtual machine CentOS7, the startup failed and the console reported an error:Job for docker.service failed because the control process exited with error code. See &qu...

jenkins failed to start: Job for jenkins.service failed because the control process exited with error code. See

After installing and deploying jenkins, the problem of startup failure Error code: Jenkins prompts to run systemctl status jenkins.service to view the location of the jenkins error systemctl status je...

Copyright  DMCA © 2018-2026 - All Rights Reserved - www.programmersought.com  User Notice

Top