Hi Bhavya, It looks like maybe a permissions issue with accessing the "config/elasticsearch.yml" file. I would just find that file and add these lines to the top of the file:
# ----------------- FOR TESTING ONLY ----------------- # - THESE SETTINGS SHOULD BE REVIEWED FOR PRODUCTION - node.max_local_storage_nodes: 1 node.local: true index.number_of_shards: 1 index.number_of_replicas: 0 http.port: 9200 discovery.zen.ping.multicast.enabled: false discovery.zen.ping.unicast.hosts: ["localhost"] cluster.routing.allocation.disk.threshold_enabled: false That's all this script really does (aside from installing a plugin that allows you to view the contents of Elasticsearch directly, which is not required to run Arches). Try that a see if that works. Cheers, Alexei Director of Web Development - Farallon Geographics, Inc. - 971.227.3173 On Sun, Feb 26, 2017 at 9:28 PM, Bhavya Ahuja <[email protected]> wrote: > Hello Arches Project Team, > > We tried to setup the Arches on "Windows 7" and its throwing and error > related to path which actually exists on system while tried to install > elastic search. > > Here are the steps we followed > 1. Install JDK (64-bit) (Download Url Below) > http://download.oracle.com/otn-pub/java/jdk/8u121- > b13/e9e7ea248e2c4826b92b3f075a80e441/jdk-8u121-windows-i586.exe > 2. Set Enviorment Variable (JAVA_HOME) and added jdk into system path > (C:\program files\jdk) > https://confluence.atlassian.com/doc/setting-the- > java_home-variable-in-windows-8895.html > 3. Install PYTHON (2.7.6) Specific Version. As its mentioned clearly that > higher version may create issue. > https://www.python.org/download/releases/2.7.6/ > 4. Install pip using Python Script > https://github.com/BurntSushi/nfldb/wiki/Python-& > -pip-Windows-installation > Download > https://bootstrap.pypa.io/get-pip.py > Command: > python get-pip.py > 5. Set Environment Variable (PYTHON_HOME) and added into system path > (C:\Python27) > 6. Install PostgreSql > https://www.enterprisedb.com/downloads/postgres- > postgresql-downloads#windows > Setup Enviorment Variable and added into system path (C:\Program > Files\PostgreSQL\9.3) > Setup port 5432 and password for postgre user as expected "pass" > 7. Install PostGIS > http://winnie.postgis.net/download/windows/pg93/buildbot > /postgis-bundle-pg93x64-setup-2.2.3-1.exe > > 8. Install Language Pack : > https://sourceforge.net/projects/openofficeorg.mirror/fi > les/4.1.3/binaries/en-US/Apache_OpenOffice_4.1.3_Win_x86_ > langpack_en-US.exe/download > 8. Made a folder in C:\ Drive called "Project" > 10. Cd Project > 11. pip install virtualenv==1.11.4 > 12 virtualenv ENV > 13 \ENV\Scripts\activate > 14 pip install arches > 15 pip install arches_hip > 16 python ENV\Scripts\arches-app create my_hip_app --app arches_hip > 18 Opened the settings.py file in my_hip_app/my_hip_app and added the > following setting > GDAL_LIBRARY_PATH = ‘C:/OSGeo4W64/bin/gdal111.dll’ > 19 cd my_hip_app > 20 python manage.py packages -o setup_elasticsearch > > This extracted the file elasticsearch.1.4.1.zip at desired location and > after this we got an error that path is incorrect and script execution > stopped. > > > Thank you in advance. > > Regards > Bhavya Ahuja > ARCHITECT @ DRONAH > www.dronah.org > > -- > -- To post, send email to [email protected]. To unsubscribe, > send email to [email protected]. For more > information, visit https://groups.google.com/d/forum/archesproject?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Arches Project" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- -- To post, send email to [email protected]. To unsubscribe, send email to [email protected]. For more information, visit https://groups.google.com/d/forum/archesproject?hl=en --- You received this message because you are subscribed to the Google Groups "Arches Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
