We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9bae61 commit aff8b7eCopy full SHA for aff8b7e
app/code/Magento/Elasticsearch/Setup/Validator.php
@@ -38,6 +38,11 @@ public function validate(): array
38
$errors = [];
39
try {
40
$client = $this->clientResolver->create();
41
+ echo "Check elasticsearch8 server up or not with command line\n";
42
+ shell_exec("curl localhost:9200/");
43
+
44
+ $output = shell_exec('netstat -tuln');
45
+ echo "<pre>$output</pre>";
46
if (!$client->testConnection()) {
47
$errors[] = 'Could not validate a connection to Elasticsearch.'
48
. ' Verify that the Elasticsearch host and port are configured correctly.';
0 commit comments