In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
The following brings you about the LAMP environment how to build installation (centos6.9+apache2.4+mysql5.7+php7.1) content, I believe you must have read similar articles. What's the difference between what we bring to everyone? Let's take a look at the text. I'm sure you'll get something after seeing how to build and install the LAMP environment (centos6.9+apache2.4+mysql5.7+php7.1).
Pre-installation preparation
(permanent address of this article: http://woymk.blog.51cto.com/10000269/1914539)
CentOS 6.9 64-bit minimized installation
Yum install-y make gcc gcc-c++ perl zlib-devel libaio libpng libpng-devel libjpeg-devel pcre-devel
Yum install-y libXpm-devel openssl openssl-devel libxml2-devel bzip2-devel.x86_64 libjpeg-turbo-devel
Yum install-y freetype freetype-devel libtool cmake ncurses-devel bison re2c curl-devel wget
Rpm-ivh "http://mirrors.sohu.com/fedora-epel/epel-release-latest-6.noarch.rpm"
Yum install-y libmcrypt-devel re2c
First, install MySql
1. Compilation and installation
Download the software package
Cd / usr/local/src/
Wget http://mirrors.sohu.com/mysql/MySQL-5.7/http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-boost-5.7.17.tar.gz
Decompression
Tar zxvf mysql-boost-5.7.17.tar.gz
Compile & install
Cd mysql-5.7.17
Cmake\
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql\
-DMYSQL_DATADIR=/data/mysql\
-DSYSCONFDIR=/etc\
-DWITH_MYISAM_STORAGE_ENGINE=1\
-DWITH_INNOBASE_STORAGE_ENGINE=1\
-DWITH_MEMORY_STORAGE_ENGINE=1\
-DWITH_READLINE=1\
-DMYSQL_UNIX_ADDR=/tmp/mysql.sock\
-DMYSQL_TCP_PORT=3306\
-DENABLED_LOCAL_INFILE=1\
-DWITH_PARTITION_STORAGE_ENGINE=1\
-DEXTRA_CHARSETS=all\
-DDEFAULT_CHARSET=utf8\
-DDEFAULT_COLLATION=utf8_general_ci\
-DWITH_BOOST=./boost/boost_1_59_0/
Make & & make install
Note: if there is an error in compilation, do the following, and then reconfigure.
Make clean
Rm CMakeCache.txt
two。 Binary package installation
If the compilation process is slow, you can download the compiled binary package and install it directly.
Cd / usr/local/src/
Wget http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-5.7.17-linux-glibc2.5-x86_64.tar.gz
Tar zxvf mysql-5.7.17-linux-glibc2.5-x86_64.tar.gz
Move to the / usr/local/mysql directory
Mv mysql-5.7.17-linux-glibc2.5-x86_64 / usr/local/mysql
3. Establish mysql user
Useradd-s / sbin/nologin mysql
Initialize the database and create the database and tables that come with the system
Mkdir-p / data/mysql
Chown-R mysql:mysql / data/mysql
Cd / usr/local/mysql
Bin/mysqld-initialize-basedir=/usr/local/mysql-datadir=/data/mysql-user=mysql
(the initialization method has changed. Use the mysqld command directly to initialize. Initialization before version 5.6 executes the following sentence:
Scripts/mysql_install_db-basedir=/usr/local/mysql-datadir=/data/mysql-user=mysql)
After that, a password will be generated. Write it down.
The following warning appears during initialization:
[Warning] TIMESTAMP with implicit DEFAULT value is deprecated.
Please use-explicit_defaults_for_timestamp server option (see
Documentation for more details).
To cancel this warning, when you start mysql, add to my.cnf
[mysqld]
Explicit_defaults_for_timestamp=true
Add services, copy service scripts to the init.d directory, and set boot up
Cp support-files/my-default.cnf / etc/my.cnf
Cp support-files/mysql.server / etc/init.d/mysqld
Chmod 755 / etc/init.d/mysqld
Vi / etc/init.d/mysqld
Modify datadir
Basedir=/usr/local/mysql
Datadir=/data/mysql
Chkconfig-add mysqld
Chkconfig mysqld on
Service mysqld start
Modify the password
/ usr/local/mysql/bin/mysqladmin-uroot-p 'the password I just wrote down' password 'new password
Before version 5.6, change the password to execute the following sentence:
/ usr/local/mysql/bin/mysqladmin-uroot password "new password"
Second, install apache2.4
Download the source code:
Cd / usr/local/src
Wget http://mirrors.cnnic.cn/apache/httpd/httpd-2.4.25.tar.gz
Wget http://mirrors.cnnic.cn/apache/apr/apr-1.5.2.tar.gz
Wget http://mirrors.cnnic.cn/apache/apr/apr-util-1.5.4.tar.gz
Tar zxvf / usr/local/src/httpd-2.4.25.tar.gz
Tar zxvf / usr/local/src/apr-1.5.2.tar.gz
Tar zxvf / usr/local/src/apr-util-1.5.4.tar.gz
Mv / usr/local/src/apr-1.5.2 / usr/local/src/httpd-2.4.25/srclib/apr
Mv / usr/local/src/apr-util-1.5.4 / usr/local/src/httpd-2.4.25/srclib/apr-util
Cd / usr/local/src/httpd-2.4.25
. / configure\-prefix=/usr/local/apache2\-with-included-apr\-enable-so\-enable-deflate=shared\-enable-expires=shared\-enable-rewrite=shared
Make & & make install
Cd / usr/local/apache2/
Vi conf/httpd.conf
find
# ServerName www.example.com:80
Change to
ServerName localhost:80
Check the configuration file syntax
Bin/apachectl-t
Configure startup script
Cp / usr/local/src/httpd-2.4.25/build/rpm/httpd.init / etc/init.d/httpd
Note that there are three main areas in the file that need to be modified:
Httpd=$ {HTTPD-/usr/local/apache2/bin/httpd}
Pidfile=$ {PIDFILE-/usr/local/apache2/logs/$ {prog} .pid}
CONFFILE=/usr/local/apache2/conf/httpd.conf
Please change the corresponding path according to your actual situation!
Then run the following command:
Chmod + x / etc/init.d/httpd
Chkconfig-add httpd
Chkconfig httpd on
/ etc/init.d/httpd start
Netstat-lnp | grep httpd
III. Php installation
Cd / usr/local/src
Wget http://mirrors.sohu.com/php/php-7.1.3.tar.gz
Tar zxvf php-7.1.3.tar.gz
Cd php-7.1.3
. / configure\
-- prefix=/usr/local/php\
-- with-apxs2=/usr/local/apache2/bin/apxs\
-- with-config-file-path=/usr/local/php/etc\
-- with-mysql-sock=/tmp/mysql.sock\
-- enable-mysqlnd\
-- with-mysqli=mysqlnd\
-- with-pdo-mysql=mysqlnd\
-- with-libxml-dir\
-- with-gd\
-- with-jpeg-dir\
-- with-png-dir\
-- with-freetype-dir\
-- with-iconv-dir\
-- with-zlib-dir\
-- with-bz2\
-- with-openssl\
-- with-mcrypt\
-- enable-soap\
-- enable-gd-native-ttf\
-- enable-mbstring\
-- enable-sockets\
-- enable-exif\
-- disable-ipv6
Make & & make install
Cp php.ini-production / usr/local/php/etc/php.ini
4. Apache combined with php
Vi / usr/local/apache2/conf/httpd.conf
find
# ServerName www.example.com:80
Change to
ServerName localhost:80
Find:
AddType application/x-gzip .gz .tgz
Add under the line:
AddType application/x-httpd-php .php
Find:
DirectoryIndex index.html
Change the line to:
DirectoryIndex index.html index.htm index.php
/ usr/local/apache2/bin/apachectl-t
Service httpd restart
Test parsing php
Vi / usr/local/apache2/htdocs/1.php
Write:
After saving, continue testing:
Curl localhost/1.php
The result has been successfully parsed.
For the above about how to build and install LAMP environment (centos6.9+apache2.4+mysql5.7+php7.1), do you think it is what you want? If you want to know more about it, you can continue to follow our industry information section.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.