Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I try to start the Apache web server with an environment variable called start_apache.
But it does not work because of I don't see in the logs that the server started.

This is how my cmd file looks like:

@echo off
set test_var=works
@REM open cmd and type in: echo %stop_apache%
set start_apache=cd D:Program_filesx86Apache24in; httpd -k start;
set stop_apache=cd D:Program_filesx86Apache24in; httpd -k stop;

When I use the environment variable test_var, then it successfully displays works.
By the way I have already tried to use cmd as an administrator.

Does anybody know what I'm doing wrong?

question from:https://stackoverflow.com/questions/65863613/what-is-wrong-with-the-definitions-of-my-environment-variables-for-starting-and

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
981 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...