Well, the issue is that logging config file is absent. To solve it you
should add a
logging config file. Alternatively, you can enable "log4j" module.

Best Regards,
Igor

On Mon, Mar 27, 2017 at 8:54 AM, kavitha <[email protected]> wrote:

> Hi,
>
> While starting node with Spring XML file, I got below error. Anyone Please
> tell me How I solve this?
>
> SEVERE: Failed to resolve default logging config file:
> config/java.util.logging.properties
> [11:23:55]    __________  ________________
> [11:23:55]   /  _/ ___/ |/ /  _/_  __/ __/
> [11:23:55]  _/ // (7 7    // /  / / / _/
> [11:23:55] /___/\___/_/|_/___/ /_/ /___/
> [11:23:55]
> [11:23:55] ver. 1.9.0#20170302-sha1:0be92732
> [11:23:55] 2017 Copyright(C) Apache Software Foundation
> [11:23:55]
> [11:23:55] Ignite documentation: http://ignite.apache.org
> [11:23:55]
> [11:23:55] Quiet mode.
> [11:23:55]   ^-- To see **FULL** console log here add -DIGNITE_QUIET=false
> or "-v" to ignite.{sh|bat}
> [11:23:55]
> [11:23:55] OS: Windows NT (unknown) 6.2 amd64
> [11:23:55] VM information: Java(TM) SE Runtime Environment 1.7.0-b147
> Oracle
> Corporation Java HotSpot(TM) 64-Bit Server VM 21.0-b17
> [11:23:55] Initial heap size is 124MB (should be no less than 512MB, use
> -Xms512m -Xmx512m).
> [11:23:55] Configured plugins:
> [11:23:55]   ^-- None
> [11:23:55]
> [11:23:56] Message queue limit is set to 0 which may lead to potential
> OOMEs
> when running cache operations in FULL_ASYNC or PRIMARY_SYNC modes due to
> message queues growth on sender and receiver sides.
> [11:23:56] Security status [authentication=off, tls/ssl=off]
> [11:23:56] REST protocols do not start on client node. To start the
> protocols on client node set '-DIGNITE_REST_START_ON_CLIENT=true' system
> property.
>
>
> Spring XML configuration:
> <?xml version="1.0" encoding="UTF-8"?>
>
> <beans xmlns="http://www.springframework.org/schema/beans";
>        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
>        xmlns:util="http://www.springframework.org/schema/util";
>        xsi:schemaLocation="
>         http://www.springframework.org/schema/beans
>         http://www.springframework.org/schema/beans/spring-beans.xsd
>         http://www.springframework.org/schema/util
>         http://www.springframework.org/schema/util/spring-util.xsd";>
>   <bean id="ignite.cfg"
> class="org.apache.ignite.configuration.IgniteConfiguration">
>
>
>     <property name="odbcConfiguration">
>       <bean class="org.apache.ignite.configuration.OdbcConfiguration"/>
>     </property>
> <property name="cacheConfiguration">
>       <list>
>         <bean class="org.apache.ignite.configuration.CacheConfiguration">
>           <property name="name" value="Person"/>
>             <property name="cacheMode" value="PARTITIONED"/>
>             <property name="atomicityMode" value="ATOMIC"/>
>             <property name="cacheStoreFactory">
>                 <bean
> class="org.apache.ignite.cache.store.jdbc.CacheJdbcPojoStoreFactory">
>                     <property name="dataSourceBean" value="dsSqlServer"/>
>                     <property name="dialect">
>                         <bean
> class="org.apache.ignite.cache.store.jdbc.dialect.SQLServerDialect">
>                         </bean>
>                     </property>
>                     <property name="types">
>                         <list>
>                             <bean
> class="org.apache.ignite.cache.store.jdbc.JdbcType">
>                                 <property name="cacheName" value="Person"/>
>                                 <property name="keyType"
> value="java.lang.Integer"/>
>                                 <property name="valueType"
> value="model.Person"/>
>                                 <property name="databaseSchema"
> value="Person"/>
>                                 <property name="databaseTable"
> value="Person"/>
> <property name="keyFields">
>                                     <list>
>                                         <bean
> class="org.apache.ignite.cache.store.jdbc.JdbcTypeField">
>                                             <constructor-arg>
>                                                 <util:constant
> static-field="java.sql.Types.INTEGER"/>
>                                             </constructor-arg>
>                                             <constructor-arg value="ID"/>
>                                             <constructor-arg value="int"/>
>                                             <constructor-arg value="id"/>
>                                         </bean>
>                                     </list>
>                                 </property>
>                                 <property name="valueFields">
>                                     <list>
>                                         <bean
> class="org.apache.ignite.cache.store.jdbc.JdbcTypeField">
>                                             <constructor-arg>
>                                                 <util:constant
> static-field="java.sql.Types.INTEGER"/>
>                                             </constructor-arg>
>                                             <constructor-arg value="ID"/>
>                                             <constructor-arg value="int"/>
>                                             <constructor-arg value="Id"/>
>                                         </bean>
> <bean class="org.apache.ignite.cache.store.jdbc.JdbcTypeField">
>                                             <constructor-arg>
>                                                 <util:constant
> static-field="java.sql.Types.VARCHAR"/>
>                                             </constructor-arg>
>                                             <constructor-arg value="NAME"/>
>                                             <constructor-arg
> value="java.lang.String"/>
>                                             <constructor-arg
> value="Name"/></bean>
>                                     </list>
>                                 </property>
>                             </bean>
>                         </list>
>                     </property>
>                 </bean>
>             </property>
> <property name="readThrough" value="true"/>
>             <property name="writeThrough" value="true"/>
>
>           <property name="queryEntities">
>             <list>
>               <bean class="org.apache.ignite.cache.QueryEntity">
>                 <property name="keyType" value="java.lang.Integer"/>
>                 <property name="valueType" value="Person"/>
> <property name="fields">
>                             <map>
>                                 <entry key="Id" value="java.lang.Integer"/>
>                                 <entry key="Name"
> value="java.lang.String"/>
>                             </map>
>                         </property>
>
>               </bean>
>             </list>
>           </property>
>         </bean>
>       </list>
>     </property>
> <property name="discoverySpi">
>             <bean
> class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
>                 <property name="ipFinder">
>                     <bean
> class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.
> TcpDiscoveryVmIpFinder">
>                         <property name="addresses">
>                             <list>
>                                 <value>127.0.0.1:47500..47509</value>
>                             </list>
>                         </property>
>                     </bean>
>                 </property>
>                 <property name="socketTimeout" value="300" />
>             </bean>
>         </property>
>             </bean>
>         </beans>
>
>
>
>
> --
> View this message in context: http://apache-ignite-users.
> 70518.x6.nabble.com/ODBC-driver-installation-error-tp11232p11454.html
> Sent from the Apache Ignite Users mailing list archive at Nabble.com.
>

Reply via email to