Environment variables are a set of dynamic named values that can affect the way running processes will behave on a computer.
2
votes
4answers
157 views
Standard C usage of getenv and safe practices
I am trying to write C code which makes use of some ENV variables in a UNIX environment. The question is: Could reading variables (for example getenv()) cause buffer overflow? Moreover, how can I find ...
-1
votes
2answers
335 views
How do I read an environment variable in Verilog/System Verilog?
How do I read an environment variable in Verilog ? (Running on a VCS simulator)
I am trying to accomplish
File=$fopen("$PATH/FileName","r");
$PATH is an environment variable.
0
votes
1answer
69 views
Command line tools/bash scripts with state
I'm trying to write a simple single-file shell script that's supposed to do a google search and output the titles of the first five results:
> lookup search "Stack Overflow"
100 results
1. Stack ...
1
vote
2answers
48 views
In static (lexical) scope, when are the variable/declaration identifiers bound?
In static scoping, the identifiers can be determined by analyzing/parsing the source code (versus dynamic scoping which needs to, more or less, know the callers environment).
My question is this, ...
1
vote
0answers
36 views
how to get values from server.js to controller in app directory on nodeJs and compoundjs
am new to nodeJs,
i declare a variable in server.js as
var globals = module.exports = function getLimits() {
params = {};
if ( process.env.NODE_ENV == "production")
{
params.limits = 2;
}
...
0
votes
2answers
877 views
Could not resolve placeholder for context:property-placeholder
I am trying to set my app to use different data source definitions, based on an environment variable, but I'm running into the below error. I looked at many similar questions, but they don't seem to ...
0
votes
1answer
162 views
Why can't python read my environment variables?
I'm working with Django and I'm trying out to set several environment variables that define which settings are imported.
I use the following folder herarchy:
project_folder>
app_folder>
...
0
votes
2answers
646 views
Jenkins: setting env variable from shell script
I have a bash script that I execute from a Jenkins job, using "execute shell".
The script starts an EC2 instance and sets an host variable containing the host name of the new instance.
I would like ...
1
vote
1answer
80 views
Are environment variables affected after impersonating and loading a user profile in a service?
I have a Windows service running under a LocalSystem account and I am trying to access some user-specific environment variables. When I call ExpandEnvironmentStrings("%AppData%"), I get ...
0
votes
0answers
37 views
How can I use a shell enviroment variable in httpd config files?
I am trying to use shell environment variable in httpd.conf
Followed this instructions:
http://httpd.apache.org/docs/2.2/configuring.html#syntax
But my variable is not being resolved
here is the ...
0
votes
2answers
72 views
How to update environment variable on the same session (immediately) on powershell?
I would like to write some scripts on powershell, it involve using the environment variable on windows
here is the example of the script
test.ps1
setX number 456
echo $env:number
I found that ...
1
vote
1answer
91 views
how to run a shell script with export command in crontab
I have a shell script that exports values of variables when executed. The same values will be used in another script.
How to run this script(test.sh) in cron.
#!/bin/sh
export I="10"
echo $I
I will ...
0
votes
1answer
81 views
Copy a external css file into web-app css folder in grails
I have an external css file which I need to read at the gsp page.
I have created a environment variable as "SAM_THEME".
In my bootstrap.groovy file I have read the external css file path.
def init ...
0
votes
0answers
36 views
Symfony2 always on Production enviroment with ngix + FastCGI PHP
I have my env with the following
Windows 8
Nginx 1.3.12
PHP 5.3.3
Run php as CGI
php-cgi -b 127.0.0.1:9000
Setup nginx
upstream phpfcgi {
server 127.0.0.1:9000;
}
server
{
//...
...
3
votes
3answers
78 views
Rigid set JAVA_HOME variable in Linux [duplicate]
I'm trying to run all hadoop daemons with the command
./start-all.sh
from the main host cluster. As a result of execution several times gave out
starting namenode, logging to ...
1
vote
0answers
37 views
Getting unicode answer from os.environ? [duplicate]
I would like to call os.environ['UserProfile'] on my windows system. The value may be unicode, however the os.environ dict returns str types only, with non-ascii chars converted to question marks.
...
0
votes
2answers
607 views
Setting java path in .bat file
On Windows 8, I've got a bat file with the following contents:
@echo off
echo Setting JAVA_HOME
set JAVA_HOME=C:\Program Files\Java\jdk1.6.0_39
echo setting PATH
set PATH=C:\Program ...
0
votes
1answer
107 views
List of environment variable in Objective C?
I need list of environment variable that are used in Objective C.
e.g NSObjCMessageEnabled: YES which is used for method logging. Please list down all such methods.
0
votes
2answers
207 views
Puppet agent daemon not reading a facter fact (EC2, cloud-init)
I am using puppet to read a fact from facter, and based on that I apply a different configuration to my modules.
Problem:
the puppet agent isn't seeing this fact. Running puppet agent --test ...
0
votes
2answers
185 views
Setting environment variable for Eclipse?
I have set the CLASSPATH and HOME_PATH for my JDK in the windows environment variables, do I need to set anything similar for Eclipse in order to compile Android programmes?
The problem I'm having is ...
2
votes
0answers
24 views
Possible solutions for testing environment settings, dependencies on client machines
I've been trying to find a method, or piece of software that can quickly automate tests of correct configuration and setup of user environments on client machines.
Tests include that users have ...
1
vote
1answer
47 views
cmd environment variable behaviour unclear
I'm kind of struggling with cmd.exe so let me put this in code:
:: Set an environment variable var to `pwd`
:: (forget about the backslashes)
C:\somedir>set ...
0
votes
1answer
83 views
ANT does not load my environment variables correctly
I have a problem with an ant script so I added some echos to finde the source of the error. I guesed that it might be the environemt variable for my Android SDK so i added
<echo level="info"> ...
2
votes
2answers
224 views
Replacing regular expression token with environment variable in PowerShell
Having a bit of a fight with PowerShell. I'm trying to replace tokens in a text file with the values of environment variables. For example, suppose my input file looks like this:
Hello ...
0
votes
1answer
234 views
modifying QTP imported Environment variables
Using QTP, I need to import environmental variables from an XML sheet, but there that is the imported ones are the imported Environmental variables are on read only mode, it cannot be edited.
I need ...
0
votes
1answer
27 views
Setting and environment variable inside IF block
Setting the value of environment variable BOOBOO inside the if block does not appear to set it. However, it is set after the if block ends. Why does it not have a value inside the if block?
Running ...
1
vote
1answer
90 views
Passing null string value via environment variable to TSQL script
I have a DOS batch file I want to use to invoke a TSQL program.
I want to pass the names of the databases to use. This seems to work.
I want to pass the PREFIXES for the names of the tables I want to ...
0
votes
1answer
144 views
What is the best way to configure my RubyMotion App for Development, Testing, and Production Environments
I'm using RubyMotion to build an iOS app.
I am using Facebook and Parse.
I have set up three different Facebook and Parse applications.
How should I set up RubyMotion to use the correct credentials ...
1
vote
1answer
117 views
Qmake not replacing environment variables when creating visual studio project?
When using qmake to create a project on Windows 7 (using Visual Studio 2010):
qmake -tp vc OmniScribe.pro
In my .pro file I have (among many other things) under INCLUDEPATH=+
...
0
votes
1answer
72 views
how to set an environment variable in emacs shell (eshell)?
I cant seem to find this anywhere..a lot of times I run commands with an environment variable set like:
export BLA=foo && ./somebinary
how do i do this in eshell? I think the command is ...
0
votes
0answers
68 views
Force Eclipse and Tomcat to always refresh Environment Variables in properties file when publishing
I have a catalina.properties file that uses some Environment Variables for my encrypted password (db.password=${env.PW}).
When I update my password in the Windows System Environment Variables and ...
3
votes
1answer
106 views
The data in php://input is not equal to the data parsed and placed in $_POST
I'm working out this odd bug in Wordpress, and I don't know how wordpress works, but I ran around for an hour trying to isolate the problem and see where the root of the issue comes from.
Turns out ...
3
votes
1answer
46 views
Linux: get the location of logfiles
I would like to have my (python) script (located anywhere) write a logfile
and place that logfile in an appropriate location. In Linux:Debian this could be /var/log.
I was wondering if such a logfile ...
0
votes
0answers
84 views
Build error - variable environment not set correctly
I'm trying to build an opensource code on windows.
I get the error:
Warning: QT_QMAKE_EXECUTABLE reported QT_INSTALL_LIBS as D;/Qt/4.8.4/lib
Warning: D**;**/Qt/4.8.4/lib does NOT exist, Qt must NOT ...
1
vote
1answer
107 views
How to set a python path when using runit
I am am using runit to manage a process on Ubuntu 12.04. I get the below error in the logs when I run:
sv up test/
I assume it is a python path issue.
ImportError: No module named ...
0
votes
1answer
138 views
Environment variable not working
I'm trying to setup a PATH environment variable for java. When I setup the variable value as the following, it works perfectly fine while typing "java" in cmd
C:\Program Files ...
1
vote
2answers
512 views
Java environment variables set correctly, but java is not finding the jars
Summary
Java environment variables correctly set, as seen from echo-ing them. However, jars are only seen when explicitly included with javac command.
Details
This is not specifically related to ...
4
votes
1answer
143 views
How to escape colon (:) in $PATH on UNIX?
I need to parse $PATH environment variable in my application.
So I was wondering what escape characters would be valid in $PATH.
I created a test directory called /bin:d and created a test script ...
0
votes
1answer
65 views
Solving the hassle of starting Apache Tomcat from command line by navigating to bin directory
I am currently self-studying servlets. It has been cakewalk so far.
I compile my Java programs from command line and I have set the classpath environment variable to D:\Program ...
0
votes
0answers
78 views
How to create windows shortcuts with environmental variables in an argument as part of an executable?
I want to create a windows shortcut like the following.
e.g) myexecutable.exe -argument1:a1,a2,a3 ... etc
because of a few restrictions a1,a2,a3 is too long to be placed in a shortcut.
So ...
5
votes
3answers
457 views
Node.js forever with environment variable
The command I run on my server to start my node app is:
sudo IS_PROD=1 node app.js
I have forever installed but can't seem to pass in the environment variable.
sudo IS_PROD=1 forever node app.js
...
-1
votes
2answers
105 views
0
votes
1answer
440 views
How to set environment variable for C# debugging
I'm trying to load managed and native dll into my C# application. I want to set the PATH environment variable, so the application can find the dlls to be loaded. In C++ that's easy, but how can I do ...
1
vote
2answers
158 views
There is no javax.servlet package in my JDK
I am following Head First: Servlet and JSP and I was writing my first Servlet.
I tried to compile it using command line and I got an error that package javax.servlet does not exist.
So far, I have ...
1
vote
3answers
356 views
How to change the Path variable in ant exec task?
I tried setting the Path variable in ant exec task using this link. But its not working somehow. I am trying to add THRIFT_HOME which is set to basedir currently and I have the thrift.exe file in the ...
0
votes
1answer
136 views
Set environment variable from Azure Role to use in PHP
I'm using this code:
Environment.SetEnvironmentVariable("ConnectionString", connString, EnvironmentVariableTarget.[User|Process|Machine]);
on OnRoleEnvironmentChanged event of Azure RoleEntryPoint ...
0
votes
1answer
79 views
python determine the system PATH system agnosticly [duplicate]
Possible Duplicate:
How do I find out my python path using python?
A program that I am writing needs to determine if certain other programs are installed on the system. Specifically a ...
0
votes
4answers
82 views
Search for a file in $PATH on Linux in C
I would like to test whether GNUPlot is installed on the system on which my program is running.
For that, I figured I'll test for the existence of the gnuplot executable in the user's install ...
0
votes
1answer
540 views
How to set java environment variable on mac
How do I set a java environment variable that can be read with System.getenv() on Mac OS X Lion? I developing in Eclipse.
I used this command in the terminal export VAR_NAME=Value but ...
3
votes
1answer
477 views
Set Environment Variable for process
can someone help me with understanding the Environment Variable concept?
In a C# program I need to call an executable. The executable will call some other executables that reside in the same folder. ...





