Install Apache In Windows 10
How To Install/Run & Configure Apache Web Server On Windows? 1) Go to C:/ drive (Local Disk C) & Open Apache24 folder. 2) Find folder named ' conf ' and open it. 3) Here, you will get a configuration file ' httpd.conf ', Open it in Notepad. 4) After it, Find ' ServerRoot ' (Use Ctrl + F) and you. To install Apache Maven on Windows, you just need to download the Maven’s zip file, unzip it to a folder, and configure the Windows environment variables. 2.1 Visit Maven official website, download the Maven zip file, for example: apache-maven-3.6.0-bin.zip. 2.2 Unzip it to a folder. Installing Apache 2.x and PHP 7 in Windows 10 or Windows 8, 7 is really simple than installing it in the Linux. Here I am going to show you how to install Apache 2.4 and PHP 7 in windows step by step. How To Install/Run & Configure Apache Web Server On Windows? 1) Go to C:/ drive (Local Disk C) & Open Apache24 folder. 2) Find folder named ' conf ' and open it. 3) Here, you will get a configuration file ' httpd.conf ', Open it in Notepad. 4) After it, Find ' ServerRoot ' (Use Ctrl + F) and you. Execute the project: Go to the following location on cmd: D: spark spark-1.6.1-bin-hadoop2.6 bin Write the following command spark-submit -class groupid.artifactid.classname -master local2 /path to the jar file created using maven /path.
Install Apache Netbeans Windows 10
To install Apache Maven on Windows, you just need to download the Maven’s zip file, unzip it to a folder, and configure the Windows environment variables.
Tested with :
- JDK 10
- Maven 3.6
- Windows 10
- Maven 3.3+ requires JDK 1.7+
- Maven 3.2 requires JDK 1.6+
- Maven 3.0/3.1 requires JDK 1.5+
1. JDK and JAVA_HOME
Make sure JDK is installed, and JAVA_HOME
environment variable is configured.
Please read this how to add JAVA_HOME on Windows 10
2. Download Apache Maven
2.1 Visit Maven official website, download the Maven zip file, for example : apache-maven-3.6.0-bin.zip
.
2.2 Unzip it to a folder. In this article, we are using c:optapache-maven-3.6.0
That’s all, just download and unzip, installation is NOT required.
3. Add MAVEN_HOME system variable
Add a MAVEN_HOME
system variables, and point it to the Maven folder.
3.1 Press Windows key, type adva
and clicks on the View advanced system settings
3.2 In System Properties dialog, select Advanced
tab and clicks on the Environment Variables..
button.
3.3 In “Environment variables” dialog, System variables
, Clicks on the New..
button and add a MAVEN_HOME
variable and point it to c:optapache-maven-3.6.0
4. Add %MAVEN_HOME%bin To PATH
In system variables, find PATH
, clicks on the Edit..
button. In “Edit environment variable” dialog, clicks on the New
button and add this %MAVEN_HOME%bin
5. Verification
Done, start a new command prompt, type mvn –version
:
The Apache Maven is installed successfully on Windows.
6. FAQs
6.1 ‘mvn’ is not recognized as an internal or external command?
Answer: Refer to Step 4, make sure the %MAVEN_HOME%bin
is added to the PATH
system variable.
6.2 The JAVA_HOME environment variable is not defined correctly
Answer: Refer to Step 2, make sure JDK is installed and the JAVA_HOME
system variable is configured.