Skip to content

Commit

Permalink
Install ivis server done.
Browse files Browse the repository at this point in the history
  • Loading branch information
RuslanPopenko committed Aug 9, 2016
1 parent 4848bb6 commit b563618
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
Binary file added docs/images/ivisServerStartPage.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion docs/quick_start/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ Install Maven
Download Tomcat server
~~~~~~~~~~~~~~~~~~~~~~

Current stable version is `8.54 <http://apache.ip-connect.vn.ua/tomcat/tomcat-8/v8.5.4/bin/apache-tomcat-8.5.4.tar.gz/>`_
We recommends download `8 version <https://tomcat.apache.org/download-80.cgi/>`_

Extract Tomcat folder from archive, in place what you want.



Expand Down
46 changes: 46 additions & 0 deletions docs/quick_start/walkthrough_install_ivis_server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,56 @@ Run application

In Terminal(Ctrl+ALt+T) input following commands

.. code-block:: bash
cd /home/../iVIS #path to iVIS project directory
mvn clean install -DskipTests
Go to project folder (/home/../iVIS/ivis-server/target).

Find there file iVIS.war, rename to ivis.war.

Copy file to directory where you download Tomcat (/home/../apache-tomcat-{version}/webapps).

If you have process on port 8080 you must kill it by input following command in Terminal

.. code-block:: bash
fuser -k 8080/tcp
Then go to Tomcat folder (/home/../apache-tomcat-{version}/bin).

Run Tomcat by input following command in Terminal.

.. code-block:: bash
cd /home/../apache-tomcat-{version}/bin
chmod +x startup.sh
./startup.sh
Open in your browser http://localhost:8080/ivis .

Login: admin
Password: password

If you see this image, everything is good, congratulations!

.. image:: /images/ivisServerStartPage.png

Shutdown Tomcat by input following command in Terminal.

.. code-block:: bash
cd /home/../apache-tomcat-{version}/bin
chmod +x shutdown.sh
./shutdown.sh
Expand Down

0 comments on commit b563618

Please sign in to comment.