view Sphinx/source/faq/redhat.rst @ 631:9fa56c042d92

postgresql performance on azure
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 16 Apr 2021 18:50:33 +0200
parents 901e8961f46e
children
line wrap: on
line source

.. highlight:: bash
.. _redhat:

Accessing an Orthanc instance running inside Fedora/RHEL/CentOS
===============================================================

For remote access to Orthanc, you will have to open the 4242 and the
8042 ports on iptables, that are closed by default::

    $ sudo iptables -I INPUT -p tcp --dport 8042 -j ACCEPT
    $ sudo iptables -I INPUT -p tcp --dport 4242 -j ACCEPT
    $ sudo iptables-save