Mercurial > hg > orthanc-book
diff Sphinx/source/faq/redhat.rst @ 0:901e8961f46e
initial commit
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 22 Apr 2016 12:57:38 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Sphinx/source/faq/redhat.rst Fri Apr 22 12:57:38 2016 +0200 @@ -0,0 +1,12 @@ +.. 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