Compile and install Nginx + PHP + MariaDB development environment tutorial on MacOS, nginxmariadb_PHP tutorial

Source: Internet
Author: User
Tags mcrypt openssl library
Compile and install Nginx + PHP + MariaDB development environment on MacOS, nginxmariadb. Compile and install the Nginx + PHP + MariaDB development environment tutorial on MacOS. nginxmariadb is because of the urine of Oracle. Mariadb should replace mysql. So abandon mysql1, compile nginx, and download the Nginx + PHP + MariaDB development environment compilation and installation tutorial on Mac OS respectively, nginxmariadb

Because of Oracle's urine. Mariadb should replace mysql. So discard mysql

1. compile nginx
Download nginx, openssl, and pcre
When compiling openssl, a prompt is displayed.

WARNING! If you wish to build 64-bit library, then you have toinvoke ‘./Configure darwin64-x86_64-cc' *manually*.

An error occurs if you do not stop compilation. This problem should be caused by the openssl/config script guessing that your system is 64-bit, but it will judge whether to enable x86_64 compilation based on $ KERNEL_BITS, which is disabled by default (very strange setting, although it will give you 5 seconds to stop compilation and manually enable it), the openssl library file you generated is 32-bit, and the static link to nginx will fail. At present, it seems that there is no good way to upload the x86_64 parameter to the openssl configuration file (openssl/config guesses the OS architecture and sets whether the compiled parameter is 32-bit or 64-bit. the default value is 32-bit, then call openssl/Configure to generate Makefile)

It can be export KERNEL_BITS = 64 before configure, if it still does not work
You have to modify it.
Enter the nginx Directory

The code is as follows:
$./Configure./configure-prefix =/usr/locale/nginx-with-openssl = ../openssl-1.0.1i-with-pcre = ../pcre-8.33

Manually modify objs/Makefile:

./config –prefix=/Users/xxx/Downloads/openssl-1.0.1e/.openssl no-shared no-threads

Change

The code is as follows:
../Configure darwin64-x86_64-cc-prefix =/Users/xxx/Downloads/openssl-1.0.1e/. openssl no-shared no-threads

Make again
2. compile php
Download php source code and some class libraries
Zlib: http://www.zlib.net/
GD database: poor https://bitbucket.org/libgd/gd-libgd/downloads/libgd-2.1.0.tar.gz
Freetype: http://sourceforge.net/projects/freetype/
Libpng: http://www.libpng.org/pub/png/libpng.html
Libjpeg: the http://www.ijg.org/

Curl: http://curl.haxx.se/download.html

Mhash: http://sourceforge.net/projects/mhash/
Mcrypt: http://mcrypt.hellug.gr/
And bzip2. Gettext and libtool are available on the gnu official website, but the speed is not good. I use the built-in system for other libraries. Don't bother to make up for it.
Besides libtool, it is directly thrown into/usr, and I have installed it in separate directories of/usr/local. For example, jpeg is/usr/local/jpeg for later modification.

The code is as follows:

. /Configure-prefix =/Users/saint/bin/php-enable-inline-optimization-enable-fpm-with-mcrypt =/usr/local/libmcrypt-with-zlib-enable -mbstring-with-openssl-with-mysql-with-mysqli-with-mysql-sock-with-gd-with-jpeg-dir =/usr/local/jpeg-enable- gd-native-ttf-enable-pdo-with-gettext-with-curl-with-pdo-mysql-enable-sockets-enable-bcmath-enable-xml-with-bz2 =/usr -enable-zip-enable-freetype-with-png-dir =/usr/local/libpng-with-pcre-regex-with-iconv-dir =/usr-with-gettext =/usr/local/gettext

3. compile mariadb

To compile mariabd, install cmake first. Download and install tar zxf mariadb-5.5.32.tar.gz at www.cmake.org

cd mariadb-5.5.32cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mariadb \
-DMYSQL_UNIX_ADDR=/tmp/mysql.sock \-DMYSQL_DATADIR=/data/mariadb \-DSYSCONFDIR=/usr/local/mariadb \-DMYSQL_USER=mysql \-DMYSQL_TCP_PORT=3306 \-DWITH_XTRADB_STORAGE_ENGINE=1 \-DWITH_INNOBASE_STORAGE_ENGINE=1 \-DWITH_PARTITION_STORAGE_ENGINE=1 \-DWITH_BLACKHOLE_STORAGE_ENGINE=1 \-DWITH_MYISAM_STORAGE_ENGINE=1 \-DWITH_READLINE=1 \-DENABLED_LOCAL_INFILE=1 \-DWITH_EXTRA_CHARSETS=1 \-DDEFAULT_CHARSET=utf8 \-DDEFAULT_COLLATION=utf8_general_ci \-DEXTRA_CHARSETS=all \-DWITH_BIG_TABLES=1 \-DWITH_DEBUG=0
make && make install/bin/cp support-files/my-small.cnf /usr/local/mariadb/my.confcp support-files/mysql.server /usr/local/mariadb/mysqld# my.cf

The code is as follows:

Cat>/etc/my. cnf <EOF [mysqld] basedir =/usr/local/mariadb datadir =/data/mariadb pid-file =/data/mariadb. pid character-set-server = utf8 collation-server = Login user = mysql port = 3306 default_storage_engine = InnoDB login = 1 server_id = 1 log_bin = mysql-bin binlog_format = mixed expire_logs_days = 7 bind -address = 0.0.0.0 # name-resolve skip-host-cache # Protocol = 1 Protocol = 1 query_cache_size = 64 M query_cache_type = 1 skip-external-locking key_buffer_size = 16 M bytes = 1 M table_open_cache = 64 sort_buffer_size = 512 K net_buffer_length = 8 K read_buffer_size = 256 K bytes = 512 K bytes = 8 M # LOG log_error =/data/mariadb/mariadb-error.log long_query_time = 1 slow_query_log records =/data/mariadb/mariadb-slow.log # Oher # max_connections = 1000 open_files_limit = 65535 [client] port = 3306 EOF/usr/local/mariadb/scripts/mysql_install_db -- user = mysql -- basedir =/usr/local/mariadb -- datadir =/data/mariadb chown mysql. mysql-R/data/mariadb export PATH = $ PATH:/usr/local/mariadb/bin echo 'export PATH = $ PATH: /usr/local/mariadb/bin'>/etc/profile
Source/etc/profile

/usr/local/mariadb/bin/mysql -e “grant all privileges on *.* to root@'127.0.0.1′ identified by “dbrootpwd” with grant option;”/usr/local/mariadb/bin/mysql -e “grant all privileges on *.* to root@'localhost' identified by “dbrootpwd” with grant option;”/usr/local/mariadb/bin/mysql -uroot -pdbrootpwd -e “delete from mysql.user where Password=”;”/usr/local/mariadb/bin/mysql -uroot -pdbrootpwd -e “delete from mysql.db where User=”;”/usr/local/mariadb/bin/mysql -uroot -pdbrootpwd -e “drop database test;”

4. Subsequent Installation and extension
Php provides a phpize tool for us to install the required extensions.

The following describes how to use phpize:

(1) find your original php installation directory. for example, if my directory is/home/saint/Development/php, find bin/phpize. If you do not have this tool, it indicates that the tool is not installed. you need to install php. dev, which is usually available.

(2) If you want to scale it out, you need a php source package that is the same as that of the currently installed php version. you can use phpinfo () to view the current php version.

(3 ). open source package directory, enter the ext Directory, for example, I will enter:/home/saint/Development/php-5.5.6/ext, ext has various php extension modules, go to ext/sockets.

(4) run the phpize program after cd to ext/sockets:

/home/saint/Development/php/bin/phpize

After execution, we can see that phpize will generate the corresponding configure file

(5). use configure to configure and execute the following command:

./configure --enable-sockets --with-php-config=/home/saint/Development/php/bin/php-config make make install

Note: The php-config file and phpize file are in the same directory.

(6) change php. ini and add the following statement:

The code is as follows:

Extension = "/home/saint/Development/php/lib/php/extensions/no-debug-non-zts-20121226/sockets. so"

The date folder can be deleted.

(7) restart Nginx

Articles you may be interested in:
  • Parsing the entire process of installing and configuring MemCache in Mac OS PHP environment
  • Build a PHP Yii Framework and related testing environment on Mac OS
  • Tutorial on configuring the PHP development environment for Mac
  • Detailed tutorial on building an Apache + PHP + MySQL development environment on Mac OS
  • Compile and install the Apache server and PHP interpreter on Mac OS
  • Tutorial on setting up Nginx + PHP + MySQL development environment on Mac OS
  • How to install phpredis extension on Mac
  • Using Memache in PHP as the operation class of process lock
  • Image cropping extension Tclip for installing PHP in MacOS
  • Build a PHP (LNMP/LAMP) development environment using brew in Mac system
  • Configure the PHP + MySql environment in Mac OS

Compilation and installation of Nginx + PHP + MariaDB development environment tutorial on OS, nginxmariadb because of Oracle's urine. Mariadb should replace mysql. So discard mysql 1 and compile nginx to download them separately...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.