远程登录Orthanc服务器

        Orthanc是一种开源的、基于WEB的DICOM Server软件,可以通过三种方式访问该软件,依次为DICOM Server、Web Server和RESTful API方式。
        Orthanc也是跨平台的,既有 Windows版本,也有 Linux版本,目前,最新的版本为v1.6.0。
        这里,以win7通过浏览器远程访问Ubuntu v16.4上的Orthanc服务器为例,步骤如下:
        1)先在Ubuntu命令行的黑框框里,导出Orthanc服务器的配置文件(假设你的Orthanc服务器在/home/project/OrthancExe路径下),使用如下命令:

cd /home/project/OrthancExe/
Orthanc --config=Configuration.json

        2)在Orthanc配置文件Configuration.json里,开启远程登录功能,并设置一个登录用户为hello和密码hello123。
        即修改/home/project/OrthancExe/Configuration.json文件,字段如下:

//Configuration.json
      "RemoteAccessAllowed" : true,
	  "AuthenticationEnabled" : true,
	  "RegisteredUsers" : {
    
    
            "hello" : "hello123"
       },

        3)启动Orthanc服务器,并加载修改好的配置文件Configuration,输入如下命令:

./Orthanc ./Configuration.json

        2)在win7浏览器器http//+远程主机的IP + :8042/app/explorer.html,比如:
http://192.168.88.233:8042/app/explorer.html 回车,进入Orthanc服务器网页;
        这个IP要能ping通,才能连接得上。

        3)在弹出的网页中,输入用户名和密码,就可以登录了,分别如下:
        用户名:hello
        密码:hello123

        4)远程访问,可能需要关闭防火墙;或者,在防火墙里勾选Orthanc.exe和OrthancService.exe,允许其穿过防火墙也行。
        即点击[控制面板]–>系统和安全 --> Windows防火墙–> 允许程序通过Windows防火墙 --> 允许运行另一程序 --> 选中D:\Program Files\Orthanc Server\Orthanc.exe
和D:\Program Files\Orthanc Server\OrthancService.exe -->OK
在这里插入图片描述

图(1)允许Orthanc.exe穿透防火墙

在这里插入图片描述

图(2) 允许OrthancService.exe穿透防火墙

5)        效果如下:
在这里插入图片描述

图(3) 进入Orthanc服务器首页

        再点击[All paitens]按钮,就可以查看远程Orthanc里的patient存档信息。

在这里插入图片描述

图(4) 查看到3个patient的存档信息

猜你喜欢

转载自blog.csdn.net/sanqima/article/details/105585180