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

Categories

0 votes
982 views
in Technique[技术] by (71.8m points)

cmd - What is wrong with the definitions of my environment variables for starting and stopping Apache web server?

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

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.7k users

...