如何在CentOS 7中安装和配置OrientDB社区版
如何在CentOS 7中安装和配置OrientDB社区版
下载OrientDB
wget https://orientdb.com/download.php?file=orientdb-community-2.2.17.tar.gz&os=linux
解压
tar -zxvf orientdb-community-2.2.17.tar.gz
进入解压目录
cd orientdb-community-2.2.17/
启动服务
./bin/server.sh
访问 http://localhost:2480/
创建数据库
在OrientDB的Web管理界面中,点击“New DB”按钮,创建一个名为“test”的数据库。
创建用户
点击“Users”标签,点击“New User”按钮,创建一个用户名为“test”,密码为“test”的用户。
创建数据表
点击“Schema”标签,点击“New Class”按钮,创建一个名为“test”的数据表。
插入数据
点击“Browse”标签,点击“test”数据表,点击“New Record”按钮,插入一条数据。
查询数据
点击“Query”标签,在“SQL”文本框中输入SQL语句,点击“Execute Query”按钮,查询数据。
相关文章