You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is Issue 1071 moved from a Google Code project.
Added by 2012-09-25T09:38:26.000Z by t.broyer.
Please review that bug for more context and additional comments, but update this bug.
Closed (Fixed).
Original labels: Type-Defect, Priority-Medium, v1.2.0
Original description
<b>OrientDB release? (If you're using a SNAPSHOT please attach also the build</b>
number found in "build.number" file):
1.2.0-20120924.234740-36
<b>What steps will reproduce the problem?</b>
"service orientdb start"
with /etc/init.d/orientdb being a symlink to /opt/orientdb/bin/orientdb.sh
On CentOS 5.7; root's $SHELL being /bin/bash
<b>What is the expected output? What do you see instead?</b>
Server won't start.
orientdb.err says:
./server.sh: line 53: syntax error near unexpected token `else'
./server.sh: line 53: `else'
The issue is the following snippet in server.sh:
if [ -b "${CONFIG_FILE}" ]
then
else
CONFIG_FILE=$ORIENTDB_HOME/config/orientdb-server-config.xml
fi
It should rather be:
if [ ! -b "${CONFIG_FILE}" ]
then
CONFIG_FILE=$ORIENTDB_HOME/config/orientdb-server-config.xml
fi
The text was updated successfully, but these errors were encountered:
This is Issue 1071 moved from a Google Code project.
Added by 2012-09-25T09:38:26.000Z by t.broyer.
Please review that bug for more context and additional comments, but update this bug.
Closed (Fixed).
Original labels: Type-Defect, Priority-Medium, v1.2.0
Original description
The text was updated successfully, but these errors were encountered: