answersLogoWhite

0

apachectl start

will do the job !

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the full form of httpd?

Hyper Text Transfer Protocol Daemon


What is the Apache daemon executable?

The Apache daemon executable, commonly referred to as httpd, is the core component of the Apache HTTP Server software. It is responsible for handling web requests and serving web content to clients over the internet. When a user accesses a website hosted on an Apache server, the httpd process manages the incoming requests, processes them, and sends back the appropriate responses. The daemon runs continuously in the background, waiting for incoming connections.


When was CERN httpd created?

CERN httpd was created on 1990-12-24.


How do you uninstall programs in Linux?

First, open terminal (bash prompt). You must be login as root user to run any one of the following command. Remove Software under Red Hat / RHEL / Fedora / CentOS Linux Use rpm or yum command to delete the software. To list the installed software type rpm -qa | less rpm -qa {software-name} yum list | less yum list {software-name} To get information about httpd package, enter: rpm -qa httpd yum list httpd To remove a software use rpm or yum command as follows rpm -e {software-name} yum remove {software-name} To delete a package called httpd, enter: rpm -e httpd yum remove httpd Delete / Uninstall Software Under Debian / Ubuntu Linux To list installed software type: dpkg --list dpkg --list | less dpkg --list | grep apache To delete the software, enter: sudo apt-get remove {package-name} sudo apt-get remove apache


How do you find version of apache?

httpd -v or on Ubuntu apache2 -v


How do you find Apache version?

httpd -v or on Ubuntu apache2 -v


When was first used the cgi?

CGI was introduced in 1993 in the NCSA web server, httpd.


What is first web server?

The first web server was developed by Tim Berners-Lee in 1990 while he was at CERN. It was called CERN httpd (HyperText Transfer Protocol Daemon) and ran on a NeXT computer. This server was instrumental in serving the first website, which provided information about the World Wide Web project itself. The creation of this server marked a significant milestone in the development of the internet and web technologies.


What is Apache's first open source project?

Apache httpd Project (Apache Http Web Server)


How does a web server determine whether a requested document includes PHP code?

Web server passes the requested document to PHP interpreter, which validates and processes PHP code in it, then the server reads the response from PHP interpreter and returns the resulting response to client.For an instance, Apache HTTPD uses instructions such as AddType, to know how to process various documents, basing on their extensions (the following example is common and may require changes depending on Apache HTTPD and PHP configuration):AddType application/x-httpd-php .php .p8p .txtThis directive instructs Apache HTTPD to let PHP process files which are suffixed with .php, .p8p or .txt, thus files such as index.php, Homepage.p8p and Settings.txt will be processed by PHP.


How can you find out what services are running in Linux?

Most Linux distros are supplied with a number of process monitoring tools; the most used and most flexible is ps.top and htop mostly provide the same information in a more friendly format. Interpreting these commands requires some knowledge of the programs themselves, but most should have at least a man page. The grep command can help you filter the results to a specific program:$ps ax | grep httpd5392 ? S 0:00 /root/ispconfig/cronolog --symlink=/var/log/httpd/ispconfig_access_log /var/log/httpd/ispconfig_access_log_%Y_%m_%d5404 ? S 0:00 /usr/sbin/httpd5409 ? S 0:00 /usr/sbin/httpd5416 ? S 0:00 /usr/sbin/httpd5418 ? S 0:00 /usr/sbin/httpd5420 ? S 0:00 /usr/sbin/httpd5422 ? S 0:00 /usr/sbin/httpd5424 ? S 0:00 /usr/sbin/httpd5425 ? S 0:00 /usr/sbin/httpd12286 ? Ss 0:04 /usr/sbin/httpd25543 pts/0 R+ 0:00 grep httpd30781 ? Ss 0:29 /root/ispconfig/httpd/bin/ispconfig_httpd -DSSL30790 ? S 0:12 /root/ispconfig/httpd/bin/ispconfig_httpd -DSSL30999 ? S 0:12 /root/ispconfig/httpd/bin/ispconfig_httpd -DSSL


Why wont httpd start on your cent OS 5 server though ssh?

Most webservers can only be started as root. Make sure that you are using the root account on the server.