Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeDJango
title8001번 포트를 서비스하는 AKKA System 설정
linenumberstrue
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <configSections>
      <section name="akka" type="Akka.Configuration.Hocon.AkkaConfigurationSection, Akka" />
    </configSections>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
    </startup>
    <akka>
      <hocon>
        <![CDATA[     
            akka {
              actor {            
                provider = "Akka.Remote.RemoteActorRefProvider, Akka.Remote"
                }
              }
             
              remote {
                log-remote-lifecycle-events = DEBUG
                log-received-messages = on
               
                helios.tcp {
                    port = 8001 #bound to a specific port
                    hostname = 127.0.0.1
                }
              }           
            }         
        ]]>
      </hocon>
    </akka>
</configuration>


실행확인

경고의의미:

로그의 의미:

자신이 설정한 포트(ex:8001)가  표시되면 정상이다.  listens on a address : akka.tcp://ServiceA@127.0.0.1:8001 

( 차기버젼에서 JsonSerialzier가 Hyperion으로 기본 변경예정이니, 바꿀수있으면 바꾸란의미이며 무시가능 -ASP.net MVC 에서  -NewtonSoft에서 다른버젼의 JSON 라이브러리 충돌시 변경가능   )


소스: AKKA 최초설정

...