Skip to content
Browse files

Create Run Apachi Server on Mac OS X E1 Captain.md

Need to be marked down

Update and rename Run Apachi Server on Mac OS X E1 Captain.md to Run Apache Server on Mac OS X E1 Captain.md

Changed Title and fixed typos

Renamed files and fixed typos and more.

Closes #403
  • Loading branch information...
1 parent a7568b6 commit 18e6dd4efdba88bee8d485f86a0ba3a6a37a6469 @nkuhan nkuhan committed with Rafase282
Showing with 20 additions and 53 deletions.
  1. +0 −53 Installing WordPress locally on Mac.
  2. +20 −0 Run-Apache-Server-On-A-Mac.md
View
53 Installing WordPress locally on Mac.
@@ -1,53 +0,0 @@
-# Installing WordPress locally on Mac.
-Installing WordPress locally will allow you to build themes safely and will allow you to try out WordPress for free without paying for hosting.
-
-## Required Downloads:
-- [MAMP](https://www.mamp.info/en/)
-- [WordPress](https://wordpress.org/about/)
-
-The first step to installing WordPress locally is to download MAMP. MAMP stands for Macintosh, Apache, MySQL, and PHP. This is the local server that will run the new install of WordPress. Installing MAMP should be easy because it is like installing any other app.
-
-After MAMP is installed you will want to uninstall MAMP pro. To do this, just navigate to your applications folder and find the MAMP pro folder. There will be an uninstaller inside of this folder. I chose to click all of the check boxes, since it is a fresh install of MAMP.
-
-## Configuring MAMP
-Open the MAMP application and you should be greeted with this screen:
-
-We have to set some preferences so click the preferences icon. On the preferences screen click `Ports`.
-
-Here you can leave the ports as is which will require you to include the port number in the URL `localhost:8888`.
-
-If you don't want to include the port number in the URL, you can change the Apache and MySQL ports to 80. The reason I chose not to do this is because you will always be asked for your password
-
-Next you will click the Apache tab and set a document root. I chose to create a new folder called "Sites" in my user folder.
-
-Now that we are done editing all of the settings, hit OK to save.
-
-## Starting MAMP
-To start MAMP click "Start Servers."
-
-This should open a new window with the address `http://localhost:8888/MAMP/?language=English` in your web browser.
-
-If your browser didn't open, you should be able to click `Open WebStart page`.
-
-Creating a Database
-
-The next step is to click the `phpMyAdmin` link under MySQL which will take you to this page:
-
-Click new in the left navigation menu.
-
-Enter a name for the Database and then click create. I chose "WordPress."
-
-## Installing WordPress
-Unzip the WordPress file that you downloaded and drag it's contents into the folder you created earlier as your document root.
-
-Once the files are copied, go to `localhost:8888`.
-
-Choose you language and at the next screen click `Let's Go`.
-
-Enter the name of the Database you created, and "root" for the username and password, and click submit.
-
-Click `Run the install`, and on the next screen enter the details for your log in.
-
-Click `Submit`, and you will be taken to the log in for your local hosted WordPress.
-
-Success! Log in with the username and password you created.
View
20 Run-Apache-Server-On-A-Mac.md
@@ -0,0 +1,20 @@
+# How to Run Apache Server on a Mac OS X E1 Captain
+[Apache](http://www.apache.org/) server is pre build on Mac OS X , no need to install 3rd party tools WAMP, LAMP, MAMP AND XAMPP to run Apache server on Mac.
+When you consider run [Apache](http://www.apache.org/) server on Mac OS X E1 Captain / OS X Yosemite, it is rather different from it's earlier versions. Here you should it from terminal windows, earlier GUI options for tick as webserver from system control window is took off.
+
+type on your terminal window:
+
+```
+httpd -v
+```
+
+It's give the server version and build date.
+
+here http stands for Hypertext Transfer Protocol d stands for Daemon which is a software program for using multi tasking also uses on Mac OS X. `httpd` is the Apache HyperText Transfer Protocol (HTTP) server program. It is designed to be run as a standalone daemon process. Type
+
+```
+sudo apachectl start
+```
+
+on your terminal window and go to your browser and type `http://localhost` you will get, `It works!`
+on your browser.

0 comments on commit 18e6dd4

Please sign in to comment.
Something went wrong with that request. Please try again.