проблема с запуском httpd на CentOS 5.3 64bit

Michael

Well-Known Member
Команда форуму
Администратор
может апач запускается через inetd ? Что в /etc/inetd.conf ?
 

life-

Нафиг отвлекалово!
Код:
#ServerName www.example.com:80
поменять на

Код:
ServerName localhost:80
перезапустить службу
[root@localhost ~]# service httpd restart
Останавливается httpd: [ OK ]
Запускается httpd: (13)Permission denied: make_sock: could not bind to address [::]:8000
(13)Permission denied: make_sock: could not bind to address 0.0.0.0:8000
no listening sockets available, shutting down
Unable to open logs
[ СБОЙ ]
всеравно

Конфиг -
 

Michael

Well-Known Member
Команда форуму
Администратор
Что у тебя в /etc/xinetd.conf ? Есть строка с httpd ?
 

life-

Нафиг отвлекалово!
netstat -tulpn | grep :80

и вообще покажи что у тебя на каком порту
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 14621/mysqld
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 2309/portmap
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 2550/cupsd
tcp 0 0 :::80 :::* LISTEN 25419/httpd
tcp 0 0 :::22 :::* LISTEN 2537/sshd
tcp 0 0 :::443 :::* LISTEN 25419/httpd
udp 0 0 0.0.0.0:26900 0.0.0.0:* 20584/hlds_i686
udp 0 0 0.0.0.0:27100 0.0.0.0:* 20584/hlds_i686
udp 0 0 0.0.0.0:5353 0.0.0.0:* 2641/avahi-daemon:
udp 0 0 0.0.0.0:111 0.0.0.0:* 2309/portmap
udp 0 0 0.0.0.0:34038 0.0.0.0:* 2641/avahi-daemon:
udp 0 0 0.0.0.0:631 0.0.0.0:* 2550/cupsd
udp 0 0 :::54346 :::* 2641/avahi-daemon:
udp 0 0 :::5353 :::* 2641/avahi-daemon:
 

life-

Нафиг отвлекалово!
Что у тебя в /etc/xinetd.conf ? Есть строка с httpd ?
#
# This is the master xinetd configuration file. Settings in the
# default section will be inherited by all service configurations
# unless explicitly overridden in the service configuration. See
# xinetd.conf in the man pages for a more detailed explanation of
# these attributes.

defaults
{
# The next two items are intended to be a quick access place to
# temporarily enable or disable services.
#
# enabled =
# disabled =

# Define general logging characteristics.
log_type = SYSLOG daemon info
log_on_failure = HOST
log_on_success = PID HOST DURATION EXIT

# Define access restriction defaults
#
# no_access =
# only_from =
# max_load = 0
cps = 50 10
instances = 50
per_source = 10

# Address and networking defaults
#
# bind =
# mdns = yes
v6only = no

# setup environmental attributes
#
# passenv =
groups = yes
umask = 002

# Generally, banners are not used. This sets up their global defaults
#
# banner =
# banner_fail =
# banner_success =
}

includedir /etc/xinetd.d
вот
 
Зверху