728x90
๋ฐ์ํ
โ FanManager Failed ์ค๋ฅ
โ ๋ฉ์์ง
→ SEVERE : attempt to configure ONS in FanManager failed with oracle.ons.NoServersAvailable : Subscription time out
โ ์ค๋ช
ใด jdbc์ ๋ฒ์ com.oracle.ojdbc:ojdbc8:19.3.0.0 ์ด์์ผ๋ก ์คํ์ ์ค๋ฅ๊ฐ ๋ฐ์ํ ๋๊ฐ ์์
โ ํด๊ฒฐ๋ฐฉ๋ฒ
→ fanmanger๋ pom.xml์์ jdbc ๋ผ์ด๋ธ๋ฌ๋ฆฌ ๋ค์ด๋ฐ์๋ simplefan์ด๋ ons ์ ์ธ์ค์ ํด์ฃผ๋ฉด ๋ฉ๋๋ค.
→ ์ค์ ์ฝ๋ ์๋์์ ํ์ธ!
[ simplefan์ด๋ ons ์ ์ธ์ค์ ์ฝ๋ ]
<!-- fanmanger time out ํด๊ฒฐ ์ํด simplefan์ด๋ ons ์ ์ธ ์ถ๊ฐ ์ค์ -->
<!-- Oracle Jdbc : mac -->
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>19.3.0.0</version>
<exclusions>
<exclusion>
<groupId>com.oracle.database.ha</groupId>
<artifactId>simplefan</artifactId>
</exclusion>
<exclusion>
<groupId>com.oracle.database.ha</groupId>
<artifactId>ons</artifactId>
</exclusion>
</exclusions>
</dependency>
[ ์ดํด๋ฆฝ์ค ์ค์ pom.xml]
728x90
๋ฐ์ํ