Ankursinha (talk | contribs) |
Ankursinha (talk | contribs) No edit summary |
||
Line 22: | Line 22: | ||
"AESKULAP1" : [ "AESKULAP1", "10.0.1.68", "6000" ] | "AESKULAP1" : [ "AESKULAP1", "10.0.1.68", "6000" ] | ||
</pre> | </pre> | ||
Start Orthanc: | |||
<pre> sudo systemctl start orthanc.service </pre> and check if it started: | |||
<pre> sudo systemctl status orthanc.service </pre> | |||
If your configuration was correct, it should be running. | |||
== Set up Aeskulap == | |||
In Aeskulap, you need to go to "Edit > Preferences > Servers" and add the Orthanc Server. This screenshot tells you how to do it: https://ankursinha.fedorapeople.org/aeskulap_orthanc/aeskulap-orthanc.png . | |||
== Open your firewall ports == | |||
This is quite important. If your ports aren't open, it won't work properly. | |||
On the Orthanc machine, you need to open port 4242: | |||
<pre>sudo firewall-cmd --add-ports=4242/tcp</pre> | |||
To make this permanent, run the command again with the <code>--permanent</code> option. Please make sure you add this to the current <code>zone</code> if you're using one. | |||
If you want to also use the http web front end, also open port </code>8024</code> using a similar command as above. Note that, to allow remote http access, you need to set <code>"RemoteAccessAllowed"</code> to <code>true</code> in the configuration file and restart the server: | |||
<pre>sudo systemctl restart orthanc.service</pre> |
Revision as of 07:20, 20 August 2014
This page documents how you can set up an Orthanc DICOM server and Aeskulap clients on different machines to view DICOM information stored on the Orthanc server.
Install your packages
On the server machine, install Orthanc:
sudo yum install orthanc
On the client machines, install Aeskulap
sudo yum install aeskulap
Set up Orthanc
Configure /etc/orthanc/orthanc.json
Add your Aeskulap clients under DicomModalities
. For example:
"AESKULAP" : [ "AESKULAP", "localhost", 6000 ], "AESKULAP1" : [ "AESKULAP1", "10.0.1.68", "6000" ]
Start Orthanc:
sudo systemctl start orthanc.service
and check if it started:
sudo systemctl status orthanc.service
If your configuration was correct, it should be running.
Set up Aeskulap
In Aeskulap, you need to go to "Edit > Preferences > Servers" and add the Orthanc Server. This screenshot tells you how to do it: https://ankursinha.fedorapeople.org/aeskulap_orthanc/aeskulap-orthanc.png .
Open your firewall ports
This is quite important. If your ports aren't open, it won't work properly.
On the Orthanc machine, you need to open port 4242:
sudo firewall-cmd --add-ports=4242/tcp
To make this permanent, run the command again with the --permanent
option. Please make sure you add this to the current zone
if you're using one.
If you want to also use the http web front end, also open port 8024 using a similar command as above. Note that, to allow remote http access, you need to set "RemoteAccessAllowed"
to true
in the configuration file and restart the server:
sudo systemctl restart orthanc.service