這篇文章給大家分享的是有關(guān)neo4j如何安裝配置的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
我們提供的服務(wù)有:成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、濟(jì)寧ssl等。為上1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的濟(jì)寧網(wǎng)站制作公司
注:網(wǎng)上找了許多教程,發(fā)現(xiàn)都不太適合0基礎(chǔ)的用戶,所以就自己寫了一下。
推薦使用1.x版本,經(jīng)測試2.3.3大量函數(shù)被遺棄。
安裝啟動
官網(wǎng)下載tar包
解壓,進(jìn)入bin下,運(yùn)行./neo4j
在url中打開localhost:7474即可使用
配置
數(shù)據(jù)庫的location設(shè)置。
conf/neo4j-server.properties中第14行org.neo4j.serve.database.location=進(jìn)行修改
使用
1.web可視化neo4j的工具是webadmin,打開方式:url中打開local/webadmin,即可使用
注:代碼修改數(shù)據(jù)庫,似乎需要每次重啟neo4j才能在webadmin中顯示,也有可能是數(shù)據(jù)同步慢
2.簡單實(shí)例(java操作neo4j)
package neo4j; import java.io.File; import java.io.IOException; import javax.management.relation.Relation; import org.neo4j.graphdb.GraphDatabaseService; import org.neo4j.graphdb.Node; import org.neo4j.graphdb.Relationship; import org.neo4j.graphdb.RelationshipType; import org.neo4j.graphdb.Transaction; import org.neo4j.graphdb.factory.GraphDatabaseFactory; import org.neo4j.io.fs.FileUtils; public class test { public enum RelTypes implements RelationshipType{ KNOWS } private static void registerShutdownHook( final GraphDatabaseService graphDb ) { // Registers a shutdown hook for the Neo4j instance so that it // shuts down nicely when the VM exits (even if you "Ctrl-C" the // running example before it's completed) /*為了確保neo4j數(shù)據(jù)庫的正確關(guān)閉,我們可以添加一個關(guān)閉鉤子方法 * registerShutdownHook。這個方法的意思就是在jvm中增加一個關(guān)閉的 * 鉤子,當(dāng)jvm關(guān)閉的時候,會執(zhí)行系統(tǒng)中已經(jīng)設(shè)置的所有通過方法 * addShutdownHook添加的鉤子,當(dāng)系統(tǒng)執(zhí)行完這些鉤子后,jvm才會關(guān)閉。 * 所以這些鉤子可以在jvm關(guān)閉的時候進(jìn)行內(nèi)存清理、對象銷毀等操作。*/ Runtime.getRuntime().addShutdownHook( new Thread() { @Override public void run() { graphDb.shutdown(); } } ); } public static void main(String[] args) throws IOException { FileUtils.deleteRecursively( new File( "db" ) ); GraphDatabaseService graphdb=new GraphDatabaseFactory().newEmbeddedDatabase("db"); Relationship relationship; Transaction tx=graphdb.beginTx(); try{ Node node1=graphdb.createNode(); Node node2=graphdb.createNode(); node1.setProperty("message", "Hello"); node2.setProperty("message", "World"); relationship = node1.createRelationshipTo(node2, RelTypes.KNOWS); relationship.setProperty("message", "brave neo4j"); tx.success(); System.out.println("successfully"); } finally{ tx.finish(); } registerShutdownHook(graphdb); } }
感謝各位的閱讀!關(guān)于“neo4j如何安裝配置”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!