postgresql에서 default 포트 번호는 5432이다. 이 번호를 변경하는 방법을 설명해드리겠습니다. 1. postgresql 서비스 확인 및 이름 확인 [root@localhost ~]# systemctl status | grep post 위의 사진과 같이 현재 올라온 서비스의 postgresql을 확인 할 수 있다. 여기서 서비스 이름을 기억해 둔다 (postgresql-9.6.service) 2. psql 접속해서 config_file 위치 확인 postgresql계정으로 변환 후 psql을 실행시킨다 [root@localhost ~]# su - postgres [postgres@localhost ~]$ psql SQL > show config_file; 결과값으로 postgresql.co..