Hi Murphy thanks for your help.I compiled noxcore but i got following error when I run following command., even I install some dependencies like snmp. but dose not matter. I was wondering if give me some help.many thanks. sudo ./nox_core -i ptcp:6633 -v lavi
00001|nox|DBG:Starting nox_core (/home/parham/Documents/TEST-LAVI/noxcore/build/src/.libs/lt-nox_core) 00002|pyrt|DBG:Loading a component description file 'nox/coreapps/messenger/meta.xml'. 00003|pyrt|DBG:Loading a component description file 'nox/coreapps/spanning_tree/meta.xml'. 00004|pyrt|DBG:Loading a component description file 'nox/coreapps/switch/meta.xml'. 00005|pyrt|DBG:Loading a component description file 'nox/coreapps/hub/meta.xml'. 00006|pyrt|DBG:Loading a component description file 'nox/coreapps/simple_c_py_app/meta.xml'. 00007|pyrt|DBG:Loading a component description file 'nox/coreapps/openflowpacket/meta.xml'. 00008|pyrt|DBG:Loading a component description file 'nox/coreapps/examples/meta.xml'. 00009|pyrt|DBG:Loading a component description file 'nox/coreapps/simple_c_app/meta.xml'. 00010|pyrt|DBG:Loading a component description file 'nox/coreapps/pyrt/meta.xml'. 00011|pyrt|DBG:Loading a component description file 'nox/coreapps/snmp/meta.xml'. 00012|pyrt|DBG:Loading a component description file 'nox/netapps/sqlitelog/meta.xml'. 00013|pyrt|DBG:Loading a component description file 'nox/netapps/hoolock/meta.xml'. 00014|pyrt|DBG:Loading a component description file 'nox/netapps/routeinstaller/meta.xml'. 00015|pyrt|DBG:Loading a component description file 'nox/netapps/apdb/meta.xml'. 00016|pyrt|DBG:Loading a component description file 'nox/netapps/flowdb/meta.xml'. 00017|pyrt|DBG:Loading a component description file 'nox/netapps/configuration/meta.xml'. 00018|pyrt|DBG:Loading a component description file 'nox/netapps/bicast/meta.xml'. 00019|pyrt|DBG:Loading a component description file 'nox/netapps/flow_fetcher/meta.xml'. 00020|pyrt|DBG:Loading a component description file 'nox/netapps/directory/meta.xml'. 00021|pyrt|DBG:Loading a component description file 'nox/netapps/hardhandover/meta.xml'. 00022|pyrt|DBG:Loading a component description file 'nox/netapps/authenticator/meta.xml'. 00023|pyrt|DBG:Loading a component description file 'nox/netapps/switchstats/meta.xml'. 00024|pyrt|DBG:Loading a component description file 'nox/netapps/tests/meta.xml'. 00025|pyrt|DBG:Loading a component description file 'nox/netapps/user_event_log/meta.xml'. 00026|pyrt|DBG:Loading a component description file 'nox/netapps/mobiledb/meta.xml'. 00027|pyrt|DBG:Loading a component description file 'nox/netapps/storage/meta.xml'. 00028|pyrt|DBG:Loading a component description file 'nox/netapps/eventlogger/meta.xml'. 00029|pyrt|DBG:Loading a component description file 'nox/netapps/topology/meta.xml'. 00030|pyrt|DBG:Loading a component description file 'nox/netapps/dhcp/meta.xml'. 00031|pyrt|DBG:Loading a component description file 'nox/netapps/discovery/meta.xml'. 00032|pyrt|DBG:Loading a component description file 'nox/netapps/routing/meta.xml'. 00033|pyrt|DBG:Loading a component description file 'nox/netapps/bindings_storage/meta.xml'. 00034|pyrt|DBG:Loading a component description file 'nox/netapps/lavi/meta.xml'. 00035|pyrt|DBG:Loading a component description file 'nox/webapps/switchconfig/meta.xml'. 00036|pyrt|DBG:Loading a component description file 'nox/webapps/webservice/meta.xml'. 00037|pyrt|DBG:Loading a component description file 'nox/webapps/storagews/meta.xml'. 00038|pyrt|DBG:Loading a component description file 'nox/webapps/default_switch_approval/meta.xml'. 00039|pyrt|DBG:Loading a component description file 'nox/webapps/miscws/meta.xml'. 00040|pyrt|DBG:Loading a component description file 'nox/webapps/webserver/meta.xml'. 00041|messenger_core|DBG:messenger TCP interface bound to port 2503 00042|sqlite3-impl|WARN:Transactional storage file not given in the command line; defaulting to 'testing.sqlite' 00043|sqlite3-impl|DBG:Opening the SQLite database at 'testing.sqlite'. 00044|sqlite3-impl|DBG:SQLite> 'CREATE TABLE IF NOT EXISTS NOX_SCHEMA_META (GUID INTEGER PRIMARY KEY NOT NULL,NOX_TABLE TEXT NOT NULL,NOX_TYPE INTEGER NOT NULL,NOX_VERSION INTEGER NOT NULL)' 00045|sqlite3-impl|DBG:SQLite> 'CREATE TABLE IF NOT EXISTS NOX_SCHEMA_TABLE (GUID INTEGER PRIMARY KEY NOT NULL,NOX_TABLE TEXT NOT NULL,NOX_COLUMN TEXT NOT NULL,NOX_TYPE INTEGER NOT NULL)' 00046|sqlite3-impl|DBG:SQLite> 'CREATE TABLE IF NOT EXISTS NOX_SCHEMA_INDEX (GUID INTEGER PRIMARY KEY NOT NULL,NOX_TABLE TEXT NOT NULL,NOX_INDEX TEXT NOT NULL,NOX_COLUMN TEXT NOT NULL)' 00047|sqlite3-impl|DBG:Reading the meta data tables in. 00048|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_META' 00049|sqlite3-impl|DBG:Closing a statement 00050|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_TABLE' 00051|sqlite3-impl|DBG:Closing a statement 00052|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_INDEX' 00053|sqlite3-impl|DBG:Closing a statement 00054|sqlite3-impl|DBG:SQLite> 'CREATE TEMP TRIGGER TRIGGER_FOR_NOX_SCHEMA_TABLE_INSERT AFTER INSERT ON NOX_SCHEMA_TABLE BEGIN SELECT INSERT_CALLBACK_NOX_SCHEMA_TABLE(0, 'NOX_SCHEMA_TABLE', NEW.GUID, NEW.NOX_TYPE, NEW.NOX_COLUMN, NEW.NOX_TABLE); END;' 00055|sqlite3-impl|DBG:SQLite> 'CREATE TEMP TRIGGER TRIGGER_FOR_NOX_SCHEMA_TABLE_UPDATE AFTER UPDATE ON NOX_SCHEMA_TABLE BEGIN SELECT UPDATE_CALLBACK_NOX_SCHEMA_TABLE(2, 'NOX_SCHEMA_TABLE', NEW.GUID, NEW.NOX_TYPE, NEW.NOX_COLUMN, NEW.NOX_TABLE, OLD.GUID, OLD.NOX_TYPE, OLD.NOX_COLUMN, OLD.NOX_TABLE); END;' 00056|sqlite3-impl|DBG:SQLite> 'CREATE TEMP TRIGGER TRIGGER_FOR_NOX_SCHEMA_TABLE_DELETE AFTER DELETE ON NOX_SCHEMA_TABLE BEGIN SELECT DELETE_CALLBACK_NOX_SCHEMA_TABLE(1, 'NOX_SCHEMA_TABLE', OLD.GUID, OLD.NOX_TYPE, OLD.NOX_COLUMN, OLD.NOX_TABLE); END;' 00057|sqlite3-impl|DBG:SQLite> 'CREATE TEMP TRIGGER TRIGGER_FOR_NOX_SCHEMA_INDEX_INSERT AFTER INSERT ON NOX_SCHEMA_INDEX BEGIN SELECT INSERT_CALLBACK_NOX_SCHEMA_INDEX(0, 'NOX_SCHEMA_INDEX', NEW.GUID, NEW.NOX_COLUMN, NEW.NOX_TABLE, NEW.NOX_INDEX); END;' 00058|sqlite3-impl|DBG:SQLite> 'CREATE TEMP TRIGGER TRIGGER_FOR_NOX_SCHEMA_INDEX_UPDATE AFTER UPDATE ON NOX_SCHEMA_INDEX BEGIN SELECT UPDATE_CALLBACK_NOX_SCHEMA_INDEX(2, 'NOX_SCHEMA_INDEX', NEW.GUID, NEW.NOX_COLUMN, NEW.NOX_TABLE, NEW.NOX_INDEX, OLD.GUID, OLD.NOX_COLUMN, OLD.NOX_TABLE, OLD.NOX_INDEX); END;' 00059|sqlite3-impl|DBG:SQLite> 'CREATE TEMP TRIGGER TRIGGER_FOR_NOX_SCHEMA_INDEX_DELETE AFTER DELETE ON NOX_SCHEMA_INDEX BEGIN SELECT DELETE_CALLBACK_NOX_SCHEMA_INDEX(1, 'NOX_SCHEMA_INDEX', OLD.GUID, OLD.NOX_COLUMN, OLD.NOX_TABLE, OLD.NOX_INDEX); END;' 00060|sqlite3-impl|DBG:SQLite> 'CREATE TEMP TRIGGER TRIGGER_FOR_NOX_SCHEMA_META_INSERT AFTER INSERT ON NOX_SCHEMA_META BEGIN SELECT INSERT_CALLBACK_NOX_SCHEMA_META(0, 'NOX_SCHEMA_META', NEW.GUID, NEW.NOX_TYPE, NEW.NOX_VERSION, NEW.NOX_TABLE); END;' 00061|sqlite3-impl|DBG:SQLite> 'CREATE TEMP TRIGGER TRIGGER_FOR_NOX_SCHEMA_META_UPDATE AFTER UPDATE ON NOX_SCHEMA_META BEGIN SELECT UPDATE_CALLBACK_NOX_SCHEMA_META(2, 'NOX_SCHEMA_META', NEW.GUID, NEW.NOX_TYPE, NEW.NOX_VERSION, NEW.NOX_TABLE, OLD.GUID, OLD.NOX_TYPE, OLD.NOX_VERSION, OLD.NOX_TABLE); END;' 00062|sqlite3-impl|DBG:SQLite> 'CREATE TEMP TRIGGER TRIGGER_FOR_NOX_SCHEMA_META_DELETE AFTER DELETE ON NOX_SCHEMA_META BEGIN SELECT DELETE_CALLBACK_NOX_SCHEMA_META(1, 'NOX_SCHEMA_META', OLD.GUID, OLD.NOX_TYPE, OLD.NOX_VERSION, OLD.NOX_TABLE); END;' 00063|dht-storage|DBG:Reading the meta data tables. 00064|sqlite3-impl|DBG:Getting shared for id:1, s:0 e:0 00065|sqlite3-impl|DBG:Shared lock acquired 1. 00066|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_META' 00067|sqlite3-impl|DBG:Closing a cursor (1) 00068|sqlite3-impl|DBG:Closing a statement 00069|sqlite3-impl|DBG:Releasing lock 1 00070|sqlite3-impl|DBG:Releasing lock id:1, s:1 e:0 00071|sqlite3-impl|DBG:Getting shared for id:2, s:0 e:0 00072|sqlite3-impl|DBG:Shared lock acquired 2. 00073|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_TABLE_INDEX_1' 00074|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_TABLE WHERE NOX_TABLE = ?' 00075|sqlite3-impl|DBG:Closing a cursor (2) 00076|sqlite3-impl|DBG:Closing a statement 00077|sqlite3-impl|DBG:Releasing lock 2 00078|sqlite3-impl|DBG:Releasing lock id:2, s:1 e:0 00079|sqlite3-impl|DBG:Getting shared for id:3, s:0 e:0 00080|sqlite3-impl|DBG:Shared lock acquired 3. 00081|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_TABLE_INDEX_1' 00082|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_TABLE WHERE NOX_TABLE = ?' 00083|sqlite3-impl|DBG:Closing a cursor (3) 00084|sqlite3-impl|DBG:Closing a statement 00085|sqlite3-impl|DBG:Releasing lock 3 00086|sqlite3-impl|DBG:Releasing lock id:3, s:1 e:0 00087|sqlite3-impl|DBG:Getting shared for id:4, s:0 e:0 00088|sqlite3-impl|DBG:Shared lock acquired 4. 00089|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_TABLE_INDEX_1' 00090|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_TABLE WHERE NOX_TABLE = ?' 00091|sqlite3-impl|DBG:Closing a cursor (4) 00092|sqlite3-impl|DBG:Closing a statement 00093|sqlite3-impl|DBG:Releasing lock 4 00094|sqlite3-impl|DBG:Releasing lock id:4, s:1 e:0 00095|sqlite3-impl|DBG:Getting shared for id:5, s:0 e:0 00096|sqlite3-impl|DBG:Shared lock acquired 5. 00097|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_TABLE_INDEX_1' 00098|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_TABLE WHERE NOX_TABLE = ?' 00099|sqlite3-impl|DBG:Closing a cursor (5) 00100|sqlite3-impl|DBG:Closing a statement 00101|sqlite3-impl|DBG:Releasing lock 5 00102|sqlite3-impl|DBG:Releasing lock id:5, s:1 e:0 00103|sqlite3-impl|DBG:Getting shared for id:6, s:0 e:0 00104|sqlite3-impl|DBG:Shared lock acquired 6. 00105|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_TABLE_INDEX_1' 00106|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_TABLE WHERE NOX_TABLE = ?' 00107|sqlite3-impl|DBG:Closing a cursor (6) 00108|sqlite3-impl|DBG:Closing a statement 00109|sqlite3-impl|DBG:Releasing lock 6 00110|sqlite3-impl|DBG:Releasing lock id:6, s:1 e:0 00111|sqlite3-impl|DBG:Getting shared for id:7, s:0 e:0 00112|sqlite3-impl|DBG:Shared lock acquired 7. 00113|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_TABLE_INDEX_1' 00114|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_TABLE WHERE NOX_TABLE = ?' 00115|sqlite3-impl|DBG:Closing a cursor (7) 00116|sqlite3-impl|DBG:Closing a statement 00117|sqlite3-impl|DBG:Releasing lock 7 00118|sqlite3-impl|DBG:Releasing lock id:7, s:1 e:0 00119|sqlite3-impl|DBG:Getting shared for id:8, s:0 e:0 00120|sqlite3-impl|DBG:Shared lock acquired 8. 00121|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_TABLE_INDEX_1' 00122|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_TABLE WHERE NOX_TABLE = ?' 00123|sqlite3-impl|DBG:Closing a cursor (8) 00124|sqlite3-impl|DBG:Closing a statement 00125|sqlite3-impl|DBG:Releasing lock 8 00126|sqlite3-impl|DBG:Releasing lock id:8, s:1 e:0 00127|sqlite3-impl|DBG:Getting shared for id:9, s:0 e:0 00128|sqlite3-impl|DBG:Shared lock acquired 9. 00129|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_INDEX_INDEX_1' 00130|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_INDEX WHERE NOX_TABLE = ?' 00131|sqlite3-impl|DBG:Closing a cursor (9) 00132|sqlite3-impl|DBG:Closing a statement 00133|sqlite3-impl|DBG:Releasing lock 9 00134|sqlite3-impl|DBG:Releasing lock id:9, s:1 e:0 00135|sqlite3-impl|DBG:Getting shared for id:10, s:0 e:0 00136|sqlite3-impl|DBG:Shared lock acquired 10. 00137|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_INDEX_INDEX_1' 00138|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_INDEX WHERE NOX_TABLE = ?' 00139|sqlite3-impl|DBG:Closing a cursor (10) 00140|sqlite3-impl|DBG:Closing a statement 00141|sqlite3-impl|DBG:Releasing lock 10 00142|sqlite3-impl|DBG:Releasing lock id:10, s:1 e:0 00143|sqlite3-impl|DBG:Getting shared for id:11, s:0 e:0 00144|sqlite3-impl|DBG:Shared lock acquired 11. 00145|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_INDEX_INDEX_1' 00146|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_INDEX WHERE NOX_TABLE = ?' 00147|sqlite3-impl|DBG:Closing a cursor (11) 00148|sqlite3-impl|DBG:Closing a statement 00149|sqlite3-impl|DBG:Releasing lock 11 00150|sqlite3-impl|DBG:Releasing lock id:11, s:1 e:0 00151|sqlite3-impl|DBG:Getting shared for id:12, s:0 e:0 00152|sqlite3-impl|DBG:Shared lock acquired 12. 00153|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_INDEX_INDEX_1' 00154|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_INDEX WHERE NOX_TABLE = ?' 00155|sqlite3-impl|DBG:Closing a cursor (12) 00156|sqlite3-impl|DBG:Closing a statement 00157|sqlite3-impl|DBG:Releasing lock 12 00158|sqlite3-impl|DBG:Releasing lock id:12, s:1 e:0 00159|sqlite3-impl|DBG:Getting shared for id:13, s:0 e:0 00160|sqlite3-impl|DBG:Shared lock acquired 13. 00161|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_INDEX_INDEX_1' 00162|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_INDEX WHERE NOX_TABLE = ?' 00163|sqlite3-impl|DBG:Closing a cursor (13) 00164|sqlite3-impl|DBG:Closing a statement 00165|sqlite3-impl|DBG:Releasing lock 13 00166|sqlite3-impl|DBG:Releasing lock id:13, s:1 e:0 00167|sqlite3-impl|DBG:Getting shared for id:14, s:0 e:0 00168|sqlite3-impl|DBG:Shared lock acquired 14. 00169|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_INDEX_INDEX_1' 00170|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_INDEX WHERE NOX_TABLE = ?' 00171|sqlite3-impl|DBG:Closing a cursor (14) 00172|sqlite3-impl|DBG:Closing a statement 00173|sqlite3-impl|DBG:Releasing lock 14 00174|sqlite3-impl|DBG:Releasing lock id:14, s:1 e:0 00175|sqlite3-impl|DBG:Getting shared for id:15, s:0 e:0 00176|sqlite3-impl|DBG:Shared lock acquired 15. 00177|sqlite3-impl|DBG:Comparing with index 'NOX_SCHEMA_INDEX_INDEX_1' 00178|sqlite3-impl|DBG:SQLite> 'SELECT * FROM NOX_SCHEMA_INDEX WHERE NOX_TABLE = ?' 00179|sqlite3-impl|DBG:Closing a cursor (15) 00180|sqlite3-impl|DBG:Closing a statement 00181|sqlite3-impl|DBG:Releasing lock 15 00182|sqlite3-impl|DBG:Releasing lock id:15, s:1 e:0 00183|dht-storage|DBG:No need to create a table: bindings_host 00184|dht-storage|DBG:No need to create a table: bindings_user 00185|dht-storage|DBG:No need to create a table: bindings_dladdr 00186|dht-storage|DBG:No need to create a table: bindings_link 00187|dht-storage|DBG:No need to create a table: bindings_location 00188|pycomponent|DBG:Importing Python module nox.netapps.bindings_storage.pybindings_storage 00189|dht-storage|DBG:No need to create a table: user_event_log 00190|dht-storage|DBG:No need to create a table: user_event_log_names 00191|pycomponent|DBG:Importing Python module nox.netapps.user_event_log.pyuser_event_log 00192|pycomponent|DBG:Importing Python module nox.netapps.discovery.discovery 00193|messenger_core|DBG:messenger TCP interface bound to port 2603 00194|ssl-config|ERR:SSL_CTX_use_PrivateKey_file: error:02001002:system library:fopen:No such file or directory 00195|nox|DBG:Application installation report: 00196|nox|DBG:built-in event dispatcher: Current state: INSTALLED Required state: INSTALLED Dependencies: 00197|nox|DBG:transactional_storage_backend: Current state: INSTALLED Required state: INSTALLED Dependencies: 'storage common' OK 00198|nox|DBG:pyuser_event_log: Current state: INSTALLED Required state: INSTALLED Dependencies: 'user_event_log' OK, 'python' OK 00199|nox|DBG:topology: Current state: INSTALLED Required state: INSTALLED Dependencies: 'discovery' OK 00200|nox|DBG:snmptrap: Current state: NOT_INSTALLED Required state: INSTALLED Dependencies: 'snmpmsg' not installed 00201|nox|DBG:namemanager: Current state: INSTALLED Required state: INSTALLED Dependencies: 'cdirectorymanager' OK 00202|nox|DBG:lavi: Current state: NOT_INSTALLED Required state: INSTALLED Dependencies: 'bookman' OK, 'marie' not installed, 'komui' not found, 'lenalee' not found, 'timcanpy' not found 00203|nox|DBG:snmpmsg: Current state: NOT_INSTALLED Required state: INSTALLED Dependencies: 'messenger' not installed, 'msgpacket' OK 00204|nox|DBG:user_event_log: Current state: INSTALLED Required state: INSTALLED Dependencies: 'storage backend' OK, 'bindings_storage' OK 00205|nox|DBG:cdirectorymanager: Current state: INSTALLED Required state: INSTALLED Dependencies: 'netinfo_mod_event' OK 00206|nox|DBG:netinfo_mod_event: Current state: INSTALLED Required state: INSTALLED Dependencies: 00207|nox|DBG:link event: Current state: INSTALLED Required state: INSTALLED Dependencies: 00208|nox|DBG:flow_util: Current state: INSTALLED Required state: INSTALLED Dependencies: 00209|nox|DBG:nat_enforcer: Current state: INSTALLED Required state: INSTALLED Dependencies: 'flow_util' OK 00210|nox|DBG:messenger_core: Current state: INSTALLED Required state: INSTALLED Dependencies: 00211|nox|DBG:messenger: Current state: ERROR Required state: INSTALLED Dependencies: 'messenger_core' OK, 'msgpacket' OK Error: Ssl_config initialization failed: Protocol not available 00212|nox|DBG:marie: Current state: NOT_INSTALLED Required state: INSTALLED Dependencies: 'bookman' OK, 'topology' OK, 'authenticator' OK, 'mobiledb' not installed 00213|nox|DBG:msgpacket: Current state: INSTALLED Required state: INSTALLED Dependencies: 00214|nox|DBG:built-in DSO deployer: Current state: INSTALLED Required state: INSTALLED Dependencies: 00215|nox|DBG:storage common: Current state: INSTALLED Required state: INSTALLED Dependencies: 00216|nox|DBG:discovery: Current state: INSTALLED Required state: INSTALLED Dependencies: 'link event' OK, 'pybindings_storage' OK, 'pyuser_event_log' OK, 'python' OK 00217|nox|DBG:bindings_storage: Current state: INSTALLED Required state: INSTALLED Dependencies: 'storage backend' OK, 'namemanager' OK 00218|nox|DBG:python: Current state: INSTALLED Required state: INSTALLED Dependencies: 00219|nox|DBG:authenticator: Current state: INSTALLED Required state: INSTALLED Dependencies: 'flow_util' OK, 'routing_module' OK, 'cdirectorymanager' OK, 'namemanager' OK, 'bindings_storage' OK 00220|nox|DBG:storage backend: Current state: INSTALLED Required state: INSTALLED Dependencies: 'storage common' OK, 'transactional_storage_backend' OK 00221|nox|DBG:golems: Current state: INSTALLED Required state: INSTALLED Dependencies: 'messenger_core' OK, 'msgpacket' OK 00222|nox|DBG:routing_module: Current state: INSTALLED Required state: INSTALLED Dependencies: 'topology' OK, 'nat_enforcer' OK 00223|nox|DBG:bookman: Current state: INSTALLED Required state: INSTALLED Dependencies: 'golems' OK 00224|nox|DBG:mobiledb: Current state: NOT_INSTALLED Required state: INSTALLED Dependencies: 'snmptrap' not installed 00225|nox|DBG:pybindings_storage: Current state: INSTALLED Required state: INSTALLED Dependencies: 'bindings_storage' OK, 'python' OK 00226|nox|ERR:Cannot change the state of 'lavi' to INSTALLED: 'lavi' has an unmet dependency: 'marie' has an unmet dependency: 'mobiledb' has an unmet dependency: 'snmptrap' has an unmet dependency: 'snmpmsg' has an unmet dependency: 'messenger' ran into an error: Ssl_config initialization failed: Protocol not available ________________________________________ From: James "Murphy" McCauley [jam...@nau.edu] Sent: 06 August 2010 01:22 To: Kiani, Parham Cc: nox-dev@noxrepo.org Subject: Re: [nox-dev] problem with installation Are you running swig >= 1.3.37? If so, the easiest thing is probably to downgrade to 1.3.36. What Linux distribution are you on? I didn't think anyone had actually switched to 1.3.37 for exactly this reason... -- Murphy On Thu, 2010-08-05 at 11:07 +0100, Kiani, Parham wrote: > HI > I am trying to install noxcore from > here(http://www.openflowswitch.org/wk/index.php/OpenRoads) to run LAVI (I git > clone git://openflowswitch.org/openroads.git noxcore) > I tried with build and without build directory the result was the same as > following. It seems problem with swig and search a lot some people had this > problem before but there is no clear solution to solve it. I was wondering if > somebody could solve this problem. > many thanks > > le included from ../../../../../src/nox/component.hh:38, > from ../../../../../src/nox/coreapps/pyrt/pyrt.hh:27, > from ../../../../../src/nox/coreapps/pyrt/pyrt.cc:18: > ../../../../../src/include/netinet++/ethernetaddr.hh: In member function > 'bool vigil::ethernetaddr::is_init() const': > ../../../../../src/include/netinet++/ethernetaddr.hh:283: warning: > dereferencing type-punned pointer will break strict-aliasing rules > ../../../../../src/include/netinet++/ethernetaddr.hh: In member function > 'uint64_t vigil::ethernetaddr::hb_long() const': > ../../../../../src/include/netinet++/ethernetaddr.hh:398: warning: > dereferencing type-punned pointer will break strict-aliasing rules > ../../../../../src/include/netinet++/ethernetaddr.hh: In member function > 'uint64_t vigil::ethernetaddr::nb_long() const': > ../../../../../src/include/netinet++/ethernetaddr.hh:408: warning: > dereferencing type-punned pointer will break strict-aliasing rules > ../../../../../src/include/netinet++/ethernetaddr.hh: In member function > 'bool vigil::ethernetaddr::is_zero() const': > ../../../../../src/include/netinet++/ethernetaddr.hh:446: warning: > dereferencing type-punned pointer will break strict-aliasing rules > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_datapath_join(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:182: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:182: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_table_stats_in(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:193: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:193: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_aggregate_stats_in(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:206: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:206: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_desc_stats_in(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:220: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:220: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_port_stats_in(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:231: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:231: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_datapath_leave(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:241: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:241: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_bootstrap_complete(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:246: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:246: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_flow_expired(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:260: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:260: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_flow_mod(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:270: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:270: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_packet_in(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:285: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:285: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_port_status(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:296: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:296: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In function 'void > convert_shutdown(const vigil::Event&, PyObject*)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:303: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:303: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc: In member function 'virtual > vigil::Disposition > vigil::applications::Python_event_manager::call_python_handler(const > vigil::Event&, boost::intrusive_ptr<_object>&)': > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:590: error: 'PySwigObject' was > not declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:590: error: 'swigo' was not > declared in this scope > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:591: error: expected > primary-expression before ')' token > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:591: error: expected ')' before > 'swigo' > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:770: error: expected ')' at end > of input > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:770: error: expected statement > at end of input > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:770: error: expected '}' at end > of input > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:770: error: expected 'catch' at > end of input > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:770: error: expected '(' at end > of input > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:770: error: expected > type-specifier at end of input > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:770: error: expected ')' at end > of input > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:770: error: expected '{' at end > of input > ../../../../../src/nox/coreapps/pyrt/pyrt.cc:770: error: expected '}' at end > of input > make[7]: *** [pyrt_la-pyrt.lo] Error 1 > make[7]: Leaving directory > `/home/parham/Documents/TEST-LAVI/noxcore/build/src/nox/coreapps/pyrt' > make[6]: *** [all] Error 2 > make[6]: Leaving directory > `/home/parham/Documents/TEST-LAVI/noxcore/build/src/nox/coreapps/pyrt' > make[5]: *** [all-recursive] Error 1 > make[5]: Leaving directory > `/home/parham/Documents/TEST-LAVI/noxcore/build/src/nox/coreapps' > make[4]: *** [all] Error 2 > make[4]: Leaving directory > `/home/parham/Documents/TEST-LAVI/noxcore/build/src/nox/coreapps' > make[3]: *** [all-recursive] Error 1 > make[3]: Leaving directory > `/home/parham/Documents/TEST-LAVI/noxcore/build/src/nox' > make[2]: *** [all] Error 2 > make[2]: Leaving directory > `/home/parham/Documents/TEST-LAVI/noxcore/build/src/nox' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory > `/home/parham/Documents/TEST-LAVI/noxcore/build/src' > make: *** [all] Error 2 > > > > > _______________________________________________ > nox-dev mailing list > nox-dev@noxrepo.org > http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org _______________________________________________ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org