Tag: 东方

如何访问Docker中安装的OrientDB bin脚本

我在Docker里面安装了OrientDB ,我想在bin文件夹下运行脚本,但是我找不到像普通的浏览器那样访问OrientDB的目录。 有什么办法可以像本地安装一样使用Docker安装,这样我就可以看到OrientDB安装的所有文件夹并与之交互了。感谢

为什么orientDB连接到docker的localhost被拒绝

我在Docker上构build了orientDB和appserver。 他们也在运行。 这是docker上的列表容器: core@localhost ~ $ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 01abef0204a7 fxrialab/appserver:latest /usr/sbin/httpd -DF 30 minute s ago Up 30 minutes 0.0.0.0:443->443/tcp, 0.0.0.0:80->80/tcp appserver f6d0631bb092 fxrialab/orient:latest /bin/sh -c cd /opt/o 30 minute s ago Up 30 minutes 0.0.0.0:2424->2424/tcp, 0.0.0.0:2480->2480/tcp appserver/db,orient ebc1386250b9 fxrialab/data:latest /usr/sbin/sshd -D 30 minute s ago Up […]

OrientDB Studio不在Windows Server 2016的Docker容器中启动

我正在用下面的Dockerfile创build一个OrientDB容器 FROM microsoft/windowsservercore LABEL Description="OrientDB" Vendor="OrientDB" Version="2.2.16" #install java #https://alexandrnikitin.github.io/blog/running-java-inside-windows-container-on-windows-server/ RUN powershell (new-object System.Net.WebClient).Downloadfile('http://javadl.oracle.com/webapps/download/AutoDL?BundleId=210185', 'C:\jre-8u91-windows-x64.exe') RUN powershell start-process -filepath C:\jre-8u91-windows-x64.exe -passthru -wait -argumentlist "/s,INSTALLDIR=c:\Java\jre1.8.0_91,/L,install64.log" RUN del C:\jre-8u91-windows-x64.exe RUN powershell -Command $path = $env:path + ';C:\Java\jre1.8.0_91\bin'; Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\' -Name Path -Value $path RUN powershell -Command \ $progressPreference = 'silentlyContinue' ; \ $ErrorActionPreference = 'Stop'; […]

由于Docker数据,Ubuntu 14.04卷磁盘已满

我一直在尝试使用orientdb设置graphics数据库。 所以我尝试使用下列命令的卷 docker run -d -p 2424:2424 -p 2480:2480 -v config:/orientdb/config -v database:/orientdb/databases -v backup:/orientdb/backup -e ORIENTDB_ROOT_PASSWORD=mypasswdhere orientdb:latest 我使用卷的主要动机是在杀死容器后将数据存储在数据库中。 但是我经常使用这个命令启动服务器。 现在它占用了我的磁盘空间,所以我猜这个命令每次执行时都会创build一个新的副本。 有人可以指出一个正确的方法来使用现有的卷在docker中使用存储的数据,并清除频繁执行此命令重新创build的冗余数据?