FishEye 1.5 : Environment Variables
This page last changed on Jan 10, 2008 by edawson.
Environment variables are system-wide settings that are required for certain applications. Instructions on Setting Environment Variables are here. JAVA_HOMEThe JAVA_HOME environment variable is used by FishEye to select the Java Virtual Machine (JVM) to be used to run FishEye. If this environment variable is not set, FishEye will use whatever Java executable is available on the path. In Linux systems, this may sometimes be GCJ-based which causes some problems running FishEye. See the instructions on setting JAVA_HOME. FISHEYE_OPTSFishEye uses the FISHEYE_OPTS environment variable to pass parameters to the Java Virtual Machine (JVM) used to run FishEye. This is typically used to set the Java heap size available to FishEye. With a Sun JVM, for example, you would use: FISHEYE_OPTS=-Xmx256m This would give FishEye a 256 MByte heap. See Tuning FishEye for more information. It is possible to put other JVM options into the FISHEYE_OPTS environment variable. For example, the -Xrs options should be used if running FishEye as a service under Windows, to prevent the JVM closing when an interactive user logs out. FISHEYE_ARGSFISHEYE_ARGS are the arguments which will be passed to FishEye when it is started. You can set this to --debug, for example, if you always want to have FishEye debugging put into the FishEye log files. FISHEYE_LIBRARY_PATHThe FISHEYE_LIBRARY_PATH environment variable tells FishEye where it should look to load any additional native libraries. FISHEYE_INSTThe FISHEYE_INST variable tells FishEye where to store its data. If you wish to separate FishEye's data from its application files in FISHEYE_HOME, you should use this variable. Read more about this variable in the Installation Guide.
Setting Environment Variables under Windows XP(Linux instructions are here) 1. Click 'Start' > 'Control Panel' > 'System'. Screenshot: System Properties under Windows XP Control Panel 2. Click the 'Advanced' tab. Screenshot: Environment Variables under Windows XP Control Panel 4. Click 'New'. FISHEYE_OPTS 6. In the 'Variable value' field, enter the setting as required. This may be quite cryptic, for example the default value for FISHEYE_OPTS is this: -Xmx256m Screenshot: Setting Environment Variables under Windows XP Setting Environment Variables under Linux or UNIX based platformsThere are a number of ways to set environment variables on Linux or UNIX based systems (including Mac OS X). Here are just two: For your current user, 1. Open up a shell or terminal window vi ~/.profile (vi is a text editor, you can use another if desired) export (variable name)=(variable value) Where (variable name) and (variable value) are the environment variable elements. For example, if the environment variable you are setting is FISHEYE_OPTS, and the variable value is -Xmx256m, you would type the following: export FISHEYE_OPTS=-Xmx256m Add this command on its own line at the end of the file. For all users in the system, 1. Open up a shell or terminal window If you are using a GUI, you may not need to open up the shell. Instead, you might be able to open the file directly in a graphical text editor. ![]() ![]() ![]() |
![]() |
Document generated by Confluence on Apr 14, 2008 23:36 |