I am using macOS Sierra 10.12.5, and I installed Neo4j using neo4j-community_macos_3_2_1.dmg. I chose the location of database as ~/Documents/default.graphdb when I was prompted, and Neo4j works fine at http://127.0.0.1:7474/browser/. However, I am not able to locate the .bin file that is usually located in the untarred installation folder if I downloaded Neo4j as a Unix console application tar.gz file. Where is the .bin file in this case?
It's in the application package itself, an app in OS X is actually a package structure you can explore.
Right-click on the app, choose Show Package Contents, and check the folder contents. It's under Contents/Resources/app/bin.
Related
Is there a way to have the NSIS built by Electron not re-install the app everytime it is clicked just like the MSI ? If the app is already installed I would like it to simply open it rather than re-installing.
I would use the MSI but when I open the app installed by it, it doesn't have read/write permissions from files inside the directory even if it is in Appdata (same folder as installation from NSIS). When installed from NSIS for some reason it gives read/write permissions to the app for files inside the installation directory.
Any help would be appreciated.
You need to edit your .nsi script file and do the check manually (skip the installation if an app is already installed) because there is no "switch" for that.
The issue with electron NSIS installers is that script is recreated every time (at least in the tutorials I saw) so you may lose any changes you made there.
In such case you cannot use the building pipeline, but you need to open the .nsi file with text editor, make the changes and compile everything with makensis.
Please post your script with more details.
i have installed Neo4j community edition. The Neo4j documentation said, that all jar files exist in the lib folder. The problem is that no lib folder exist. Is it possible to download the jar from another source?
Thanks
What OS did you install under? Do you have a lib directory within the main Neo4j directory? Under my dev sandbox on Windows I have 20 jars in a standard install in the lib directory.
If you are using Windows, there is the installer-based distribution and the zipped no-installer version. I like the no-installer version which is easier to set up as a Windows service which can be more easily controlled/communicated with via command-line etc.
I developed blackberry app using phonegap.
With the help of command prompt,
I build the project with BlackBerry Code signing key,then it can successfully build
and gives the OTAInstall folder contains cod and jad file.
But my client wants to only one jad file to install their device.
Actually I tried to install the jad file without cod file, at that time the device shown error.
So, Everytime I install the app to my device, I used the OTAInstall folder containing the cod and jad file.
How can I convert this lot of files into one single file?
Only one jad file won't install the application. Anyway you need either jad file + cod file(s), or alx file + cod file(s).
jad file + cod stands for OTA install via browser
alx file + cod stands for desktop computer installation via BB Desktop Manager and usb-cable, attached to BB Device.
There's a workaround, it works only for desktop installation and it has a side effect.
Your application won't be listed under Applications list in device options.
You can use javaloader.exe utility that loads and erases cod files on attached BB device. This utility can be found in JDE (Java Development Environment) bin folder.
So, create bat-file that invokes javaloader and loads cod-files to connected device. And pack it along with your cod file(s) in SFX-archive, that runs that bat file when archive has been unpacked.
I have deployed my .cod , .html, and .htaccess file on the web server for blackberry application distribution having size of 237kb but it does not allow to download.
What is the proper way to upload it?
Here is a nice Tutorial on how to do it :
http://assets.handango.com/marketing/developerTeam/BlackBerryOTADeployment.pdf
All you have to do is build the application with the eclipse plugin that you installed from RIM.
From eclipse you package the project
1.1 Right click on the project
1.2 BlackBerry
1.3 Package
Then go to the folder deliverables
2.1 Go to the folder with your version,mine is 5.0.0
2.2 Extract the application jar
2.3 Take the *.cod files(there should more than one if the app is bigger than 64k) and the .jad file and put it on your webserver
now you point your BlackBerry browser to the .jad file and install your new app
Don't forget to sign your application if needed.
Usually the problem because the jad file can't find the jar and cod files.
Are you sure you have pointed it to the absolute path of the jar.
instead of writing RIM-COD-URL : myApp.Jar you should write it : http://www.mydomain.com/myfolderlocation/myApp.jar
and so for the other file.
And don't forget to rename the COD to zip file and extract the zip file contents(which contain COD files) and upload these files. just remove the zip file after that
I am trying to install the application developed by me on Blackberry device. I am using Blackberry Pearl 8100 and desktop manager 4.3.0.17 to load the application.
I am getting the error message as:
The application cannot be installed because some files are missing.
Make sure you're packaging your application as as ALX file - basically a zip file that includes your COD and an ALX (xml) descriptor file. Desktop Manager can't install apps just from a COD file (although if you have the JDE installed, you can use "javaloader" to load an app from a COD).
Try reinstalling device and desktop manager softwares.
I am not sure of this solution,but it might help.
Have you checked that you're cod file is in the same directory as the alx file when you install it?
When do you receive the error, on application startup or when you enter a specific screen?
Are you using any 3rd party software or libraries (e.g. ksoap)?