Trabalhe no host local, no domínio não está funcionando. Tempo limite de conexão?

1

Trabalho no site localhost: 33333, mas se eu executar my.domain.com:33333 ou my.domain.com não funcionar ( Connection timeout )

Qual poderia ser o motivo?

<VirtualHost *:33333>
ServerName my.domain.com
DocumentRoot /var/www/vtigercrm/
ErrorLog /var/log/apache2/vtiger.my.domain.com.error_log
CustomLog /var/log/apache2/vtiger.my.domain.com.access_log combined
<Directory /var/www/vtigercrm>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>

grep -iR listen /etc/apache2/ output:

/etc/apache2/ports.conf:Listen 33333
/etc/apache2/ports.conf:    Listen 443
/etc/apache2/ports.conf:    Listen 443
/etc/apache2/apache2.conf:#   supposed to determine listening ports for incoming connections, and which
/etc/apache2/apache2.conf:# Include list of ports to listen on and which to use for name based vhosts

/var/log/apache2/error.log

[Mon May 06 19:27:17 2013] [notice] Apache/2.2.22 (Ubuntu) PHP/5.4.6-1ubuntu1.2 configured -- resuming normal operations
[Mon May 06 19:41:52 2013] [notice] caught SIGTERM, shutting down
[Mon May 06 19:41:53 2013] [notice] Apache/2.2.22 (Ubuntu) PHP/5.4.6-1ubuntu1.2 configured -- resuming normal operations

iptables -L -nv : link

    
por user2307683 06.05.2013 / 19:38

1 resposta

1

Seu firewall não permite a porta 33333. Execute:

sudo ufw allow 33333/tcp

para abri-lo.

    
por Eric Carvalho 06.05.2013 / 20:41