Line 57: |
Line 57: |
| Extracted from: http://forums.contribs.org/index.php?topic=45447.0 | | Extracted from: http://forums.contribs.org/index.php?topic=45447.0 |
| | | |
− | By default, Firebird just allow access from local networks.<br> | + | By default, Firebird just allow access from local networks.<br>If you wanna to allow '''INTERNET ACCESS''' to your Firebird ('''NOT RECOMMENDED''') run: |
− | If you wanna to allow INTERNET ACCESS to your Firebird (NOT RECOMMENDED) run: | |
| <pre> | | <pre> |
| config setprop firebird access public TCPPort 3050 | | config setprop firebird access public TCPPort 3050 |
Line 74: |
Line 73: |
| status=enabled | | status=enabled |
| | | |
− | Additional note by TDBSOFT 1/1/2017<br> | + | Additional note by TDBSOFT 1/1/2017<br>There is a minor bug in the firebird-superserver service when you run the command<br> service firebird-superserver start<br>This will show the following result<br> Starting Firebird server [default] /usr/bin/dirname: extra operand `-daemon'<br> Try `/usr/bin/dirname --help' for more information. [ OK ] |
− | There is a minor bug in the firebird-superserver service when you run the command<br> | + | |
− | service firebird-superserver start<br> | + | <br>To resolve this issue edit the file /etc/init.d/firebird-superserver and change the line below |
− | This will show the following result<br> | + | |
− | Starting Firebird server [default] /usr/bin/dirname: extra operand `-daemon'<br> | + | <br> daemon --user=$FBRunUser "export FIREBIRD LD_LIBRARY_PATH; $GUARDIAN -pidfile $pidfile -daemon -forever"<br>to |
− | Try `/usr/bin/dirname --help' for more information. [ OK ]<br> | + | |
− | <br> | + | daemon <b>--check="X"</b> --user=$FBRunUser "export FIREBIRD LD_LIBRARY_PATH; $GUARDIAN -pidfile $pidfile -daemon -forever"<br> |
− | To resolve this issue edit the file /etc/init.d/firebird-superserver and change the line below<br> | + | |
− | daemon --user=$FBRunUser "export FIREBIRD LD_LIBRARY_PATH; $GUARDIAN -pidfile $pidfile -daemon -forever"<br> | |
− | to daemon <b>--check="X"</b> --user=$FBRunUser "export FIREBIRD LD_LIBRARY_PATH; $GUARDIAN -pidfile $pidfile -daemon -forever"<br>
| |
| See this article on the problem http://tracker.firebirdsql.org/browse/CORE-5069<br> | | See this article on the problem http://tracker.firebirdsql.org/browse/CORE-5069<br> |