Mamp For Linux



man7.org > Linux > man-pages

NAME | SYNOPSIS | DESCRIPTION | RETURN VALUE | ERRORS | ATTRIBUTES | CONFORMING TO | NOTES | BUGS | EXAMPLES | SEE ALSO | COLOPHON

NAME top

It is a stack for Linux which consists of Apache, MySQL and PHP. AMPPS is a LAMP stack which you can install on your Linux. Apache is the web server, MySQL is the database and PHP is server side scripting language. Installing MAMP. First you’ll need to download the MAMP program. MAMP stands for Macintosh, Apache, MySQL, and PHP. This reflects the fact that MAMP was originally developed for use on Macs, but it now runs on Windows and Linux too and is the easiest way to run WordPress locally. MAMP pro comes with loaded features, one of the main attraction is Hosts Management. Many of them who use LARAVEL or Symfony like frameworks need to start the server and restart for any small modifications in main configuration files. MAMP installation successfully completed Launching and configuring MAMP. After the installation is completed, it is time to launch the server for the first time. Please remember to authorize access through the Windows Firewall. Then start the app from the shortcut or the start menu. You’ll immediately see the MAMP command center.

SYNOPSIS top

DESCRIPTION top

RETURN VALUE top

ERRORS top

ATTRIBUTES top

CONFORMING TO top

NOTES top

BUGS top

EXAMPLES top

SEE ALSO top

COLOPHON top

Pages that refer to this page: memusage(1), alloc_hugepages(2), arch_prctl(2), clone(2), execve(2), fcntl(2), fork(2), futex(2), get_mempolicy(2), getpagesize(2), getrlimit(2), ioctl_userfaultfd(2), madvise(2), mbind(2), memfd_create(2), mincore(2), mlock(2), mmap2(2), mprotect(2), mremap(2), msync(2), open(2), perf_event_open(2), personality(2), posix_fadvise(2), prctl(2), readahead(2), remap_file_pages(2), seccomp(2), sendfile(2), set_mempolicy(2), shmget(2), shmop(2), statx(2), syscalls(2), uselib(2), userfaultfd(2), vfork(2), avc_init(3), avc_open(3), cap_launch(3), fopen(3), mallinfo(3), malloc(3), malloc_stats(3), mallopt(3), numa(3), pthread_attr_setguardsize(3), pthread_attr_setstack(3), selinux_status_open(3), sem_init(3), shm_open(3), core(5), proc(5), systemd.exec(5), tmpfs(5), capabilities(7), fanotify(7), file-hierarchy(7), futex(7), inode(7), inotify(7), pkeys(7), shm_overview(7), spufs(7), system_data_types(7), ld.so(8), netsniff-ng(8), trafgen(8), xfs_io(8)

HTML rendering created 2021-04-01 by Michael Kerrisk, author of The Linux Programming Interface, maintainer of the Linux man-pages project.

For details of in-depth Linux/UNIX system programming training courses that I teach, look here.

Hosting by jambit GmbH.

Download Mamp For Linux

LAMP is an acronym of Linux Apache, MySQL and PHP. MAMP is an acronym of Mac Apache, MySQL and PHP. And as expected WAMP is an acronym of Windows Apache, MySQL and PHP. They are a download which packages together Apache, MySQL and PHP and allow you to build and host websites locally. It is a totally free download which is shipped with PHPMyAdmin.

Install Apache

To start off we will install Apache.

1. Open up the Terminal (Applications > Accessories > Terminal).

2. Copy/Paste the following line of code into Terminal and then press enter:

sudo apt-get install apache2

3. The Terminal will then ask you for you’re password, type it and then press enter.

Testing Apache

To make sure everything installed correctly we will now test Apache to ensure it is working properly.

1. Open up any web browser and then enter the following into the web address:

Mamp Linux Install

You should see a folder entitled apache2-default/. Open it and you will see a message saying “It works!” , congrats to you!

Mamp Alternative For Linux

Install PHP

In this part we will install PHP 5.

Step 1. Again open up the Terminal (Applications > Accessories > Terminal).

Step 2. Copy/Paste the following line into Terminal and press enter:

sudo apt-get install php5 libapache2-mod-php5

Step 3. In order for PHP to work and be compatible with Apache we must restart it. Type the following code in Terminal to do this:

sudo /etc/init.d/apache2 restart

Mamp For Linux

Test PHP

To ensure there are no issues with PHP let’s give it a quick test run.

Step 1. In the terminal copy/paste the following line:

sudo gedit /var/www/testphp.php

This will open up a file called phptest.php.

Step 2. Copy/Paste this line into the phptest file:

<?php phpinfo(); ?>

Step 3. Save and close the file.

Step 4. Now open you’re web browser and type the following into the web address:

Congrats you have now installed both Apache and PHP!

Install MySQL

To finish this guide up we will install MySQL. (Note – Out of Apache and PHP, MySQL is the most difficult to set up. I will provide some great resources for anyone having trouble at the end of this guide.)

Step 1. Once again open up the amazing Terminal and then copy/paste this line:

sudo apt-get install mysql-server

Step 2 (optional). In order for other computers on your network to view the server you have created, you must first edit the “Bind Address”. Begin by opening up Terminal to edit the my.cnf file.

gksudo gedit /etc/mysql/my.cnf

Mamp For Linux

Change the line

bind-address = 127.0.0.1

And change the 127.0.0.1 to your IP address.

Step 3. This is where things may start to get tricky. Begin by typing the following into Terminal:

mysql -u root

Following that copy/paste this line:

mysql> SET PASSWORD FOR ‘root’@’localhost’ = PASSWORD(‘yourpassword’);

Map For Linux

(Make sure to change yourpassword to a password of your choice.)

Step 4. We are now going to install a program called phpMyAdmin which is an easy tool to edit your databases. Copy/paste the following line into Terminal:

sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin

After that is installed our next task is to get PHP to work with MySQL. To do this we will need to open a file entitled php.ini. To open it type the following:

gksudo gedit /etc/php5/apache2/php.ini

Now we are going to have to uncomment the following line by taking out the semicolon (;).

Change this line:

;extension=mysql.so

To look like this:

extension=mysql.so

Now just restart Apache and you are all set!

sudo /etc/init.d/apache2 restart

There you go you have installed LAMP in Ubuntu.

  1. Locate the downloaded set up file and double-click on it. You will be faced with an alert window warning you not to upgrade from WAMP5 1.x. Click on Yes to continue
  2. The Welcome setup window will load. Click on Next to proceed
  3. On the License Agreement screen select the radio button for I accept the agreement then click on Next
  4. The Select Destination Location screen will load. Change the default location if you desire then click on Next
  5. Now the Select Additional Tasks screen is loaded. Select the checkboxes for any icons you want installing then click on Next
  6. You will be faced with the Ready to Install screen. Review the settings and use the Back button to go back and change any of the settings. If the settings are correct, click on Install to install WAMP 2.0
  7. If you have Mozilla Firefox installed on your PC, you may be faced with the following window that prompts whether you want FireFox to be your default browser, so select the appropriate choice
  8. The PHP mail parameters screen will load. Review the default settings and change accordingly then click on Next. The default values can generally be used when installing WAMP 2.o to a local PC
  9. The final screen to load is the installation completed screen. Click on Finish to close the window and start WAMP
  10. WAMP 2.0 is started. The WampServer icon is loaded onto the system tray

Sadly I don’t have my Mac right now so here is a guide.