Unit test fails after upgrading to Kodo 4.0.0 from 4.0.0-EA4

I have a group of 6 unit tests failing after upgrading to the new Kodo
4.0.0 (with BEA) from Kodo-4.0.0-EA4 (with Solarmetric). I'm getting
exceptions like the one at the bottom of this email. It seems to be an
interaction with the PostgreSQL driver, though I can't be sure. I
haven't changed my JDO configuration or the related classes in months
since I've been focusing on using the objects that have already been
defined. The .jdo, .jdoquery, and .java code are below the exception,
just in case there's something wrong in there. Does anyone have advice
as to how I might debug this?
Thanks,
Mark
Testsuite: edu.ucsc.whisper.test.integration.UserManagerQueryIntegrationTest
Tests run: 15, Failures: 0, Errors: 6, Time elapsed: 23.308 sec
Testcase:
testGetAllUsersWithFirstName(edu.ucsc.whisper.test.integration.UserManagerQueryIntegrationTest):
Caused an ERROR
The column index is out of range: 2, number of columns: 1.
<2|false|4.0.0> kodo.jdo.DataStoreException: The column index is out of
range: 2, number of columns: 1.
at
kodo.jdbc.sql.DBDictionary.newStoreException(DBDictionary.java:4092)
at kodo.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:82)
at kodo.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:66)
at kodo.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:46)
at
kodo.jdbc.kernel.SelectResultObjectProvider.handleCheckedException(SelectResultObjectProvider.java:176)
at
kodo.kernel.QueryImpl$PackingResultObjectProvider.handleCheckedException(QueryImpl.java:2460)
at
com.solarmetric.rop.EagerResultList.<init>(EagerResultList.java:32)
at kodo.kernel.QueryImpl.toResult(QueryImpl.java:1445)
at kodo.kernel.QueryImpl.execute(QueryImpl.java:1136)
at kodo.kernel.QueryImpl.execute(QueryImpl.java:901)
at kodo.kernel.QueryImpl.execute(QueryImpl.java:865)
at kodo.kernel.DelegatingQuery.execute(DelegatingQuery.java:787)
at kodo.jdo.QueryImpl.executeWithArray(QueryImpl.java:210)
at kodo.jdo.QueryImpl.execute(QueryImpl.java:137)
at
edu.ucsc.whisper.core.dao.JdoUserDao.findAllUsersWithFirstName(JdoUserDao.java:232)
at
edu.ucsc.whisper.core.manager.DefaultUserManager.getAllUsersWithFirstName(DefaultUserManager.java:252)
NestedThrowablesStackTrace:
org.postgresql.util.PSQLException: The column index is out of range: 2,
number of columns: 1.
at
org.postgresql.core.v3.SimpleParameterList.bind(SimpleParameterList.java:57)
at
org.postgresql.core.v3.SimpleParameterList.setLiteralParameter(SimpleParameterList.java:101)
at
org.postgresql.jdbc2.AbstractJdbc2Statement.bindLiteral(AbstractJdbc2Statement.java:2085)
at
org.postgresql.jdbc2.AbstractJdbc2Statement.setInt(AbstractJdbc2Statement.java:1133)
at
com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
at
com.solarmetric.jdbc.PoolConnection$PoolPreparedStatement.setInt(PoolConnection.java:440)
at
com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
at
com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
at
com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
at
com.solarmetric.jdbc.LoggingConnectionDecorator$LoggingConnection$LoggingPreparedStatement.setInt(LoggingConnectionDecorator.java:1
257)
at
com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
at
com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
at kodo.jdbc.sql.DBDictionary.setInt(DBDictionary.java:980)
at kodo.jdbc.sql.DBDictionary.setUnknown(DBDictionary.java:1299)
at kodo.jdbc.sql.SQLBuffer.setParameters(SQLBuffer.java:638)
at kodo.jdbc.sql.SQLBuffer.prepareStatement(SQLBuffer.java:539)
at kodo.jdbc.sql.SQLBuffer.prepareStatement(SQLBuffer.java:512)
at kodo.jdbc.sql.SelectImpl.execute(SelectImpl.java:332)
at kodo.jdbc.sql.SelectImpl.execute(SelectImpl.java:301)
at kodo.jdbc.sql.Union$UnionSelect.execute(Union.java:642)
at kodo.jdbc.sql.Union.execute(Union.java:326)
at kodo.jdbc.sql.Union.execute(Union.java:313)
at
kodo.jdbc.kernel.SelectResultObjectProvider.open(SelectResultObjectProvider.java:98)
at
kodo.kernel.QueryImpl$PackingResultObjectProvider.open(QueryImpl.java:2405)
at
com.solarmetric.rop.EagerResultList.<init>(EagerResultList.java:22)
at kodo.kernel.QueryImpl.toResult(QueryImpl.java:1445)
at kodo.kernel.QueryImpl.execute(QueryImpl.java:1136)
at kodo.kernel.QueryImpl.execute(QueryImpl.java:901)
at kodo.kernel.QueryImpl.execute(QueryImpl.java:865)
at kodo.kernel.DelegatingQuery.execute(DelegatingQuery.java:787)
at kodo.jdo.QueryImpl.executeWithArray(QueryImpl.java:210)
at kodo.jdo.QueryImpl.execute(QueryImpl.java:137)
at
edu.ucsc.whisper.core.dao.JdoUserDao.findAllUsersWithFirstName(JdoUserDao.java:232)
--- DefaultUser.java -------------------------------------------------
public class DefaultUser
implements User
/** The account username. */
private String username;
/** The account password. */
private String password;
/** A flag indicating whether or not the account is enabled. */
private boolean enabled;
/** The authorities granted to this account. */
private Set<Authority> authorities;
/** Information about the user, including their name and text that
describes them. */
private UserInfo userInfo;
/** The set of organizations where this user works. */
private Set<Organization> organizations;
--- DefaultUser.jdo --------------------------------------------------
<?xml version="1.0"?>
<!DOCTYPE jdo PUBLIC
"-//Sun Microsystems, Inc.//DTD Java Data Objects Metadata 2.0//EN"
"http://java.sun.com/dtd/jdo_2_0.dtd">
<jdo>
<package name="edu.ucsc.whisper.core">
<sequence name="user_id_seq"
factory-class="native(Sequence=user_id_seq)"/>
<class name="DefaultUser" detachable="true"
table="whisper_user" identity-type="datastore">
<datastore-identity sequence="user_id_seq" column="userId"/>
<field name="username">
<column name="username" length="80" jdbc-type="VARCHAR" />
</field>
<field name="password">
<column name="password" length="40" jdbc-type="CHAR" />
</field>
<field name="enabled">
<column name="enabled" />
</field>
<field name="userInfo" persistence-modifier="persistent"
default-fetch-group="true" dependent="true">
<extension vendor-name="jpox"
key="implementation-classes"
value="edu.ucsc.whisper.core.DefaultUserInfo" />
<extension vendor-name="kodo"
key="type"
value="edu.ucsc.whisper.core.DefaultUserInfo" />
</field>
<field name="authorities" persistence-modifier="persistent"
table="user_authorities"
default-fetch-group="true">
<collection
element-type="edu.ucsc.whisper.core.DefaultAuthority" />
<join column="userId" delete-action="cascade"/>
<element column="authorityId" delete-action="cascade"/>
</field>
<field name="organizations" persistence-modifier="persistent"
table="user_organizations" mapped-by="user"
default-fetch-group="true" dependent="true">
<collection
element-type="edu.ucsc.whisper.core.DefaultOrganization"
dependent-element="true"/>
<join column="userId"/>
<!--<element column="organizationId"/>-->
</field>
</class>
</package>
</jdo>
--- DefaultUser.jdoquery ---------------------------------------------
<?xml version="1.0"?>
<!DOCTYPE jdo PUBLIC
"-//Sun Microsystems, Inc.//DTD Java Data Objects Metadata 2.0//EN"
"http://java.sun.com/dtd/jdo_2_0.dtd">
<jdo>
<package name="edu.ucsc.whisper.core">
<class name="DefaultUser">
<query name="UserByUsername"
language="javax.jdo.query.JDOQL"><![CDATA[
SELECT UNIQUE FROM edu.ucsc.whisper.core.DefaultUser
WHERE username==searchName
PARAMETERS java.lang.String searchName
]]></query>
<query name="DisabledUsers"
language="javax.jdo.query.JDOQL"><![CDATA[
SELECT FROM edu.ucsc.whisper.core.DefaultUser WHERE
enabled==false
]]></query>
<query name="EnabledUsers"
language="javax.jdo.query.JDOQL"><![CDATA[
SELECT FROM edu.ucsc.whisper.core.DefaultUser WHERE
enabled==true
]]></query>
<query name="CountUsers"
language="javax.jdo.query.JDOQL"><![CDATA[
SELECT count( this ) FROM edu.ucsc.whisper.core.DefaultUser
]]></query>
</class>
</package>
</jdo>

I'm sorry, I have no idea. I suggest sending a test case that
reproduces the problem to support.

Similar Messages

  • Managed Server Startup failed after upgrade to 11.1.1.6 from 11.1.1.4

    We tried to upgrade from SOA Suite 11.1.1.4 to 11.1.1.6.
    After upgrade when we tried to start our managed servers we get the below error. Did anyone ran into this? If so how did you resolve it?.
    Its still referring to some Weblogic 10.3.4 libraries. We were not able to find out where..
    <Mar 22, 2012 3:21:29 PM CDT> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: java.lang.AssertionError: java.lang.ClassNotFoundException: weblogic.jndi.internal.ServerNamingNode_1034_WLStub
    java.lang.AssertionError: java.lang.ClassNotFoundException: weblogic.jndi.internal.ServerNamingNode_1034_WLStub
    at weblogic.jndi.WLInitialContextFactoryDelegate.newRootNamingNodeStub(WLInitialContextFactoryDelegate.java:610)
    at weblogic.jndi.WLInitialContextFactoryDelegate.newRemoteContext(WLInitialContextFactoryDelegate.java:577)
    at weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialContextFactoryDelegate.java:482)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:376)
    at weblogic.jndi.Environment.getContext(Environment.java:315) Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: weblogic.jndi.internal.ServerNamingNode_1034_WLStub at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.net.URLClassLoader.findClass(URLClassLoader.java:190) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:247) Truncated. see log file for complete stacktrace>
    The WebLogic Server encountered a critical failure
    Reason: Failed to load stub for class class weblogic.server.RemoteLifeCycleOperationsImpl
    Exception in thread "Main Thread" java.lang.AssertionError: Failed to load stub for class class weblogic.server.RemoteLifeCycleOperationsImpl at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:145) at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:124) at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:427) at weblogic.jndi.Environment.getInitialReference(Environment.java:245) at weblogic.server.ServerLifeCycleRuntime.getLifeCycleOperationsRemote(ServerLifeCycleRuntime.java:1083) at weblogic.t3.srvr.ServerRuntime.sendStateToAdminServer(ServerRuntime.java:429) at weblogic.t3.srvr.ServerRuntime.updateRunState(ServerRuntime.java:415)
    at weblogic.t3.srvr.T3Srvr.setState(T3Srvr.java:206) at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:482) at weblogic.Server.main(Server.java:71)
    Thanks,
    Jp

    Hi,
    I found an oracle note with the next solution:
    Add -Xverify:none to the JVM Arguments in the WebLogic console if you're using Node Manager to start managed servers:
    1. Go into WebLogic Console
    2. Navigate to Environment> Servers> [Sever_name]> Server Start> Arguments
    3. Add -Xverify:none to the arguments
    4. Restart the WebLogic server
    5. Retest the issue.
    6. Migrate the solution as appropriate to other environments.
    Or
    If you're not using Node Manager to start managed servers:
    Edit the WebLogic start-up script to add -Xverify:none to the JVM arguments
    See if it works for you
    Arik

  • [svn] 3718: Make sure the server is stopped even when a unit test fails.

    Revision: 3718
    Author: [email protected]
    Date: 2008-10-17 13:03:17 -0700 (Fri, 17 Oct 2008)
    Log Message:
    Make sure the server is stopped even when a unit test fails. Thanks to Alex for the fix.
    Modified Paths:
    blazeds/trunk/modules/core/build.xml

    I had the same issue after upgrading from 10.7.2 to 10.7.3 and changing my main SSL cert.
    The solution was to make sure the correct cert was listed in:
    /etc/openldap/slapd.conf
    as well as:
    /etc/openldap/slapd.d/cn=config.ldif
    It looks as though the slapd.conf file gets updated properly when you select an SSL cert in the Server Admin app, but the cn=config.ldif does not. That is the one that was hanging my server up.
    Hope this helps!

  • Anybody know why superdrives fail after upgrading os

    anybody know why superdrives fail after upgrading os

    Upgrading the OS often also triggers issues with PRAM.  If the PRAM battery is over 4 years old, then the Superdrive can fail.    If it is under 4 years old, zapping it can fix some issues like these.

  • Exception in WLPI after upgrading to WLI 2.0 SP4 from SP2

    Environment is :
    WLS 6.0 SP2 and WLI 2.0 SP4 on Solaris 2.8.
    We get the following exception when the server starts up and tries to deploy
    wlpi-mdb-ejb.jar. This started only after upgrading to WLI 2.0 SP4 from WLI
    2.0 SP2.
    Any help will be highly appreciated.
    ####<Feb 12, 2002 6:08:49 PM PST> <Info> <J2EE> <spruce> <edevServer31>
    <main> <system> <> <160003> <Deployed : wlpi-master-ej
    b.jar>
    ####<Feb 12, 2002 6:08:49 PM PST> <Info> <EJB> <spruce> <edevServer31>
    <main> <system> <> <010008> <EJB Deploying file: wlpi-m
    db-ejb.jar>
    ####<Feb 12, 2002 6:08:50 PM PST> <Info> <EJB> <spruce> <edevServer31>
    <main> <system> <> <010052> <An exception occurred whil
    e creating the freepool.>
    java.rmi.RemoteException: Error in the bean's constructor : ; nested
    exception is:
    java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException:
    java.lang.ExceptionInInitializerError:
    weblogic.ejb20.internal.MethodPermissionEx
    ception: Security violation: insufficient permission to access method
    at
    weblogic.ejb20.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:91)
    at
    weblogic.ejb20.internal.StatelessEJBObject.preInvoke(StatelessEJBObject.java
    :55)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanEOImpl.getState(PluginManager
    CfgBeanEOImpl.java:1411)
    at
    com.bea.wlpi.server.plugin.PluginManagerImpl.refreshState(PluginManagerImpl.
    java:187)
    at
    com.bea.wlpi.server.plugin.PluginManagerImpl.<init>(PluginManagerImpl.java:1
    72)
    at
    com.bea.wlpi.server.eventprocessor.EventProcessor.<clinit>(EventProcessor.ja
    va:37)
    at
    com.bea.wlpi.server.eventlistener.EventListenerBean.ejbCreate(EventListenerB
    ean.java:47)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.ejb20.internal.MessageDrivenEJBHome.createBean(MessageDrivenEJBHome
    .java:297)
    at
    weblogic.ejb20.pool.MessageDrivenPool.createBean(MessageDrivenPool.java:98)
    at weblogic.ejb20.pool.Pool.createInitialBeans(Pool.java:100)
    at weblogic.ejb20.pool.Pool.<init>(Pool.java:74)
    at weblogic.ejb20.pool.EntityPool.<init>(EntityPool.java:34)
    at
    weblogic.ejb20.pool.MessageDrivenPool.<init>(MessageDrivenPool.java:43)
    at
    weblogic.ejb20.deployer.MessageDrivenBeanInfoImpl.getPool(MessageDrivenBeanI
    nfoImpl.java:336)
    at
    weblogic.ejb20.deployer.MessageDrivenBeanInfoImpl.deploy(MessageDrivenBeanIn
    foImpl.java:403)
    at
    weblogic.ejb20.deployer.Deployer.deployDescriptor(Deployer.java:1105)
    at weblogic.ejb20.deployer.Deployer.deploy(Deployer.java:908)
    at weblogic.j2ee.EJBComponent.deploy(EJBComponent.java:31)
    at weblogic.j2ee.Application.addComponent(Application.java:133)
    at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:115)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:327)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Deployment
    Target.java:277)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(D
    eploymentTarget.java:232)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(Deploym
    entTarget.java:192)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:562)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    48)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:439)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:180)
    at $Proxy0.updateDeployments(Unknown Source)
    Regards,
    Adarsh

    Hi Feng,
    In 2.0.10, we strictly evualuate the xpath queries:
    1. According to bpel spec 1.1 section 14.3, xpath queries should be absolute queries. you need to change query="//sessionID" to /cstaPrefix:iRequest/cstaPrefix:sessionID.
    2.If your xml documents are namespace aware then you must use qualified xpath queries. in your case you have to add prefix to your query like "/tns:disconnect_cstaRequest/tns:input. So please change the unqualified query //sessionId to qualified one by just prefixing. (Same rule goes for /xmlMessage query, please change all your queries to have prefix.)
    Here is the link to xpath spec which explains this in more detail.
    http://www.w3.org/TR/xpath#node-tests
    A QName in the node test is expanded into an expanded-name using the namespace
    declarations from the expression context. This is the same way expansion is
    done for element type names in start and end-tags except that the default
    namespace declared with xmlns is not used: if the QName does not have a
    prefix, then the namespace URI is null (this is the same way attribute names
    are expanded). It is an error if the QName has a prefix for which there is no
    namespace declaration in the expression context.

  • [SOLVED] Wireless connection fails after upgrade to dhcpcd 6.2.1

    After upgrade of dhcpcd 6.1.0  to 6.2.1 three days ago (pacman -Syu) my wireless connection fails: deauthenticating from ... by local choice (reason=3)
    # uname -a
    Linux localhost 3.12.9-2-ARCH #1 SMP PREEMPT Fri Jan 31 10:22:54 CET 2014 x86_64 GNU/Linux
    # dhcpcd --version
    dhcpcd 6.2.1
    Copyright (c) 2006-2014 Roy Marples
    # dmesg
    [  132.809506] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  133.863692] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  134.116365] r8169 0000:02:00.0 eth0: link down
    [  134.116479] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [  135.030954] wlan0: authenticate with a2:05:44:ff:33:a4
    [  135.041929] wlan0: send auth to a2:05:44:ff:33:a4 (try 1/3)
    [  135.045781] wlan0: authenticated
    [  135.045879] ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    [  135.046559] wlan0: associate with a2:05:44:ff:33:a4 (try 1/3)
    [  135.049960] wlan0: RX AssocResp from a2:05:44:ff:33:a4 (capab=0x431 status=0 aid=4)
    [  135.050609] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [  135.051337] wlan0: associated
    [  169.302610] wlan0: deauthenticating from a2:05:44:ff:33:a4 by local choice (reason=3)
    [  169.339662] cfg80211: Calling CRDA to update world regulatory domain
    [  169.396876] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  169.715612] r8169 0000:02:00.0 eth0: link down
    [  169.715702] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    Downgrade to dhcpcd 6.1.0 heals the problem.
    # dhcpcd --version
    dhcpcd 6.1.0
    Copyright (c) 2006-2013 Roy Marples
    In case it is related to ath9k:
    # modinfo ath9k
    filename:       
    /lib/modules/3.12.9-2-ARCH/kernel/drivers/net/wireless/ath/ath9k/ath9k.ko.gz
    I couldn't find a bug report on neither dhcpcd nor ath9k.
    Any idea what I can do to follow up on this?
    Last edited by nocreativity (2014-02-23 08:03:11)

    Here is an extract from journalctl (syslogs are empty):
    Feb 15 17:43:11 localhost dhcpcd[3068]: wlan0: soliciting a DHCP lease
    Feb 15 17:43:11 localhost dhcpcd[3068]: wlan0: IAID ca:59:49:5b
    Feb 15 17:43:11 localhost dhcpcd[3068]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:43:11 localhost dhcpcd[3068]: version 6.2.1 starting
    Feb 15 17:43:10 localhost kernel: wlan0: associated
    Feb 15 17:43:10 localhost kernel: wlan0: RX AssocResp from 00:1a:4f:8d:06:3b (capab=0x451 status=0 aid=2)
    Feb 15 17:43:10 localhost kernel: wlan0: associate with 00:1a:4f:8d:06:3b (try 1/3)
    Feb 15 17:43:10 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    Feb 15 17:43:10 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    Feb 15 17:43:10 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:43:10 localhost kernel: wlan0: authenticated
    Feb 15 17:43:10 localhost kernel: wlan0: send auth to 00:1a:4f:8d:06:3b (try 1/3)
    Feb 15 17:43:10 localhost kernel: wlan0: authenticate with 00:1a:4f:8d:06:3b
    Feb 15 17:43:08 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:43:08 localhost dhcpcd[3050]: dhcpcd not running
    Feb 15 17:43:08 localhost wicd[224]: dhcpcd[3050]: dhcpcd not running
    Feb 15 17:43:08 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:43:08 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:43:08 localhost dhcpcd[3042]: dhcpcd not running
    Feb 15 17:43:08 localhost wicd[224]: dhcpcd[3042]: dhcpcd not running
    Feb 15 17:43:08 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:43:08 localhost dhcpcd[3036]: dhcpcd not running
    Feb 15 17:43:08 localhost wicd[224]: Throttling dhcpcd[3036]: dhcpcd not running
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:41:16 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:40:22 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:40:22 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:40:21 localhost dhcpcd[2941]: dhcpcd not running
    Feb 15 17:40:21 localhost wicd[224]: dhcpcd[2941]: dhcpcd not running
    Feb 15 17:40:21 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:40:21 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:40:21 localhost dhcpcd[2934]: dhcpcd not running
    Feb 15 17:40:21 localhost wicd[224]: dhcpcd[2934]: dhcpcd not running
    Feb 15 17:40:18 localhost dhcpcd[2915]: exited
    Feb 15 17:40:18 localhost dhcpcd[2915]: timed out
    Feb 15 17:39:48 localhost dhcpcd[2915]: wlan0: soliciting a DHCP lease
    Feb 15 17:39:48 localhost dhcpcd[2915]: wlan0: IAID ca:59:49:5b
    Feb 15 17:39:48 localhost dhcpcd[2915]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:39:48 localhost dhcpcd[2915]: version 6.2.1 starting
    Feb 15 17:39:47 localhost kernel: wlan0: associated
    Feb 15 17:39:47 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=5)
    Feb 15 17:39:47 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:39:47 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:39:47 localhost kernel: wlan0: authenticated
    Feb 15 17:39:47 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:39:47 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:39:45 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:39:45 localhost dhcpcd[2897]: dhcpcd not running
    Feb 15 17:39:45 localhost wicd[224]: dhcpcd[2897]: dhcpcd not running
    Feb 15 17:39:45 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:39:45 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:39:45 localhost dhcpcd[2889]: dhcpcd not running
    Feb 15 17:39:45 localhost wicd[224]: dhcpcd[2889]: dhcpcd not running
    Feb 15 17:39:45 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:39:45 localhost dhcpcd[2883]: dhcpcd not running
    Feb 15 17:39:45 localhost wicd[224]: dhcpcd[2883]: dhcpcd not running
    Feb 15 17:36:59 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:36:59 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:36:58 localhost dhcpcd[2773]: dhcpcd not running
    Feb 15 17:36:58 localhost wicd[224]: dhcpcd[2773]: dhcpcd not running
    Feb 15 17:36:58 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:36:58 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:36:58 localhost dhcpcd[2766]: dhcpcd not running
    Feb 15 17:36:58 localhost wicd[224]: dhcpcd[2766]: dhcpcd not running
    Feb 15 17:36:56 localhost dhcpcd[2750]: exited
    Feb 15 17:36:56 localhost dhcpcd[2750]: timed out
    Feb 15 17:36:26 localhost dhcpcd[2750]: wlan0: soliciting a DHCP lease
    Feb 15 17:36:26 localhost dhcpcd[2750]: wlan0: IAID ca:59:49:5b
    Feb 15 17:36:26 localhost dhcpcd[2750]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:36:25 localhost dhcpcd[2750]: version 6.2.1 starting
    Feb 15 17:36:24 localhost kernel: wlan0: associated
    Feb 15 17:36:24 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=4)
    Feb 15 17:36:24 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:36:24 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:36:24 localhost kernel: wlan0: authenticated
    Feb 15 17:36:24 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:36:24 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:36:22 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:36:22 localhost dhcpcd[2730]: dhcpcd not running
    Feb 15 17:36:22 localhost wicd[224]: dhcpcd[2730]: dhcpcd not running
    Feb 15 17:36:22 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:36:22 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:36:22 localhost dhcpcd[2722]: dhcpcd not running
    Feb 15 17:36:22 localhost wicd[224]: dhcpcd[2722]: dhcpcd not running
    Feb 15 17:36:22 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:36:22 localhost dhcpcd[2716]: dhcpcd not running
    Feb 15 17:36:22 localhost wicd[224]: dhcpcd[2716]: dhcpcd not running
    Feb 15 17:35:09 localhost kernel: usb 3-1: dtv_property_legacy_params_sync: doesn't know how to handle a DVBv3 call to delivery system 0
    Feb 15 17:33:49 localhost kernel: usb 3-1: dtv_property_legacy_params_sync: doesn't know how to handle a DVBv3 call to delivery system 0
    Feb 15 17:33:36 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:33:36 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:33:36 localhost dhcpcd[2625]: dhcpcd not running
    Feb 15 17:33:36 localhost wicd[224]: dhcpcd[2625]: dhcpcd not running
    Feb 15 17:33:35 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:33:35 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:33:35 localhost dhcpcd[2617]: dhcpcd not running
    Feb 15 17:33:35 localhost wicd[224]: dhcpcd[2617]: dhcpcd not running
    Feb 15 17:33:32 localhost dhcpcd[2602]: exited
    Feb 15 17:33:32 localhost dhcpcd[2602]: timed out
    Feb 15 17:33:02 localhost dhcpcd[2602]: wlan0: soliciting a DHCP lease
    Feb 15 17:33:02 localhost dhcpcd[2602]: wlan0: IAID ca:59:49:5b
    Feb 15 17:33:02 localhost dhcpcd[2602]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:33:02 localhost dhcpcd[2602]: version 6.2.1 starting
    Feb 15 17:33:01 localhost kernel: wlan0: associated
    Feb 15 17:33:01 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:33:01 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:33:01 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:33:01 localhost kernel: wlan0: authenticated
    Feb 15 17:33:01 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:33:01 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:32:59 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:32:59 localhost dhcpcd[2583]: dhcpcd not running
    Feb 15 17:32:59 localhost wicd[224]: dhcpcd[2583]: dhcpcd not running
    Feb 15 17:32:59 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:32:59 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:32:59 localhost dhcpcd[2575]: dhcpcd not running
    Feb 15 17:32:59 localhost wicd[224]: dhcpcd[2575]: dhcpcd not running
    Feb 15 17:32:59 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:32:59 localhost dhcpcd[2569]: dhcpcd not running
    Feb 15 17:32:59 localhost wicd[224]: dhcpcd[2569]: dhcpcd not running
    Feb 15 17:30:13 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:30:13 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:30:12 localhost dhcpcd[2489]: dhcpcd not running
    Feb 15 17:30:12 localhost wicd[224]: dhcpcd[2489]: dhcpcd not running
    Feb 15 17:30:12 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:30:12 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:30:12 localhost dhcpcd[2481]: dhcpcd not running
    Feb 15 17:30:12 localhost wicd[224]: dhcpcd[2481]: dhcpcd not running
    Feb 15 17:30:09 localhost dhcpcd[2447]: exited
    Feb 15 17:30:09 localhost dhcpcd[2447]: timed out
    Feb 15 17:29:39 localhost dhcpcd[2447]: wlan0: soliciting a DHCP lease
    Feb 15 17:29:39 localhost dhcpcd[2447]: wlan0: IAID ca:59:49:5b
    Feb 15 17:29:39 localhost dhcpcd[2447]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:29:39 localhost dhcpcd[2447]: version 6.2.1 starting
    Feb 15 17:29:38 localhost kernel: wlan0: associated
    Feb 15 17:29:38 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:29:38 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:29:38 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:29:38 localhost kernel: wlan0: authenticated
    Feb 15 17:29:38 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:29:38 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:29:36 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:29:36 localhost dhcpcd[2429]: dhcpcd not running
    Feb 15 17:29:36 localhost wicd[224]: dhcpcd[2429]: dhcpcd not running
    Feb 15 17:29:36 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:29:36 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:29:36 localhost dhcpcd[2421]: dhcpcd not running
    Feb 15 17:29:36 localhost wicd[224]: dhcpcd[2421]: dhcpcd not running
    Feb 15 17:29:36 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:29:36 localhost dhcpcd[2415]: dhcpcd not running
    Feb 15 17:29:36 localhost wicd[224]: dhcpcd[2415]: dhcpcd not running
    Feb 15 17:26:50 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:26:50 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:26:49 localhost dhcpcd[2323]: dhcpcd not running
    Feb 15 17:26:49 localhost wicd[224]: dhcpcd[2323]: dhcpcd not running
    Feb 15 17:26:49 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:26:49 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:26:49 localhost dhcpcd[2316]: dhcpcd not running
    Feb 15 17:26:49 localhost wicd[224]: dhcpcd[2316]: dhcpcd not running
    Feb 15 17:26:46 localhost dhcpcd[2288]: exited
    Feb 15 17:26:46 localhost dhcpcd[2288]: timed out
    Feb 15 17:26:16 localhost dhcpcd[2288]: wlan0: soliciting a DHCP lease
    Feb 15 17:26:16 localhost dhcpcd[2288]: wlan0: IAID ca:59:49:5b
    Feb 15 17:26:16 localhost dhcpcd[2288]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:26:16 localhost dhcpcd[2288]: version 6.2.1 starting
    Feb 15 17:26:15 localhost kernel: wlan0: associated
    Feb 15 17:26:15 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:26:15 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:26:15 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:26:15 localhost kernel: wlan0: authenticated
    Feb 15 17:26:15 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:26:15 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:26:13 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:26:13 localhost dhcpcd[2269]: dhcpcd not running
    Feb 15 17:26:13 localhost wicd[224]: dhcpcd[2269]: dhcpcd not running
    Feb 15 17:26:13 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:26:13 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:26:13 localhost dhcpcd[2261]: dhcpcd not running
    Feb 15 17:26:13 localhost wicd[224]: dhcpcd[2261]: dhcpcd not running
    Feb 15 17:26:13 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:26:13 localhost dhcpcd[2255]: dhcpcd not running
    Feb 15 17:26:13 localhost wicd[224]: dhcpcd[2255]: dhcpcd not running
    Feb 15 17:25:07 localhost kernel: usb 3-1: dtv_property_legacy_params_sync: doesn't know how to handle a DVBv3 call to delivery system 0
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Throttling autoreconnect
    Feb 15 17:25:06 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:25:06 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:25:06 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:25:06 localhost wicd[224]: Starting automatic reconnect process
    Feb 15 17:23:27 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:23:27 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:23:26 localhost dhcpcd[2174]: dhcpcd not running
    Feb 15 17:23:26 localhost wicd[224]: dhcpcd[2174]: dhcpcd not running
    Feb 15 17:23:26 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:23:26 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:23:26 localhost dhcpcd[2166]: dhcpcd not running
    Feb 15 17:23:26 localhost wicd[224]: dhcpcd[2166]: dhcpcd not running
    Feb 15 17:23:23 localhost dhcpcd[2151]: exited
    Feb 15 17:23:23 localhost dhcpcd[2151]: timed out
    Feb 15 17:22:53 localhost dhcpcd[2151]: wlan0: soliciting a DHCP lease
    Feb 15 17:22:53 localhost dhcpcd[2151]: wlan0: IAID ca:59:49:5b
    Feb 15 17:22:53 localhost dhcpcd[2151]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:22:53 localhost dhcpcd[2151]: version 6.2.1 starting
    Feb 15 17:22:52 localhost kernel: wlan0: associated
    Feb 15 17:22:52 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:22:52 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:22:52 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:22:52 localhost kernel: wlan0: authenticated
    Feb 15 17:22:52 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:22:52 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:22:50 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:22:50 localhost dhcpcd[2132]: dhcpcd not running
    Feb 15 17:22:50 localhost wicd[224]: dhcpcd[2132]: dhcpcd not running
    Feb 15 17:22:50 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:22:50 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:22:50 localhost dhcpcd[2124]: dhcpcd not running
    Feb 15 17:22:50 localhost wicd[224]: dhcpcd[2124]: dhcpcd not running
    Feb 15 17:22:50 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:22:50 localhost dhcpcd[2118]: dhcpcd not running
    Feb 15 17:22:50 localhost wicd[224]: dhcpcd[2118]: dhcpcd not running
    Feb 15 17:20:04 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:20:04 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:20:03 localhost dhcpcd[2028]: dhcpcd not running
    Feb 15 17:20:03 localhost wicd[224]: dhcpcd[2028]: dhcpcd not running
    Feb 15 17:20:03 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:20:03 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:20:03 localhost dhcpcd[2020]: dhcpcd not running
    Feb 15 17:20:03 localhost wicd[224]: dhcpcd[2020]: dhcpcd not running
    Feb 15 17:20:00 localhost dhcpcd[2003]: exited
    Feb 15 17:20:00 localhost dhcpcd[2003]: timed out
    Feb 15 17:19:30 localhost dhcpcd[2003]: wlan0: soliciting a DHCP lease
    Feb 15 17:19:30 localhost dhcpcd[2003]: wlan0: IAID ca:59:49:5b
    Feb 15 17:19:30 localhost dhcpcd[2003]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:19:30 localhost dhcpcd[2003]: version 6.2.1 starting
    Feb 15 17:19:29 localhost kernel: wlan0: associated
    Feb 15 17:19:29 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:19:29 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:19:29 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:19:29 localhost kernel: wlan0: authenticated
    Feb 15 17:19:29 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:19:29 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:19:27 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:19:27 localhost dhcpcd[1985]: dhcpcd not running
    Feb 15 17:19:27 localhost wicd[224]: dhcpcd[1985]: dhcpcd not running
    Feb 15 17:19:27 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:19:27 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:19:27 localhost dhcpcd[1977]: dhcpcd not running
    Feb 15 17:19:27 localhost wicd[224]: dhcpcd[1977]: dhcpcd not running
    Feb 15 17:19:27 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:19:27 localhost dhcpcd[1971]: dhcpcd not running
    Feb 15 17:19:27 localhost wicd[224]: dhcpcd[1971]: dhcpcd not running
    Feb 15 17:16:41 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:16:41 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:16:40 localhost dhcpcd[1871]: dhcpcd not running
    Feb 15 17:16:40 localhost wicd[224]: dhcpcd[1871]: dhcpcd not running
    Feb 15 17:16:40 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:16:40 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:16:40 localhost dhcpcd[1863]: dhcpcd not running
    Feb 15 17:16:40 localhost wicd[224]: dhcpcd[1863]: dhcpcd not running
    Feb 15 17:16:37 localhost dhcpcd[1848]: exited
    Feb 15 17:16:37 localhost dhcpcd[1848]: timed out
    Feb 15 17:16:07 localhost dhcpcd[1848]: wlan0: soliciting a DHCP lease
    Feb 15 17:16:07 localhost dhcpcd[1848]: wlan0: IAID ca:59:49:5b
    Feb 15 17:16:07 localhost dhcpcd[1848]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:16:07 localhost dhcpcd[1848]: version 6.2.1 starting
    Feb 15 17:16:06 localhost kernel: wlan0: associated
    Feb 15 17:16:06 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:16:06 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:16:06 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:16:06 localhost kernel: wlan0: authenticated
    Feb 15 17:16:06 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:16:06 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:16:04 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:16:04 localhost dhcpcd[1829]: dhcpcd not running
    Feb 15 17:16:04 localhost wicd[224]: dhcpcd[1829]: dhcpcd not running
    Feb 15 17:16:04 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:16:04 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:16:04 localhost dhcpcd[1821]: dhcpcd not running
    Feb 15 17:16:04 localhost wicd[224]: dhcpcd[1821]: dhcpcd not running
    Feb 15 17:16:04 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:16:04 localhost dhcpcd[1815]: dhcpcd not running
    Feb 15 17:16:04 localhost wicd[224]: dhcpcd[1815]: dhcpcd not running
    Feb 15 17:13:18 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:13:18 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:13:17 localhost dhcpcd[1723]: dhcpcd not running
    Feb 15 17:13:17 localhost wicd[224]: dhcpcd[1723]: dhcpcd not running
    Feb 15 17:13:17 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:13:17 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:13:17 localhost dhcpcd[1716]: dhcpcd not running
    Feb 15 17:13:17 localhost wicd[224]: dhcpcd[1716]: dhcpcd not running
    Feb 15 17:13:14 localhost dhcpcd[1697]: exited
    Feb 15 17:13:14 localhost dhcpcd[1697]: timed out
    Feb 15 17:12:44 localhost dhcpcd[1697]: wlan0: soliciting a DHCP lease
    Feb 15 17:12:44 localhost dhcpcd[1697]: wlan0: IAID ca:59:49:5b
    Feb 15 17:12:44 localhost dhcpcd[1697]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:12:44 localhost dhcpcd[1697]: version 6.2.1 starting
    Feb 15 17:12:43 localhost kernel: wlan0: associated
    Feb 15 17:12:43 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:12:43 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:12:43 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:12:43 localhost kernel: wlan0: authenticated
    Feb 15 17:12:43 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:12:43 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:12:41 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:12:41 localhost dhcpcd[1679]: dhcpcd not running
    Feb 15 17:12:41 localhost wicd[224]: dhcpcd[1679]: dhcpcd not running
    Feb 15 17:12:41 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:12:41 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:12:41 localhost dhcpcd[1671]: dhcpcd not running
    Feb 15 17:12:41 localhost wicd[224]: dhcpcd[1671]: dhcpcd not running
    Feb 15 17:12:41 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:12:41 localhost dhcpcd[1665]: dhcpcd not running
    Feb 15 17:12:41 localhost wicd[224]: dhcpcd[1665]: dhcpcd not running
    Feb 15 17:09:55 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:09:55 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:09:54 localhost dhcpcd[1567]: dhcpcd not running
    Feb 15 17:09:54 localhost wicd[224]: dhcpcd[1567]: dhcpcd not running
    Feb 15 17:09:54 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:09:54 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:09:54 localhost dhcpcd[1558]: dhcpcd not running
    Feb 15 17:09:54 localhost wicd[224]: dhcpcd[1558]: dhcpcd not running
    Feb 15 17:09:51 localhost dhcpcd[1539]: exited
    Feb 15 17:09:51 localhost dhcpcd[1539]: timed out
    Feb 15 17:09:21 localhost dhcpcd[1539]: wlan0: soliciting a DHCP lease
    Feb 15 17:09:21 localhost dhcpcd[1539]: wlan0: IAID ca:59:49:5b
    Feb 15 17:09:21 localhost dhcpcd[1539]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:09:21 localhost dhcpcd[1539]: version 6.2.1 starting
    Feb 15 17:09:20 localhost kernel: wlan0: associated
    Feb 15 17:09:20 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:09:20 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:09:20 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:09:20 localhost kernel: wlan0: authenticated
    Feb 15 17:09:20 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:09:20 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:09:19 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:09:19 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:09:19 localhost dhcpcd[1521]: dhcpcd not running
    Feb 15 17:09:19 localhost wicd[224]: dhcpcd[1521]: dhcpcd not running
    Feb 15 17:09:19 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:09:19 localhost dhcpcd[1515]: dhcpcd not running
    Feb 15 17:09:19 localhost wicd[224]: dhcpcd[1515]: dhcpcd not running
    Feb 15 17:09:18 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:09:18 localhost dhcpcd[1509]: dhcpcd not running
    Feb 15 17:09:18 localhost wicd[224]: dhcpcd[1509]: dhcpcd not running
    Feb 15 17:09:18 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:09:18 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:09:17 localhost dhcpcd[1501]: dhcpcd not running
    Feb 15 17:09:17 localhost wicd[224]: dhcpcd[1501]: dhcpcd not running
    Feb 15 17:09:17 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:09:17 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:09:17 localhost dhcpcd[1494]: dhcpcd not running
    Feb 15 17:09:17 localhost wicd[224]: dhcpcd[1494]: dhcpcd not running
    Feb 15 17:09:11 localhost dhcpcd[1476]: exited
    Feb 15 17:09:11 localhost dhcpcd[1476]: timed out
    Feb 15 17:08:41 localhost dhcpcd[1476]: wlan0: soliciting a DHCP lease
    Feb 15 17:08:41 localhost dhcpcd[1476]: wlan0: IAID ca:59:49:5b
    Feb 15 17:08:41 localhost dhcpcd[1476]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:08:41 localhost dhcpcd[1476]: version 6.2.1 starting
    Feb 15 17:08:40 localhost kernel: wlan0: associated
    Feb 15 17:08:40 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:08:40 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:08:40 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:08:40 localhost kernel: wlan0: authenticated
    Feb 15 17:08:40 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:08:40 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:08:39 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:08:39 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:08:39 localhost dhcpcd[1458]: dhcpcd not running
    Feb 15 17:08:39 localhost wicd[224]: dhcpcd[1458]: dhcpcd not running
    Feb 15 17:08:39 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:08:39 localhost dhcpcd[1452]: dhcpcd not running
    Feb 15 17:08:39 localhost wicd[224]: dhcpcd[1452]: dhcpcd not running
    Feb 15 17:08:38 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:08:38 localhost dhcpcd[1446]: dhcpcd not running
    Feb 15 17:08:38 localhost wicd[224]: dhcpcd[1446]: dhcpcd not running
    Feb 15 17:08:38 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:08:38 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:08:37 localhost dhcpcd[1438]: dhcpcd not running
    Feb 15 17:08:37 localhost wicd[224]: dhcpcd[1438]: dhcpcd not running
    Feb 15 17:08:37 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:08:37 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:08:37 localhost dhcpcd[1431]: dhcpcd not running
    Feb 15 17:08:37 localhost wicd[224]: dhcpcd[1431]: dhcpcd not running
    Feb 15 17:08:37 localhost kernel: wlan0: associated
    Feb 15 17:08:37 localhost kernel: wlan0: RX AssocResp from a2:05:43:f9:33:a4 (capab=0x431 status=0 aid=2)
    Feb 15 17:08:37 localhost kernel: wlan0: associate with a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:08:37 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:08:37 localhost kernel: wlan0: authenticated
    Feb 15 17:08:37 localhost kernel: wlan0: send auth to a2:05:43:f9:33:a4 (try 1/3)
    Feb 15 17:08:37 localhost kernel: wlan0: authenticate with a2:05:43:f9:33:a4
    Feb 15 17:08:37 localhost kernel: wlan0: deauthenticating from 00:1a:4f:8d:06:3b by local choice (reason=3)
    Feb 15 17:08:31 localhost dhcpcd[1280]: exited
    Feb 15 17:08:31 localhost dhcpcd[1280]: timed out
    Feb 15 17:08:01 localhost dhcpcd[1280]: wlan0: soliciting a DHCP lease
    Feb 15 17:08:01 localhost dhcpcd[1280]: wlan0: IAID ca:59:49:5b
    Feb 15 17:08:01 localhost dhcpcd[1280]: DUID 00:01:00:01:19:8e:1d:14:00:08:ca:59:49:5b
    Feb 15 17:08:01 localhost dhcpcd[1280]: version 6.2.1 starting
    Feb 15 17:08:00 localhost kernel: wlan0: associated
    Feb 15 17:08:00 localhost kernel: wlan0: RX AssocResp from 00:1a:4f:8d:06:3b (capab=0x451 status=0 aid=1)
    Feb 15 17:08:00 localhost kernel: wlan0: associate with 00:1a:4f:8d:06:3b (try 1/3)
    Feb 15 17:08:00 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    Feb 15 17:08:00 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    Feb 15 17:08:00 localhost kernel: ath9k 0000:04:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    Feb 15 17:08:00 localhost kernel: wlan0: authenticated
    Feb 15 17:08:00 localhost kernel: wlan0: send auth to 00:1a:4f:8d:06:3b (try 1/3)
    Feb 15 17:08:00 localhost kernel: wlan0: authenticate with 00:1a:4f:8d:06:3b
    Feb 15 17:07:59 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:07:59 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:07:59 localhost dhcpcd[1250]: dhcpcd not running
    Feb 15 17:07:59 localhost wicd[224]: dhcpcd[1250]: dhcpcd not running
    Feb 15 17:07:59 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:07:59 localhost dhcpcd[1244]: dhcpcd not running
    Feb 15 17:07:59 localhost wicd[224]: dhcpcd[1244]: dhcpcd not running
    Feb 15 17:07:58 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: wlan0 error: No such file or directory
    Feb 15 17:07:58 localhost dhcpcd[1234]: dhcpcd not running
    Feb 15 17:07:58 localhost wicd[224]: dhcpcd[1234]: dhcpcd not running
    Feb 15 17:07:58 localhost wicd[224]: Failed to connect to non-global ctrl_ifname: eth0 error: No such file or directory
    Feb 15 17:07:58 localhost kernel: r8169 0000:02:00.0 eth0: link down
    Feb 15 17:07:57 localhost dhcpcd[1224]: dhcpcd not running
    Feb 15 17:07:57 localhost wicd[224]: dhcpcd[1224]: dhcpcd not running
    Feb 15 17:07:57 localhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 15 17:07:57 localhost kernel: wlan0: deauthenticating from a2:05:43:f9:33:a4 by local choice (reason=3)
    Feb 15 17:07:57 localhost dhcpcd[1217]: dhcpcd not running
    Feb 15 17:07:57 localhost wicd[224]: dhcpcd[1217]: dhcpcd not running
    Feb 15 17:07:53 localhost dhcpcd[655]: exited
    Feb 15 17:07:53 localhost dhcpcd[655]: timed out
    Feb 15 17:07:34 localhost dbus[227]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.NetworkManager.service': Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Feb 15 17:07:34 localhost dbus[227]: [system] Activating via systemd: service name='org.freedesktop.NetworkManager' unit='dbus-org.freedesktop.NetworkManager.service'
    Feb 15 17:07:34 localhost dbus[227]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.NetworkManager.service': Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Feb 15 17:07:34 localhost dbus[227]: [system] Activating via systemd: service name='org.freedesktop.NetworkManager' unit='dbus-org.freedesktop.NetworkManager.service'
    Feb 15 17:07:32 localhost dbus[227]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service failed to load: No such file or directory.
    Feb 15 17:07:32 localhost dbus[227]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Feb 15 17:07:32 localhost gnome-session[686]: ** (nm-applet:913): WARNING **: fetch_connections_done: error fetching connections: (32) Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory..
    Feb 15 17:07:32 localhost dbus[227]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.NetworkManager.service': Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Feb 15 17:07:32 localhost dbus[227]: [system] Activating via systemd: service name='org.freedesktop.NetworkManager' unit='dbus-org.freedesktop.NetworkManager.service'
    Feb 15 17:07:32 localhost dbus[227]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service failed to load: No such file or directory.
    Feb 15 17:07:32 localhost dbus[227]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service'
    Feb 15 17:07:32 localhost gnome-session[686]: ** (nm-applet:913): WARNING **: Could not initialize NMClient /org/freedesktop/NetworkManager: Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Feb 15 17:07:32 localhost dbus[227]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.NetworkManager.service': Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Feb 15 17:07:32 localhost dbus[227]: [system] Activating via systemd: service name='org.freedesktop.NetworkManager' unit='dbus-org.freedesktop.NetworkManager.service'
    Feb 15 17:07:29 localhost dbus[227]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.NetworkManager.service': Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Feb 15 17:07:29 localhost dbus[227]: [system] Activating via systemd: service name='org.freedesktop.NetworkManager' unit='dbus-org.freedesktop.NetworkManager.service'
    Feb 15 17:07:28 localhost dhcpcd[655]: wlan0: soliciting a DHCP lease
    Feb 15 17:07:28 localhost dhcpcd[655]: wlan0: DHCP lease expired
    Feb 15 17:07:26 localhost dhcpcd[655]: wlan0: reject NAK via 192.168.178.1
    Feb 15 17:07:25 localhost dbus[227]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service failed to load: No such file or directory.
    Feb 15 17:07:25 localhost dbus[227]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Feb 15 17:07:25 localhost dbus[227]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service failed to load: No such file or directory.
    Feb 15 17:07:25 localhost dbus[227]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    I will try the lastst code installation 2morrow and let you know the results. Thanx for your involvement!
    Moderator edit [ewaller] Changed BBCode quote tags to code tags
    Last edited by ewaller (2014-02-16 20:19:55)

  • J2EE Start Failed after upgrade

    Hello Guys !
    I Have this problem since upgra SP22.
    #1.5 #005056AA79B8001C00000010000013CC000494B587D8095A#1289407295922#/System/Server##com.sap.engine.core.service630.container.ServiceRunner#######SAPEngine_System_Thread[impl:5]_55##0#0#Error#1#com.sap.engine.core.service630.container.ServiceRunner#Plain###Service com.sap.security.core.ume.service error. Nested exception is: com.sap.engine.frame.ServiceException: Start of UME service failed. Check help topic "Start of UME Service Failed". Technical details: Initialisation of connection pool failed for UACC
         poolname norfloxacino.ems.com.br:389_UACC
         [EXCEPTION: no connection to any server possible]
         at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:398)
         at com.sap.engine.frame.ApplicationFrameAdaptor.start(ApplicationFrameAdaptor.java:31)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:83)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:156)
    Caused by: com.sap.security.core.persistence.datasource.PersistenceException: Initialisation of connection pool failed for UACC
         poolname norfloxacino.ems.com.br:389_UACC
         [EXCEPTION: no connection to any server possible]
         at com.sap.security.core.persistence.datasource.imp.LDAPPersistence.init(LDAPPersistence.java:423)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactoryInstance.<init>(PrincipalDatabagFactoryInstance.java:440)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.newInstance(PrincipalDatabagFactory.java:164)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:117)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:63)
         at com.sap.security.core.InternalUMFactory.initializeUME(InternalUMFactory.java:221)
         at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:287)
         ... 6 more
    #1.5 #005056AA79B8001C00000012000013CC000494B587D80CC6#1289407295922#/System/Server##com.sap.engine.core.service630.container.ServiceRunner#######SAPEngine_System_Thread[impl:5]_55##0#0#Error#1#/System/Server#Plain###Core service com.sap.security.core.ume.service failed. J2EE Engine cannot be started.#
    #1.5 #005056AA79B8001C00000014000013CC000494B587D80E8E#1289407295922#/System/Server/Critical##com.sap.engine.core.Framework#######SAPEngine_System_Thread[impl:5]_55##0#0#Fatal#1#com.sap.engine.core.Framework#Plain###Critical shutdown was invoked. Reason is: Core service com.sap.security.core.ume.service failed. J2EE Engine cannot be started.#
    Does anyone have any idea about the error above?
    Thank you for your help!

    Hello
    Did the system really work well before the upgrade?
    and during/after the upgarde, did you changed any setting, especially regarding J2EE UME/ LDAP ?
    Could you please help to check the following defaulttrace for more information:
      ../j2ee/cluster/server0/log/defaultTrace.*.trc
    As per the error message you pasted here, the connection from your UME to the LDAP failed, so the core service of com.sap.engine.core.security.ume cannot startup.
    Hence the first check point should be the connectioin to your LDAP, please open the configtool and go to the "UEM LDAP Data" setting there carefully, then you can perform a
    "Test Connection" there.
    If the connection always fails, you can also download a LDAP browser from "http://www.ldapbrowser.com/download.htm", then
    test whether you are able to connect to the LDAP, if it also fails, I would like to suggest you check with your LDAP vendor to verify whether there is any problem at the LDAP server side.
    Thanks
    Thunder

  • Vpn fails after upgrade to 10.8.5

    After upgrading from SL to Mountain Lion the Apple vpn client connections fail. They were connecting fine before the upgrade. They also work fine from other computers (Windows) on my network to the same addresses, so the remote side is functioning, and there have been no changes on the remote side.
    The error message is "The L2TP-VPN server did not respond. Try reconnecting. If the problem continues, verify your settings and contact your Administrator." The Console messages indicate the server does in fact respond, but there is a problem with Phase 1 IKE. Message lines are pasted here with the IP addresses masked (the addresses are correct though).
    10/12/13 5:33:39.340 PM configd[18]: SCNC: start, triggered by SystemUIServer, type L2TP, status 0
    10/12/13 5:33:39.360 PM pppd[2104]: pppd 2.4.2 (Apple version 596.15.2) started by admin, uid 503
    10/12/13 5:33:39.363 PM pppd[2104]: L2TP connecting to server '999.999.999.999' (999.999.999.999)...
    10/12/13 5:33:39.363 PM pppd[2104]: IPSec connection started
    10/12/13 5:33:39.379 PM racoon[2105]: Connecting.
    10/12/13 5:33:39.380 PM racoon[2105]: IPSec Phase1 started (Initiated by me).
    10/12/13 5:33:39.380 PM racoon[2105]: IKE Packet: transmit success. (Initiator, Main-Mode message 1).
    10/12/13 5:33:39.465 PM racoon[2105]: IKE Packet: receive success. (Initiator, Main-Mode message 2).
    10/12/13 5:33:39.469 PM racoon[2105]: IKE Packet: transmit success. (Initiator, Main-Mode message 3).
    10/12/13 5:33:39.583 PM racoon[2105]: IKE Packet: receive success. (Initiator, Main-Mode message 4).
    10/12/13 5:33:39.588 PM racoon[2105]: IKE Packet: transmit success. (Initiator, Main-Mode message 5).
    10/12/13 5:33:42.671 PM racoon[2105]: IKE Packet: transmit success. (Phase1 Retransmit).
    10/12/13 5:33:45.754 PM racoon[2105]: IKE Packet: transmit success. (Phase1 Retransmit).
    10/12/13 5:33:45.760 PM racoon[2105]: Received retransmitted packet from 999.999.999.999[500].
    10/12/13 5:33:48.839 PM racoon[2105]: IKE Packet: transmit success. (Phase1 Retransmit).
    10/12/13 5:33:57.752 PM racoon[2105]: Received retransmitted packet from 999.999.999.999[500].
    10/12/13 5:34:00.832 PM racoon[2105]: IKE Packet: transmit success. (Phase1 Retransmit).
    10/12/13 5:34:09.465 PM pppd[2104]: IPSec connection failed
    10/12/13 5:34:09.466 PM racoon[2105]: IPSec disconnecting from server 999.999.999.999
    About the configuration -- the apple client is using preshared key with ppp user/password auth. The user/password and psk all work in other clients, have re-entered them many times, have deleted then recreated the connection in Network Preferences. Have restarted the racoon service, and even rebooted several times.
    Googled around and found a number of reports of similar problem after upgrade to Lion or Mountain Lion, haven't found anything that works so far. Have disabled my antivirus, have rebooted network router, have changed access control in Keychain Access to allow access from all applications. Can't change the remote side configuration because of other users, need to find a way to solve this on my client side. I do have backups that would allow me to roll back to Snow Leopard, but does anyone have any other solution, would like to have a better alternative. Appreciate any/all suggestions, thanks.

    Thanks again, good point. I wasn't doing this on first few tries but eventually realized I needed to clean up Keychain Access because of all the duplicates I created (orphans) so yes I did delete connection and corresponding keychains then recreate then change access. Along the way I noticed that every time I later applied a change to an existing connection setting I had to return to Keychain Access and change the access control settings again, they revert back to 'confirm' from 'all access' at each change. So even if it worked for me I realize it isn't a permanent fix.
    And iCloud is 'inactive', so I guess Back to My Mac is disabled too, I don't know that app but assume so since it needs iCloud. Is there a better way to be sure it can't interfere? I do think I'm getting some phase 1 traffic out and back to the remote server evidenced by the console log, so seems the ports are not being blocked.

  • Integration of APEX in OBIEE 11g fails after upgrade to APEX 4.2.1

    I used a document from the german APEX forum to integrate Oracle Business Intelligence 11g (OBIEE) with APEX.
    After login in OBIEE a APEX page will be called without login in APEX.
    The Document is called "APEX in Oracle Business Intelligence (Oracle BI) integrieren"
    http://www.oracle.com/webfolder/technetwork/de/community/apex/tipps/biee-apex/index.html
    In APEX 4.0 this worked great. After login in OBIEE I could call a APEX page without new login.
    But after upgrading to APEX 4.2.1 now the APEX login mask is displayed.
    OBIEE uses this function to create a APEX session and store the APEX session-id and username in the table apex_biee_session:
    -- Function GET_APEX_SESSION_ID
    -- sets up an APEX session for a BIEE user
    FUNCTION get_apex_session_id (p_username IN VARCHAR2,p_days_valid IN NUMBER DEFAULT 1) RETURN VARCHAR2
    IS
    pragma autonomous_transaction;
    l_session_id NUMBER;
    l_valid_to DATE;
    l_count NUMBER;
    l_password VARCHAR2(4000);
    BEGIN
    l_valid_to := SYSDATE + NVL(p_days_valid,1);
    -- Let us delete expired records:
    BEGIN
    DELETE FROM apex_biee_session
    WHERE valid_to < TRUNC(SYSDATE,'DD');
    COMMIT;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN NULL;
    END;
    -- get next APEX session id:
    l_session_id := apex_custom_auth.get_next_session_id;
    -- Insert the BIEE user and the APEX session id in table APEX_BIEE_SESSION
    INSERT INTO apex_biee_session (username, sessioN_id, valid_to)
    VALUES (UPPER(p_username),l_session_id,l_valid_to);
    COMMIT;
    -- define an APEX user session:
    apex_custom_auth.define_user_session(
    p_user => UPPER(p_username),
    p_session_id => l_session_id);
    htmldb_application.g_unrecoverable_error := TRUE; -- tell apex engine to quit
    RETURN l_session_id;
    EXCEPTION
    WHEN OTHERS THEN RETURN '-99';
    END get_apex_session_id;
    CREATE TABLE "APEX_BIEE_SESSION"
    (     "USERNAME"     VARCHAR2(60),
         "SESSION_ID"     NUMBER,
         "VALID_TO"     DATE,
         CONSTRAINT "APEX_BIEE_SESSION_PK" PRIMARY KEY ("USERNAME","SESSION_ID")
    In APEX this page sentry function is called:
    -- Function PAGE_SENTRY
    -- used as page sentry function in APEX applications
    FUNCTION page_sentry RETURN BOOLEAN
    IS
    l_current_sid NUMBER;
    l_biee_userid VARCHAR2(255);
    l_cookie owa_cookie.cookie;
    l_c_value VARCHAR2(255) := NULL;
    l_cookie_tom owa_cookie.cookie;
    l_c_value_tom VARCHAR2(255) := NULL;
    l_session_id NUMBER;
    l_biee_auth     VARCHAR2(1) := 'N';
    BEGIN
    BEGIN
    -- If normal APEX user authentication is used, cookie LOGIN_USERNAME_COOKIE will be used
    l_cookie_tom := owa_cookie.get('LOGIN_USERNAME_COOKIE');
    l_c_value_tom := l_cookie_tom.vals(1);
    l_biee_userid := UPPER(l_cookie_tom.vals(1));
    EXCEPTION
    WHEN OTHERS THEN NULL;
    END;
    l_session_id := apex_custom_auth.get_session_id; -- in APEX 4.2.1 this returns NULL
    -- Do we have a record in table APEX_BIEE_SESSION with the current session id
    BEGIN
    SELECT UPPER(username) INTO l_biee_userid
    FROM apex_biee_session
    WHERE session_id = l_session_id AND valid_to > SYSDATE;
    l_biee_auth := 'Y';
    EXCEPTION
    WHEN NO_DATA_FOUND THEN l_biee_userid := 'Failed';
    END;
    IF l_biee_userid = 'Failed' THEN
    IF l_c_value_tom IS NULL THEN
    l_biee_userid := NULL;
    ELSE
    l_biee_userid := UPPER(l_c_value_tom);
    END IF;
    END IF;
    -- If l_biee_userid is NULL we need to call the APEX login page (done by RETURN FALSE)
    IF l_biee_userid IS NULL THEN
    RETURN FALSE;
    END IF;
    IF l_biee_auth = 'N' THEN
    l_current_sid := apex_custom_auth.get_session_id_from_cookie;
    ELSE
    l_current_sid := l_session_id;
    END IF;
    -- This is the built-in part of the session verification
    IF apex_custom_auth.is_session_valid THEN
    wwv_flow.g_instance := l_current_sid;
    IF apex_custom_auth.get_username IS NULL THEN
    apex_custom_auth.define_user_session(
    p_user => UPPER(l_biee_userid),
    p_session_id => l_current_sid);
    RETURN TRUE;
    ELSE
    IF UPPER(l_biee_userid) = UPPER(apex_custom_auth.get_username) THEN
    apex_custom_auth.define_user_session(
    p_user =>UPPER(l_biee_userid),
    p_session_id =>l_current_sid);
    RETURN TRUE;
    ELSE -- username mismatch. Unset the session cookie and redirect back here to take other branch
    apex_custom_auth.logout(
    p_this_app=>v('APP_ID'),
    p_next_app_page_sess=>v('APP_ID')||':'||nvl(v('APP_PAGE_ID'),0)||':'||l_current_sid);
    wwv_flow.g_unrecoverable_error := true; -- tell htmldb engine to quit
    RETURN FALSE;
    END IF;
    END IF;
    ELSE -- application session cookie not valid; we need a new apex session
    IF l_biee_auth <> 'Y' THEN
    l_session_id := apex_custom_auth.get_next_session_id;
    END IF;
    apex_custom_auth.define_user_session(
    p_user => l_biee_userid,
    p_session_id => l_session_id);
    wwv_flow.g_unrecoverable_error := true; -- tell htmldb engine to quit
    IF owa_util.get_cgi_env('REQUEST_METHOD') = 'GET' THEN
    wwv_flow_custom_auth.remember_deep_link(
    p_url=>'f?'||wwv_flow_utilities.url_decode2(owa_util.get_cgi_env('QUERY_STRING')));
    ELSE
    wwv_flow_custom_auth.remember_deep_link(
    p_url=>'f?p='||
    TO_CHAR(wwv_flow.g_flow_id)||':'||
    TO_CHAR(nvl(wwv_flow.g_flow_step_id,0))||':'||
    TO_CHAR(wwv_flow.g_instance));
    END IF;
    apex_custom_auth.post_login( -- register session in htmldb sessions table, set cookie, redirect back
    p_uname => l_biee_userid,
    p_app_page => wwv_flow.g_flow_id||':'||nvl(wwv_flow.g_flow_step_id,0));
    RETURN FALSE;
    END IF;
    END page_sentry;
    The problem seems to be that in line "l_session_id := apex_custom_auth.get_session_id;" the call of apex_custom_auth.get_session_id is returning NULL in APEX 4.2.1.
    In APEX 4.0 the call of apex_custom_auth.get_session_id returned the APEX session id.
    What can I do to get this working again ?
    Kind Regards,
    Markus
    Edited by: asmodius1 on Jan 10, 2013 2:06 PM

    Hi,
    this integration relies on session fixation, that's an insecure practice which is not allowed anymore since 4.1:
    http://en.wikipedia.org/wiki/Session_fixation
    Since the cookie value for the session id is missing, Apex rejects the session id and sets it to null, before calling the sentry function.
    If you absolutely want to use this kind of integration, you will have to parse the value of owa_util.get_cgi_env('QUERY_STRING') in the sentry function to get the session id. To make it a bit more secure, the row in APEX_BIEE_SESSION should only be valid for a very short time (e.g. 1 sec). A person from Oracle Support contacted me about possible improvements to this authentication a few weeks ago. I replied with the following suggestions:
    I would at least add a Y/N flag (e.g. SESSION_JOINED_BY_APEX) to the
    APEX_BIEE_SESSION table. The page sentry should only accept the session
    without an accompanying cookie if the flag is still N. It has to set it
    to Y afterwards. This way, you ensure that the session joining without
    cookie can only be done once. Maybe there should also be an alternative
    way to log in to APEX, e.g. via page 101. Currently, this authentication
    only accepts session IDs that were generated via OBIEE.
    Users could log out of APEX or the APEX session could expire. Therefore,
    the APEX app should have a post logout procedure that deletes the row in
    the OBIEE session table. On the OBIEE side, APEX_SESSION_ID should
    therefore be initialized on each request. The initialization code should
    also check APEX_WORKSPACE_SESSIONS to make sure the session still
    exists.
    Regards,
    Christian

  • Startup failing after upgrade to Yosemite

    After my update to yosemite my computer doesn’t startup anymore. It only shows the grey Apple logo and the “startup bar” is not progressing anymore. I now always have to perform a hard shut-down and do a re-start, and only in the second or third attempt it will start up "normally". The computer also has become very slow and unresponsive and takes a long time to start up after signing in.
    To solve the problem (I hoped) I have done a complete clean install of Yosemite and thereafter installing my old programs using the Migration assistent. This did't help. Just now I have made an extra partition and only installed Yosemite on this partition. The same problem is still showing and the computer is still not starting up. I also experience complete kernel panics, where the message is different every time (I have pictures available of a number of kernel panics).
    I still have a partition with Mavericks which starts up just fine, so the problem doesn't seem to be my computer (although WiFi stopped working some 2 months ago). I now performed a EtreCheck with results listed as below. Anyone an idea what is wrong?
    EtreCheck version: 2.0.11 (98)
    Report generated 3 Nov 2014 21:50:54 CET
    Hardware Information: ℹ️
      Mac mini (Late 2012) (Verified)
      Mac mini - model: Macmini6,2
      1 2.3 GHz Intel Core i7 CPU: 4-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
    Video Information: ℹ️
      Intel HD Graphics 4000 -
      PL2377 spdisplays_1080p
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 0:51:36
    Disk Information: ℹ️
      APPLE HDD HTS541010A9E662 disk0 : (1 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Main disk (disk0s2) /  [Startup]: 837.97 GB (270.41 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Main disk 2 (disk0s4) /Volumes/Main disk 2 : 67.58 GB (56.53 GB free)
      Recovery HD (disk0s5) <not mounted>  [Recovery]: 650 MB
      Secundairy disk (disk0s6) /Volumes/Secundairy disk : 90.42 GB (58.76 GB free)
      Recovery HD (disk0s7) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
      Apple, Inc. IR Receiver
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Mitsumi Electric Hub in Apple Extended USB Keyboard
      Fujitsu Takamisawa Component Apple Optical USB Mouse
      Mitsumi Electric Apple Extended USB Keyboard
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Extensions
      [not loaded] com.Logitech.Control Center.HID Driver (3.9.1 - SDK 10.8) Support
      [loaded] com.sophos.kext.sav (9.2.50 - SDK 10.8) Support
      [loaded] com.sophos.nke.swi (9.2.50 - SDK 10.8) Support
      /System/Library/Extensions
      [not loaded] com.Logitech.Unifying.HID Driver (1.3.0 - SDK 10.6) Support
      [not loaded] com.tomtom.driver.UsbEthernetGadget (1.0.0d1) Support
    Startup Items: ℹ️
      TuxeraNTFSUnmountHelper: Path: /Library/StartupItems/TuxeraNTFSUnmountHelper
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [failed] com.apple.bird.plist
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.CallHistorySyncHelper.plist
      [failed] com.apple.cmfsyncagent.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.icloud.fmfd.plist
      [failed] com.apple.iconservices.iconservicesagent.plist
      [failed] com.apple.pluginkit.pkd.plist
      [failed] com.apple.printtool.agent.plist
      [failed] com.apple.SafariNotificationAgent.plist
      [failed] com.apple.scopedbookmarkagent.xpc.plist
      [failed] com.apple.security.cloudkeychainproxy.plist
      [failed] com.apple.spindump_agent.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.awdd.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.icloud.findmydeviced.plist
      [failed] com.apple.iconservices.iconservicesagent.plist
      [failed] com.apple.iconservices.iconservicesd.plist
      [failed] com.apple.ifdreader.plist
      [failed] com.apple.MobileFileIntegrity.plist
      [failed] com.apple.nehelper.plist
      [failed] com.apple.softwareupdated.plist
      [failed] com.apple.spindump.plist
      [failed] com.apple.tccd.system.plist
      [failed] com.apple.wdhelper.plist
      [failed] com.apple.xpc.smd.plist
      [failed] org.cups.cupsd.plist
    Launch Agents: ℹ️
      [running] com.Logitech.Control Center.Daemon.plist Support
      [running] com.micromat.TechToolProAgent.plist Support
      [running] com.sophos.uiserver.plist Support
      [not loaded] com.teamviewer.teamviewer.plist Support
      [not loaded] com.teamviewer.teamviewer_desktop.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [running] com.micromat.TechToolProDaemon.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.sophos.common.servicemanager.plist Support
      [not loaded] com.teamviewer.teamviewer_service.plist Support
    User Launch Agents: ℹ️
      [invalid?] com.adobe.ARM.[...].plist Support
      [invalid?] com.google.GoogleContactSyncAgent.plist Support
      [invalid?] com.google.keystone.agent.plist Support
      [invalid?] com.spotify.webhelper.plist Support
      [invalid?] jp.co.canon.Inkjet_Extended_Survey_Agent.plist Support
      [invalid?] org.virtualbox.vboxwebsrv.plist Support
    User Login Items: ℹ️
      MyDriveConnect Application (/Applications/MyDriveConnect.app)
      Microsoft Database Daemon UNKNOWN (missing value)
      Dropbox ApplicationHidden (/Applications/Dropbox.app)
      Canon IJ Network Scanner Selector EX ApplicationHidden (/Applications/Canon Utilities/IJ Network Scanner Selector EX/Canon IJ Network Scanner Selector EX.app)
      Canon IJ Network Scanner Selector EX ApplicationHidden (/Applications/Canon Utilities/IJ Network Scanner Selector EX/Canon IJ Network Scanner Selector EX.app)
      fuspredownloader ApplicationHidden (/Users/[redacted]/Library/Application Support/.FUS/fuspredownloader.app)
    Internet Plug-ins: ℹ️
      SharePointBrowserPlugin: Version: 14.4.5 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 Support
      Default Browser: Version: 600 - SDK 10.10
    Safari Extensions: ℹ️
      RSS Menu
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      FUSE for OS X (OSXFUSE)  Support
      Logitech Control Center  Support
      Perian  Support
      TechTool Protection  Support
      Tuxera NTFS  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Main disk: Disk size: 837.97 GB Disk used: 567.57 GB
      Destinations:
      MacOSX Backup [Local]
      Total size: 999.83 GB
      Total number of backups: 3
      Oldest backup: 2014-10-26 13:35:42 +0000
      Last backup: 2014-11-02 14:43:18 +0000
      Size of backup disk: Too small
      Backup size 999.83 GB < (Disk used 567.57 GB X 3)
      Backup Eric Powermac [Network]
      Total size: 1.07 TB
      Total number of backups: 23
      Oldest backup: 2014-02-21 07:56:49 +0000
      Last backup: 2014-10-23 09:05:28 +0000
      Size of backup disk: Too small
      Backup size 1.07 TB < (Disk used 567.57 GB X 3)
    Top Processes by CPU: ℹ️
          6% WindowServer
          4% Safari
          3% Dropbox
          2% com.apple.WebKit.Networking
          1% TechToolProDaemon
    Top Processes by Memory: ℹ️
      107 MB Safari
      73 MB com.apple.internetaccounts
      64 MB InterCheck
      64 MB cloudd
      64 MB Spotlight
    Virtual Memory Information: ℹ️
      57 MB Free RAM
      1.08 GB Active RAM
      1.04 GB Inactive RAM
      889 MB Wired RAM
      7.71 GB Page-ins
      247 MB Page-outs

    Off hand it looks like a botched upgrade. I suggest a reinstall from scratch:
    Install or Reinstall Lion/Mountain Lion from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
      1. Select Disk Utility from the main menu and click on the Continue button.
      2. After DU loads select your startup volume (usually Macintosh HD) from the
          left side list. Click on the Erase tab in the DU main window.
      3. Set the format type to Mac OS Extended (Journaled.) Optionally, click on
            the Security button and set the Zero Data option to one-pass. Click on
          the Erase button and wait until the process has completed.
      4. Quit DU and return to the main menu.
    Reinstall Yosemite: Select Reinstall OS X and click on the Install button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • YC_GEN app engine failed after upgrading from EPM 8.9 to 9.1 Rev1

    we tried upgrading our EPM 8.9 + tools 8.49.23 application to EPM 9.1 + tools 8.53.08. After upgrading when we tried to run the YC_GEN app engine it failed with the below error.
    Error:
    17449 20.26.27 0.000111 321: &ln_1 = &lbi_1.Execute();
    17450 20.26.27 0.017373 ErrorReturn-> 2 - Interlink Definition: Execution failed. (122,2) DERIVED_CG_BAT.CG_BATCH_PRV.FieldFormula Name:LoadDepends PCPC:27203 Statement:321
    Called from:YC_GEN_TBLS.MAIN.GBL.default.1900-01-01.UpdDpnds.OnExecute Statement:2
    17451 20.26.27 0.000080 <<< end-ext Nest=01 LoadDepends DERIVED_CG_BAT.CG_BATCH_PRV.FieldFormula Dur=2.480543 CPU=1.190000 Cycles=94840
    17452 20.26.27 0.000028 <<< end Nest=00 YC_GEN_TBLS.MAIN.GBL.default.1900-01-01.UpdDpnds.OnExecute Dur=2.486408 CPU=1.190000 Cycles=94874
    17453 20.26.27 0.008761 Database Options: override_connection_reset: 0
    we tried using libpsfidrvr.so file which delivered with EPM as well as with tools both is not working.

    I resolved my issue. Renamed search.sqlite and reinstalled Firefox 9.0.1
    All default search engines are now available.

  • SSIS packages are failing after upgrade to SQL server 2014

    Hi,
    I have some SSIS packages running on SQL server 2012 .
    After I upgraded to SQL server to 2014 from 2012 , the SSIS jobs are failing on the SQL agent.
    And i can see its related to Data source connectivity to the SQL agent. I hope it not able to identify the connection manager in SQL agent. And connection adapter is not upgraded.
    I read some articles about this and they say it not able to connect to SQL server agent job.
    And, I can see that the package is running if i run manually using SQL 2012 run time.
    Why its not running on SQL 2014 ?
    did i  miss anything while upgrading SQL server 2014 ?
    Please give me some suggestions to solve this issue. 
    And is there any way i can change the SQL server agent 2014 to adapt this and run ?
    Below is the error : 
    The Package filed to load due to error 0XC00100014 " One or more error occurres. There should be more specific errors preceding this one that expalins the details of the erroes. This message is used as a return value from functions that encounter
    errors.: This occures when CPackage::LoadFormXML fails.
    Regards,
    Vinodh Selvaraj.

    I think you have typed this error message by yourself.
    Anyway, as it says there should be more error preceeding to this. Do you have any other errors which describles the exact issue stating at what task it fails?
    If not, then there are various reasons behind this issue. 3rd party connection manager such as Oracle Attunity or it may be 32/64 bit issue.
    You may try executing package in 32 bit mode from SQL Agent Job.
    Please refer:
    http://blogs.msdn.com/b/farukcelik/archive/2010/06/16/why-package-load-error-0xc0010014-in-cpackage-loadfromxml-error-appears-while-trying-to-run-an-ssis-package.aspx
    http://www.bidn.com/blogs/timmurphy/ssas/1397/package-failed-to-load-due-to-error-0xc0010014
    -Vaibhav Chaudhari

  • Perl unit tests fail

    I tried to build version 2.5.16 with the following options:
    ./buildall.sh prefix=/usr/local enable-perl
    I got the following message:
    make[1]: Entering directory `--------/dbxml-2.5.16/dbxml/src/perl/DbXml'
    PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, '../blib/lib', '../blib/arch')" t/*.t
    t/XmlContainerConfig.t ..... UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 461
    UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 519
    t/XmlContainerConfig.t ..... 1/28 BDB XML: Database environment not configured for encryption
    XmlException=SCALAR(0xd6cac0)# Looks like you planned 28 tests but ran 25.
    # Looks like your test exited with 2 just after 25.
    t/XmlContainerConfig.t ..... Dubious, test returned 2 (wstat 512, 0x200)
    Failed 3/28 subtests
    t/XmlDocument.t ............ UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 461
    UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 519
    t/XmlDocument.t ............ ok
    t/XmlEvent.t ............... UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 461
    UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 519
    t/XmlEvent.t ............... ok
    t/XmlIndexLookup.t ......... UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 461
    UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 519
    t/XmlIndexLookup.t ......... ok
    t/XmlIndexSpecification.t .. UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 461
    UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 519
    t/XmlIndexSpecification.t .. ok
    t/XmlManager.t ............. UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 461
    UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 519
    t/XmlManager.t ............. 31/92 failed
    Error: Flags check failed for reindexContainer(). Expected some combination of 'DBXML_INDEX_NODES|DBXML_NO_INDEX_NODES|DBXML_STATISTICS|DBXML_NO_STATISTICS', but was passed 'DBXML_INDEX_NODES|DBXML_TRANSACTIONAL|DB_NOMMAP|DBXML_CHKSUM|DB_EXCL|DB_RDONLY'. in t/XmlManager.t, line 367
    # Looks like you planned 92 tests but ran 53.
    # Looks like your test exited with -1 just after 53.
    t/XmlManager.t ............. Dubious, test returned 255 (wstat 65280, 0xff00)
    Failed 39/92 subtests
    t/XmlQueryContext.t ........ UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 461
    UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 519
    t/XmlQueryContext.t ........ ok
    t/XmlResults.t ............. UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 461
    UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 519
    t/XmlResults.t ............. ok
    t/XmlValue.t ............... UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 461
    UNIVERSAL->import is deprecated and will be removed in a future perl at --------/dbxml-2.5.16/dbxml/src/perl/DbXml/../blib/lib/Sleepycat/DbXml.pm line 519
    t/XmlValue.t ............... ok
    Test Summary Report
    t/XmlContainerConfig.t (Wstat: 512 Tests: 25 Failed: 0)
    Non-zero exit status: 2
    Parse errors: Bad plan. You planned 28 tests but ran 25.
    t/XmlManager.t (Wstat: 65280 Tests: 53 Failed: 0)
    Non-zero exit status: 255
    Parse errors: Bad plan. You planned 92 tests but ran 53.
    Files=9, Tests=535, 3 wallclock secs ( 0.11 usr 0.02 sys + 0.69 cusr 0.14 csys = 0.96 CPU)
    Result: FAIL
    Failed 2/9 test programs. 0/535 subtests failed.
    make[1]: *** [test_dynamic] Error 255
    make[1]: Leaving directory `--------/dbxml-2.5.16/dbxml/src/perl/DbXml'
    If I don't used --enable-perl everything goes fine, the only problem is with perl enabled.
    I'm using perl version 5.12.1.
    Any ideas?
    thanks

    I turned off the deprecate warnings but still the tests fail.
    And her is the result
    PERL_DL_NONLAZY=1 /usr/bin/perl -w "-MExtUtils::Command::MM" "-e" "test_harness(0, '../blib/lib', '../blib/arch')" t/*.t
    t/XmlContainerConfig.t ..... 3/28 XmlException=SCALAR(0xd71428)# Looks like you planned 28 tests but ran 25.
    # Looks like your test exited with 2 just after 25.
    t/XmlContainerConfig.t ..... Dubious, test returned 2 (wstat 512, 0x200)
    Failed 3/28 subtests
    t/XmlDocument.t ............ ok
    t/XmlEvent.t ............... ok
    t/XmlIndexLookup.t ......... ok
    t/XmlIndexSpecification.t .. ok
    t/XmlManager.t ............. 1/92 print() on closed filehandle F at t/XmlManager.t line 146, <DATA> line 225.
    print() on closed filehandle F at t/XmlManager.t line 248, <DATA> line 225.
    t/XmlManager.t ............. 46/92 failed
    Error: Flags check failed for reindexContainer(). Expected some combination of 'DBXML_INDEX_NODES|DBXML_NO_INDEX_NODES|DBXML_STATISTICS|DBXML_NO_STATISTICS', but was passed 'DBXML_TRANSACTIONAL|DB_THREAD|DBXML_CHKSUM|DBXML_ENCRYPT|DB_EXCL|DB_RDONLY'. in t/XmlManager.t, line 367
    # Looks like you planned 92 tests but ran 53.
    # Looks like your test exited with -1 just after 53.
    t/XmlManager.t ............. Dubious, test returned 255 (wstat 65280, 0xff00)
    Failed 39/92 subtests
    t/XmlQueryContext.t ........ ok
    t/XmlResults.t ............. ok
    t/XmlValue.t ............... ok
    Test Summary Report
    t/XmlContainerConfig.t (Wstat: 512 Tests: 25 Failed: 0)
    Non-zero exit status: 2
    Parse errors: Bad plan. You planned 28 tests but ran 25.
    t/XmlManager.t (Wstat: 65280 Tests: 53 Failed: 0)
    Non-zero exit status: 255
    Parse errors: Bad plan. You planned 92 tests but ran 53.
    Files=9, Tests=535, 3 wallclock secs ( 0.09 usr 0.01 sys + 0.68 cusr 0.14 csys = 0.92 CPU)
    Result: FAIL
    Failed 2/9 test programs. 0/535 subtests failed.
    best,

  • Data Protector backup integration fails after upgrade to Oracle 11.2.0.2

    After upgrading a system from Oracle 10.2.0.2 to 11.2.0.2, the Data Protector backup integration fails with error
    [Normal] From: BSM@<dp_cell_server>.<domain> "<sap_host>_<SID>_Online"  Time: 28.04.2011 09:10:21
         Backup session 2011/04/28-74 started.
    [Normal] From: BSM@<dp_cell_server>.<domain> "<sap_host>_<SID>_Online"  Time: 28.04.2011 09:10:21
         OB2BAR application on "<sap_host>.<domain>" successfully started.
    /usr/sap/<SID>/SYS/exe/run/brbackup: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    [Major] From: OB2BAR_OMNISAP@pervs<SID>.<domain> "OMNISAP"  Time: 04/28/11 09:10:21
         BRBACKUP /usr/sap/<SID>/SYS/exe/run/brbackup -t online -d util_file_online -c -m all -u system/******** returned 127
    /usr/sap/<SID>/SYS/exe/run/brarchive: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    [Major] From: OB2BAR_OMNISAP@pervs<SID>.<domain> "OMNISAP"  Time: 04/28/11 09:10:21
         BRARCHIVE /usr/sap/<SID>/SYS/exe/run/brarchive -d util_file -s -c -u system/******** returned 127
    [Normal] From: BSM@<dp_cell_server>.<domain> "<sap_host>_<SID>_Online"  Time: 28.04.2011 09:10:22
         OB2BAR application on "<sap_host>.<domain>" disconnected.
    [Critical] From: BSM@<dp_cell_server>.<domain> "<sap_host>_<SID>_Online"  Time: 28.04.2011 09:10:22
         None of the Disk Agents completed successfully.
         Session has failed.
    We checked the configuration, tried linking /oracle/client/11x_64 to 10x_64, removing the link and renewing the 10x_64 oracle client, but still Data Protector can't find the library libclntsh.so.10.1. A new system which was installed with Oracle 11.2.0.2 doesn't have any problems with online backups.
    Any help is appreciated!

    Hi,
    did you create the other link according to the upgrade guide (point 5.5) ?
    You need to create this link so that BR*Tools
    (which is linked to the Oracle 10.2 client)
    can use the newer Oracle 11.2 clients.
    After the software installation has finished,
    create a symbolic link in $ORACLE_HOME/lib as follows:
    cd $ORACLE_HOME/lib
    ln u2013s libnnz11.so libnnz10.so
    or (HP-UX)
    ln u2013s libnnz11.sl libnnz10.sl
    Volker
    Second part: For the DP job, there can be set different environment settings inside the DP job.
    Did you check if there are still relicts from the previous release ?
    You could integrate a small pre-exec script into the job and let it plot the output of
    id
    env
    set
    to a logfile, just to see which values the backup is using.
    Edited by: Volker Borowski on Apr 29, 2011 10:12 AM

  • Z_IMPORT_MASTER_DATA_LOAD fails after upgrade to BPC 7.5

    Hi,
    After an upgrade from BPC 7.0 (for NW) to BPC 7.5, the process chain Z_IMPORT_MASTER_DATA_LOAD fails. This is a standard process chain and we have used it to import Employee-masterdata from BW to BPC. This has been working perfectly fine for a long time, but after the upgrade it fails with the error message: u201CJob or process BPCMALDNW, waiting for event RSPROCESS D5PUFX4O5T78XRI7YVDC1LGBL is unknownu201D. Details of the error message are:
    Job or process BPCMALDNW, waiting for event RSPROCESS D5PUFX4O5T78XRI7YVDC1LGBL is unknown
    Message no. RSPC002
    Diagnosis
    Job BPCMALDNW has been started because of event RSPROCESS D5PUFX4O5T78XRI7YVDC1LGBL. This job is not, however, known in the active version of the process chain.
    System Response
    The job has been terminated.
    It is the variants u201CClear BPC tablesu201D and u201CConvertu201D that fail, but they do not give any error message that makes sense.
    Does anyone know what is causing this problem? Can the process chain not be used in BPC 7.0 and do we have to use the process chain /CPMB/IMPORT_MASTER instead?
    Thanks for your help.
    Best Regards,
    Linda Solberg

    Hi Rohit,
    Yes you will need to re-create your custom packages. Please see Note 1294591 - Support SQL 2008 (DM):
    [Addtional Info]
    If you need to upgrade SQL 2005 dtsx packages to SQL 2008, customized packages must be created in SQL 2008 BIDS(Business Intelligence Development Studio). The steps are the same with SQL 2005. To do this, you should copy BPC Task DLLs for SQL 2008 to Tasks folder under SQL 2008 BIDS installation folder
    If you use packages provided from ApShell, you can copy packages from ApShell instead created in SQL 2008 BIDS after upgrading to SQL 2008.
    *Note: you should modify package as your application structure such as dimension when you copy package from an application to others and, between the applications, the structure are different.
    Also, for information on migration steps to apply to support packages before SP01, see the Planning and Consolidation 7.5 M Upgrade Guide, available on SAP Service Marketplace at http://service.sap.com/instguidesEPM-BPC > 7.5, version for the Microsoft platform.
    Thanks
    John

Maybe you are looking for