removido
(usa Nenhuma)
Enviado em 28/11/2013 - 14:03h
emerson2703 escreveu:
coloquei, a url do servidor ocs e forcei o envio dos dados
Você checou o SELinux?
Provavelmente o SELinux está em modo
enforcing e esta negando sua conexão. Comprove isso verificando os logs do apache.
# sestatus
SELinux status: enabled
SELinuxfs mount: /selinux
Current mode: permissive
Mode from config file: permissive
Policy version: 24
Policy from config file: targeted
Caso ele esteja
enforcing mude para
permissive com o comando:
# setenforce 0
Para não perder a configuração com reboot do S.O:
# sed -i 's/SELINUX=.*/SELINUX=permissive/' /etc/selinux/config
Vai ficar assim:
# cat /etc/selinux/config
# 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 - No SELinux policy is loaded.
SELINUX=permissive
# SELINUXTYPE= can take one of these two values:
# targeted - Targeted processes are protected,
# mls - Multi Level Security protection.
SELINUXTYPE=targeted