El mar., 11 de jun. de 2019 a la(s) 17:51, Departamento Soporte Técnico ( mateosat...@hotmail.com) escribió:
> ya esta agregado esa configuracion: al hacer un netsat -netstat: > > tcp 0 0 0.0.0.0:10000 0.0.0.0:* > LISTEN 65529/perl > tcp 0 0 127.0.0.53:53 0.0.0.0:* > LISTEN 342/systemd-resolve > tcp 0 0 0.0.0.0:22 0.0.0.0:* > LISTEN 22169/sshd > tcp 0 0 127.0.0.1:3306 0.0.0.0:* > LISTEN 47344/mysqld > tcp6 0 0 :::80 :::* LISTEN > 24977/apache2 > tcp6 0 0 :::10000 :::* LISTEN > 65529/perl > tcp6 0 0 :::8080 :::* LISTEN > 1048/java > tcp6 0 0 :::21 :::* LISTEN > 22567/vsftpd > tcp6 0 0 :::22 :::* LISTEN > 22169/sshd > tcp6 0 0 ::1:3350 :::* LISTEN > 16847/xrdp-sesman > tcp6 0 0 :::3389 :::* LISTEN > 16857/xrdp > tcp6 0 0 127.0.0.1:8005 :::* > LISTEN 1048/java > ------ > agrege a los Iptables: > iptables -A INPUT -i eth0 -p tcp --destination-port 5432 -j ACCEPT > iptables-save -c > ---- > Pero no refleja... > > Quité la lista pgsql-admin en inglés de los destinatarios. Tu netstat muestra que o postgres no está corriendo o no hiciste el restart tras cambiar el listen_addresses. 1. En Ubuntu, para verificar que Postgres esté corriendo: *# service postgresql status* ● postgresql.service - PostgreSQL RDBMS Loaded: loaded (/lib/systemd/system/postgresql.service; enabled; vendor preset: enabled) Active: *active* (exited) since Thu 2019-04-11 12:58:20 -03; 2 months 0 days ago Main PID: *15931* (code=exited, *status=0/SUCCESS*) Tasks: 0 (limit: 9472) CGroup: /system.slice/postgresql.service En caso que no esté corriendo: *# service postgresql start* Si ya está corriendo, entonces falta que te tomé el cambio del listen_addresses. Debes reiniciar el motor haciendo: *# service postgresql restart* Saludos.