Digest Irène Mykhailova · Oct 28, 2024 Publications des développeurs d'InterSystems, semaine Octobre 21 - 27, 2024, Résumé #Developer Community Official #Digest Articles#InterSystems IRISComment relier l'IA et l'Informatique décisionnelle à votre solution Adaptive Analytics ?Par Sylvain Guilbaud#AutreComment profiter de votre compte de connexion InterSystems pour améliorer votre niveau technique ?Par Ben SpeadAnnonces#Communauté des développeurs officielleDéfi InterSystems Tech VideoPar Irène Mykhailova#AutreHospitals On FHIR - Users DaysPar Irène MykhailovaQuestions#InterSystems IRISActivation "Mise à Jour" Production qui empêche les taches de s'exécuterPar Moussa SAMBOctobre 21 - 27, 2024Week at a GlanceInterSystems Developer Community
Digest Esther Sanchez · Oct 28, 2024 Nuevas publicaciones en la Comunidad de InterSystems, 21-27 octubre #Developer Community Official #Digest Artículos#InterSystems IRISModelos LLM y aplicaciones RAG paso a paso - Parte III - Buscando e inyectando el contextoPor Luis Angel Pérez RamosQuinielaML - Predicción de la 18ª jornada de la QuinielaPor Luis Angel Pérez Ramos#InterSystems IRIS for HealthDe ORU a MDM con mensajes grandes en HL7 v2.Por Alberto FuentesDescubriendo pistas consultando las tablas de mensajes de interoperabilidadPor Ricardo PaivaAnuncios#InterSystems IRISLas versiones de mantenimiento 2023.1.5 y 2024.1.2 de InterSystems IRIS, IRIS for Health y HealthShare HealthConnect ya están disponiblesPor Jose-Tomas Salvador#Portal de ideas de InterSystems¡Buscando ideas que sean una Oportunidad para la Comunidad!Por Anastasia Dyubaylo21-27 octubreWeek at a GlanceInterSystems Developer Community
Article Hao Ma · Oct 28, 2024 3m read 配置IRIS Container - 使用iris-main #Beginner #Deployment #InterSystems IRIS 使用iris-main iris-main是IRIS镜像的的ENTRYPOINT程序。 在Container中,ENTRYPOINT 指令允许你指定一个可执行程序或者脚本,作为容器启动后运行的主程序。这个程序会在容器启动时自动执行。 执行docker ps命令可以看到当前container的ENTRYPOINT是什么:
Article Hao Ma · Oct 28, 2024 2m read 配置Webgateway Conainter-补充 #Beginner #Deployment #InterSystems IRIS 把CSP.conf保存在container之外 在创建webgateway的container时,可以使用ISC_DATA_DIRECTORY=参数, 选择把CSP文保存在主机而不仅仅是container内部。如下面的例子: 使用volumnes映射了主机的./dur-wg-a目录到container的/dur目录, 而command中的ISC_DATA_DIRECTORY=/dur会讲webgateway的配置文件, log文件等保存在主机。
Article Hao Ma · Oct 28, 2024 7m read 配置Webgateway Conainter #Beginner #Deployment #InterSystems IRIS 上一篇文章使用人工配置的方法简单的配置了webgateway container. 接下来来介绍如何在docker-compose里做自动化部署。 先总结我们要做的事情: 配置到IRIS的连接。定义连接的iris的IP地址或者DNS, 以及连接的用户名密码 以及其他的对默认值的修改。 配置apache2的配置文件,保证到IRIS的HTTP请求能发送给CSP Webgateway。 很多时候,用户会希望使用HTTPS访问IRIS,因此需要在apache2上支持TLS。 这些是最基本的功能。除此之外, 用户还可能会要求建立WebGateway到IRIS的TLS连接,或者在Apache2部署自己的网页等等。后面的文章会一一介绍。 配置CSP.ini 上一篇文章中,我通过Webgateway管理页面定义了Webgateway到IRIS的连接,其实是定义了webgateway的配置文件CSP.ini。 无论WebServer是什么类型,IIS,Apache, Nginx, CSP.ini的都是一样的。在Linux中, CSP.ini位于/opt/webgateway/bin目录。