Installing NSIA » History » Version 16
Luke Murphey, 07/17/2010 12:08 PM
1 | 10 | Luke Murphey | {{>toc}} |
---|---|---|---|
2 | 10 | Luke Murphey | |
3 | 1 | Luke Murphey | h1. Installing NSIA |
4 | 1 | Luke Murphey | |
5 | 1 | Luke Murphey | h2. Prerequisites |
6 | 1 | Luke Murphey | |
7 | 3 | Luke Murphey | NSIA requires "Java runtime environment (JRE)":http://java.sun.com/javase/downloads/index.jsp 1.6 or later. |
8 | 1 | Luke Murphey | |
9 | 15 | Luke Murphey | Note that some Linux operating systems (such as Ubuntu) include GCJ instead of Sun Java. GCJ is not currently supported and should not be used for running the V. On Ubuntu, run the following command to install Java (note that the Debian package will automatically prompt you to install this since it Sun Java is specified as a dependency): |
10 | 1 | Luke Murphey | |
11 | 11 | Luke Murphey | @sudo apt-get install sun-java6-jre@ |
12 | 1 | Luke Murphey | |
13 | 2 | Luke Murphey | Otherwise, go to Sun Microsystems’ website to "download the Java 6 JRE":http://java.sun.com/javase/downloads/index.jsp. |
14 | 1 | Luke Murphey | |
15 | 1 | Luke Murphey | h2. Installation Methods |
16 | 1 | Luke Murphey | |
17 | 15 | Luke Murphey | NSIA has three installation methods: Windows installer, Debian package and the archive method (no installer). |
18 | 1 | Luke Murphey | |
19 | 1 | Luke Murphey | h3. Windows Installer |
20 | 1 | Luke Murphey | |
21 | 1 | Luke Murphey | The installer only works on Windows. In addition to installing the application, the installer will install NSIA as a service. By default, it uses the internal database. An external database can be configured by updating the config.ini file (see below). |
22 | 1 | Luke Murphey | |
23 | 15 | Luke Murphey | h3. Debian Package (for Ubuntu) |
24 | 15 | Luke Murphey | |
25 | 15 | Luke Murphey | The Debian package (.deb) is designed for installation on recent versions of Ubuntu. Note that the installer will ask the user during the install to specify the administrator account username and password. The package will automatically set NSIA to start at boot. Once the install is done, you can access NSIA with a web browser to http://localhost:8080. |
26 | 15 | Luke Murphey | |
27 | 1 | Luke Murphey | h3. Archive Method (No Installer) |
28 | 1 | Luke Murphey | |
29 | 1 | Luke Murphey | The zip archive should be used on non-Windows platforms (but can also be used on Windows). After unzipping the archive, run install.sh (on Unix/Linux) or install.bat (on Windows) to create the default user and initialize the database. |
30 | 1 | Luke Murphey | |
31 | 15 | Luke Murphey | h2. Configuring Java Runtime |
32 | 4 | Luke Murphey | |
33 | 1 | Luke Murphey | You may need to change the amount of memory that the Java runtime uses. The JVM settings can be configured in etc/config.ini. The config.ini file will be loaded by the ThreatFactor binaries (such as ThreatFactor NSIA.exe) and user to configure the Java runtime. Note that the settings in this file won't affect NSIA if you run it directly by calling Java. |
34 | 1 | Luke Murphey | |
35 | 1 | Luke Murphey | Below is an example of the a configuration file: |
36 | 1 | Luke Murphey | |
37 | 1 | Luke Murphey | <pre> |
38 | 1 | Luke Murphey | # This sets the arguments sent to the Java virtual machine |
39 | 1 | Luke Murphey | JVM.Arguments=-Xmx512m |
40 | 1 | Luke Murphey | </pre> |
41 | 12 | Luke Murphey | |
42 | 1 | Luke Murphey | h2. Running as a Service / Daemon |
43 | 1 | Luke Murphey | |
44 | 1 | Luke Murphey | It you want NSIA st start every time the host starts, then it will need to be installed as a daemon (Unix) or service (Windows). |
45 | 1 | Luke Murphey | |
46 | 12 | Luke Murphey | h3. Installing as a Daemon (Linux/Unix) |
47 | 1 | Luke Murphey | |
48 | 15 | Luke Murphey | On Linux, you can use one of the init scripts to have NSIA start when the host boots. Note that Debian package sets this up for you. The init scripts are provided with zipped archive version of NSIA. Copy the init script into the /etc/init.d/ directory. You’ll need to create symlinks in the appropriate run levels for NSIA to start automatically on startup. On Ubuntu, you can use update-rc.d to create the symlinks for you: |
49 | 1 | Luke Murphey | |
50 | 1 | Luke Murphey | <pre> |
51 | 1 | Luke Murphey | sudo update-rc.d -f nsia defaults |
52 | 1 | Luke Murphey | sudo chmod 755 /etc/init.d/nsia |
53 | 1 | Luke Murphey | </pre> |
54 | 1 | Luke Murphey | |
55 | 1 | Luke Murphey | The init script assumes that NSIA is installed in /opt/nsia; edit the init script if it is installed in another location. Additionally, you will need to edit the init script if you want to change the command-line arguments that are sent to NSIA (for example, if you wish to specify the amount of memory that the Java runtime allocates, set the location of the config file, etc.). |
56 | 1 | Luke Murphey | |
57 | 1 | Luke Murphey | Note that NSIA should start after networking since it will try to initiate scanning after starting. |
58 | 1 | Luke Murphey | |
59 | 12 | Luke Murphey | h3. Installing as a Service (Windows) |
60 | 1 | Luke Murphey | |
61 | 15 | Luke Murphey | On Windows, NSIA needs to be installed as a service to automatically run every time the system starts. Note that the Windows installer does this for you automatically. To do this, install the included Win32 service using sc.exe: |
62 | 1 | Luke Murphey | |
63 | 1 | Luke Murphey | <pre> |
64 | 1 | Luke Murphey | sc create "nsia" DisplayName= "Threatfactor NSIA" binPath= "C:\Program Files\ThreatFactor.com\NSIA\bin\ThreatFactor NSIA Service.exe" |
65 | 1 | Luke Murphey | </pre> |
66 | 1 | Luke Murphey | |
67 | 1 | Luke Murphey | The above command assumes that NSIA is installed in "C:\Program Files\ThreatFactor.com\NSIA\bin\ThreatFactor NSIA Service.exe"; change the arguments as necessary. Additionally, make sure that the ''ThreatFactor NSIA Service.exe'' file is in the same path as the ''nsia.jar'' file (it won't be able to find it otherwise). |
68 | 6 | Luke Murphey | |
69 | 6 | Luke Murphey | h2. Using an External Database |
70 | 6 | Luke Murphey | |
71 | 14 | Luke Murphey | By default, NSIA uses an internal database. However, it is possible to use a database that is accessed over a JDBC connection. See [[External Database]] for more information. |
72 | 7 | Luke Murphey | |
73 | 9 | Luke Murphey | h2. Running NSIA |
74 | 9 | Luke Murphey | |
75 | 9 | Luke Murphey | NSIA can be run three different ways: with the interactive CLI, GUI or as a service/daemon: |
76 | 9 | Luke Murphey | |
77 | 16 | Luke Murphey | | |*On Windows* |*On Unix/Linux* | |
78 | 16 | Luke Murphey | |Run From the Command-Line |Run ThreatFactor NSIA CLI.exe |Run "./ThreatFactor NSIA" | |
79 | 16 | Luke Murphey | |Run the GUI |Run ThreatFactor NSIA.exe |Run "./ThreatFactor NSIA GUI" | |
80 | 16 | Luke Murphey | |Run as a Windows Service |Start it from the command-line with "net start nsia" or with services.msc |NA | |
81 | 16 | Luke Murphey | |Run as a Unix Daemon |NA |sudo /etc/init.d/nsia start | |
82 | 9 | Luke Murphey | |
83 | 7 | Luke Murphey | h2. Configuring SSL |
84 | 7 | Luke Murphey | |
85 | 13 | Luke Murphey | By default, the web-interface does not use SSL. However, NSIA can be [[Configuring SSL|setup to use SSL]] instead. |