OrientDBを使用してサーバー上のデータをローカルホストに保管したいと考えています。 https://github.com/orientechnologies/PhpOrientの公式ライブラリを使用しています。間違っている可能性が何OrientDB - ソケットから読み取ることができません
Fatal error: Uncaught exception 'PhpOrient\Exceptions\SocketException' with message
'socket_read(): unable to read from socket [104]: Connection reset by peer' in
/Library/WebServer/Documents/T1/vendor/ostico/phporient/src/PhpOrient/Protocols/Binary/OrientSocket.php on line 147
:接続しようとすると はしかし、私は、次のエラーメッセージを取得しますか? localhost:2480のOrientDB Studioに接続して接続することができますが、ここで何かが間違っているようです。
<?php
require "../vendor/autoload.php";
use PhpOrient\PhpOrient;
$client = new PhpOrient('localhost', 2480);
$client->connect('root','pwd');
echo "1";
$client->dbList();
?>
答えがあなたのために働いた場合は、その横のチェックマークをクリックして、あなたの受け入れられた回答としてマークする必要があります。 –