repositorios oficiales modo instalar httpd grafico configurar como actualizar apache centos server vagrant private-network

oficiales - instalar y configurar apache en centos 7



Q sobre Vagrant: estoy configurando un centos 6.5 en vagabundo, he instalado httpd pero no puedo acceder al sitio web en la máquina virtual (1)

Estoy configurando un centos 6.5 en vagabundo como servidor.

Uso la configuración private_network con IP: 192.168.33.20

Utilicé la dirección IP 192.168.33.20 para acceder a SSH y SFTP en la máquina virtual.

Pero solo no puedo acceder al sitio web por esa dirección IP (192.168.33.20) aunque he instalado httpd y httpd se está ejecutando

[root@centos65 ~]# netstat -nltp 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:45525 0.0.0.0:* LISTEN 1082/rpc.statd tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1208/sshd tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1285/master tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1062/rpcbind tcp 0 0 :::22 :::* LISTEN 1208/sshd tcp 0 0 ::1:25 :::* LISTEN 1285/master tcp 0 0 :::34314 :::* LISTEN 1082/rpc.statd tcp 0 0 :::111 :::* LISTEN 1062/rpcbind tcp 0 0 :::80 :::* LISTEN 3202/httpd

revisando SELinux, está deshabilitado

# This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - SELinux is fully disabled. SELINUX=disabled # SELINUXTYPE= type of policy in use. Possible values are: # targeted - Only targeted network daemons are protected. # strict - Full SELinux protection. SELINUXTYPE=targeted

Cambiar el puerto HTTP

[root@centos65 ~]# sudo netstat -nltd Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:49655 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN tcp 0 0 :::22 :::* LISTEN tcp 0 0 ::1:25 :::* LISTEN tcp 0 0 :::45389 :::* LISTEN tcp 0 0 :::111 :::* LISTEN tcp 0 0 :::8080 :::* LISTEN

No puedo acceder a mi servidor web desde mi host


Abra el puerto 80, vaya ay escriba

# vi /etc/sysconfig/iptables

Insertar una nueva línea

-A INPUT -p tcp -m state –state NEW –dport 80 -j ACCEPT

Eso es todo para resolver el problema