前提・実現したいこと
ここに質問の内容を詳しく書いてください。
vagrantを使って新しく仮想環境をつくっています。
Apacheを導入したいのですが、これまでDotinstallで配布されているスクリプトでの構築しか行ったことがなく、行き詰っております。
環境
centOS: 6.10
Apache: 2.2.15
発生している問題・エラーメッセージ
sudo yum -y update
sudo yum -y install httpd
をコマンドして、apacheをインストールしたのですが、
service httpd start
をすると
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomai n for ServerName (13)Permission denied: make_sock: could not bind to address [::]:80 (13)Permission denied: make_sock: could not bind to address 0.0.0.0:80 no listening sockets available, shutting down Unable to open logs
となり起動できません。
「ServerNameを変更する必要がある」
ということは分かったのですが、どのように編集すればいいのか、どのように編集すればよいのかがわかりません。(「ホスト名」が何を指すのかもわかっていません、、、)
vim で編集するため、
vi /etc/httpd/conf/httpd.conf
をコマンドすると、
# # This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See <URL:http://httpd.apache.org/docs/2.2/> for detailed information. # In particular, see # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html> # for a discussion of each configuration directive. # # # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the # same Apache server process. # # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with "/" (or "drive:/" for Win32), the # server will use that explicit path. If the filenames do *not* begin # with "/", the value of ServerRoot is prepended -- so "logs/foo.log" # with ServerRoot set to "/etc/httpd" will be interpreted by the # server as "/etc/httpd/logs/foo.log". # ### Section 1: Global Environment # # The directives in this section affect the overall operation of Apache, # such as the number of concurrent requests it can handle or where it # can find its configuration files. # # # Don't give away too much information about all the subcomponents # we are running. Comment out this line if you don't mind remote sites # finding out what major optional modules you are running ServerTokens OS # # ServerRoot: The top of the directory tree under which the server's # configuration, error, and log files are kept. # # NOTE! If you intend to place this on an NFS (or otherwise network) # mounted filesystem then please read the LockFile documentation # (available at <URL:http://httpd.apache.org/docs/2.2/mod/mpm_common.html#lockfile>); # you will save yourself a lot of trouble. # # Do NOT add a slash at the end of the directory path. # ServerRoot "/etc/httpd" # # PidFile: The file in which the server should record its process # identification number when it starts. Note the PIDFILE variable in "/etc/httpd/conf/httpd.conf" [readonly] 1009L, 34419C
とでて、Quiitaなどで紹介されているような、期待しているページとは異なる表示がされており、どのように対処すればよいのかわかりません。
環境構築についての知識が非常に浅いので、いろいろ調べつつやっているのですが、調べていても有益な情報が得られない(知識が足りなく理解ができない)場合が多く、現状に対処できておりません。
1 現在どのような原因でApacheが起動できていないのか
2 なぜUSER_NAMEなどの設定ファイルが開けていないのか
3 設定する必要がある「ホスト名」とは何を指すのか?
4 ServerNameをどのように設定すればよいのか
など、ご回答いただけたら大変助かります。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/03 05:44