how to restart apache server with out shatdown?
Answers were Sorted based on User's Feedback
Answer / satish kumar
service httpd reload;
use this command;
because when we use restart then first server stop and then
starts the service;
| Is This Answer Correct ? | 23 Yes | 5 No |
Answer / nikhil korde
whenever you want restart Apache web server without shutdown
Apache web server that time you use the commands service
httpd reload ,if you type the commands service httpd restart
that time frist shut down the service then startup the
service but if you type commands service httpd reload, only
read the configuration file and startup the service
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / sg
First check out the PID (process ID) of the httpd process.
Then issue a kill -HUP on the process ID. For ex: if the
process ID is 587, then the command would be
kill -HUP 587
| Is This Answer Correct ? | 2 Yes | 3 No |
What is linux load average?
Is cmake a compiler?
what is the last file executed during the boot process?
I want to kill zombie process, but with using kill 9 i cannot kill that process? can u tell other commands?
What is apple llvm?
How to root mirror in linux?
what r the different command to check ram,process and hdd of linux machine
What is difference between egrep and grep?
What is command grouping?
What command should you use to check the number of files and disk space used and each user’s defined quotas?
why context switching time should be minimum? How it depends on hardware support?
Explain how you would manage background and foreground processes in Linux.