根據Linux系統以及公司網站系統的信息,選擇合適的安裝包進行安裝 ...
思路:根據Linux系統以及公司網站系統的信息,選擇合適的安裝包進行安裝
一、查看系統信息# uname -a # 查看內核/操作系統/CPU信息 # head -n 1 /etc/issue # 查看操作系統版本 # grep MemTotal /proc/meminfo # 查看記憶體總量 #fdisk -l # 查看所有分區View Code
二、具體安裝
常規依賴包安裝
1 yum -y install gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libidn-devel openldap openldap-devel openldap-clients openldap-servers make zlib-devel pcre-devel openssl-devel libtool* git tree bison perl gd gd-develView Code
安裝libiconv庫
1 tar zxvf libiconv-1.14.tar.gz 2 cd libiconv-1.14 3 ./configure --prefix=/usr/local/libiconv 4 make && make install 5 cd ..View Code
安裝libmcrypt,mhash,mcrypt庫
1 tar zxvf libmcrypt-2.5.8.tar.gz 2 cd libmcrypt-2.5.8 3 ./configure 4 make && make install 5 cd .. 6 tar jxvf mhash-0.9.9.9.tar.bz2 7 cd mhash-0.9.9.9 8 ./configure 9 make && make install 10 cd .. 11 tar zxvf mcrypt-2.6.8.tar.gz 12 cd mcrypt-2.6.8 13 ./configure 14 make && make install 15 cd ..View Code
安裝CMake工具
1 tar zxvf cmake-3.7.2.tar.gz 2 cd cmake-3.7.2 3 ./bootstrap && make && make install 4 cd..View Code
安裝MySQL
1 #卸載舊版本 2 rpm -e mysql --nodeps 3 #創建mysql用戶 4 groupadd mysql && useradd -g mysql -M mysql 5 tar zxvf mysql-5.6.24.tar.gz 6 cd mysql-5.6.24 7 cmake \ 8 -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \ 9 -DMYSQL_DATADIR=/usr/local/mysql/data \ 10 -DSYSCONFDIR=/etc \ 11 -DMYSQL_USER=mysql \ 12 -DWITH_MYISAM_STORAGE_ENGINE=1 \ 13 -DWITH_INNOBASE_STORAGE_ENGINE=1 \ 14 -DWITH_ARCHIVE_STORAGE_ENGINE=1 \ 15 -DWITH_MEMORY_STORAGE_ENGINE=1 \ 16 -DWITH_READLINE=1 \ 17 -DMYSQL_UNIX_ADDR=/var/lib/mysql/mysql.sock \ 18 -DMYSQL_TCP_PORT=3306 \ 19 -DENABLED_LOCAL_INFILE=1 \ 20 -DENABLE_DOWNLOADS=1 \ 21 -DWITH_PARTITION_STORAGE_ENGINE=1 \ 22 -DEXTRA_CHARSETS=all \ 23 -DDEFAULT_CHARSET=utf8 \ 24 -DDEFAULT_COLLATION=utf8_general_ci \ 25 -DWITH_DEBUG=0 \ 26 -DMYSQL_MAINTAINER_MODE=0 \ 27 -DWITH_SSL:STRING=bundled \ 28 -DWITH_ZLIB:STRING=bundled 29 make && make install 30 #修改目錄許可權 31 chown -R mysql:mysql /usr/local/mysql 32 #拷貝配置文件(註意:如果/etc目錄下麵預設有一個my.cnf,直接覆蓋即可) 33 cp support-files/my-default.cnf /etc/my.cnf 34 #編輯配置文件,在 [mysqld] 部分增加下麵一行 35 vi /etc/my.cnf 36 datadir = /usr/local/mysql/data #添加MySQL資料庫路徑 37 #執行初始化配置腳本,創建系統自帶的資料庫和表 38 /usr/local/mysql/scripts/mysql_install_db --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --user=mysql 39 #加入系統服務 40 cp support-files/mysql.server /etc/init.d/mysqld 41 chmod +x /etc/init.d/mysqld 42 #啟動mysql 43 service mysqld start 44 #開機啟動 45 chkconfig mysqld on 46 #加入環境變數 47 echo 'PATH=/usr/local/mysql/bin:$PATH'>>/etc/profile 48 export PATH 49 #讓配置生效 50 source /etc/profile 51 #設置root密碼,預設是沒有密碼的 52 /usr/local/mysql/bin/mysqladmin -uroot -p password 53 cd ..View Code
安裝PHP
1 tar zxvf php-5.6.30.tar.gz 2 cd php-5.6.30 3 ./configure \ 4 --prefix=/usr/local/php \ 5 --with-fpm-user=www --with-fpm-group=www \ 6 --with-config-file-path=/usr/local/php/etc \ 7 --with-mhash --with-mcrypt --enable-bcmath \ 8 --enable-mysqlnd --with-mysql --with-mysqli --with-pdo-mysql \ 9 --with-gd --enable-gd-native-ttf --with-jpeg-dir --with-png-dir --with-freetype-dir \ 10 --enable-fpm \ 11 --enable-mbstring \ 12 --enable-pcntl \ 13 --enable-sockets \ 14 --enable-opcache \ 15 --with-openssl \ 16 --with-zlib \ 17 --with-curl \ 18 --with-libxml-dir \ 19 --with-iconv-dir 20 make && make install 21 #移動生成php-fpm配置文件 22 mv /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf 23 #複製生成一份php配置文件 24 cp php.ini-production /usr/local/php/etc/php.ini 25 #將php-fpm加入系統服務 26 cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm 27 #賦予執行許可權 28 chmod +x /etc/init.d/php-fpm 29 #開機啟動 30 chkconfig php-fpm on#創建www用戶 31 groupadd www && useradd -d /home/www -g www www 32 #啟動php-fpm 33 service php-fpm start 34 cd .. 35 vim /etc/profile 36 修改PATH=/usr/local/php/bin:/usr/local/mysql/bin:$PATH 37 export PATH 38 source /etc/profileView Code
安裝Nginx
tar zxvf nginx-1.10.2.tar.gz cd nginx-1.10.2 ./configure \ --user=www \ --group=www \ --prefix=/usr/local/nginx \ --conf-path=/etc/nginx/nginx.conf \ --error-log-path=/var/log/nginx/error.log \ --http-log-path=/var/log/nginx/access.log \ --pid-path=/var/run/nginx.pid \ --with-http_stub_status_module \ --with-http_gzip_static_module \ --with-http_ssl_module \ --with-pcre make && make installView Code
添加Nginx啟動管理腳本/etc/init.d/nginx
#!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15# description: NGINX is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx# config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx# pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0 nginx="/usr/sbin/nginx" prog=$(basename $nginx) NGINX_CONF_FILE="/etc/nginx/nginx.conf" [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx lockfile=/var/lock/subsys/nginx make_dirs() { # make required directories user=`$nginx -V 2>&1 | grep "configure arguments:.*--user=" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -` if [ -n "$user" ]; then if [ -z "`grep $user /etc/passwd`" ]; then useradd -M -s /bin/nologin $user fi options=`$nginx -V 2>&1 | grep 'configure arguments:'` for opt in $options; do if [ `echo $opt | grep '.*-temp-path'` ]; then value=`echo $opt | cut -d "=" -f 2` if [ ! -d "$value" ]; then # echo "creating" $value mkdir -p $value && chown -R $user $value fi fi done fi } start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 make_dirs echo -n $"Starting $prog: " daemon $nginx -c $NGINX_CONF_FILE retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " killproc $prog -QUIT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { configtest || return $? stop sleep 1 start } reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $nginx -HUP RETVAL=$? echo } force_reload() { restart } configtest() { $nginx -t -c $NGINX_CONF_FILE } rh_status() { status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart|configtest) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}" exit 2 esacView Code
用法指南
chmod +x /etc/init.d/nginx service nginx start #啟動nginx服務 chkconfig nginx on #開機啟動 cd ..View Code
至此,LNMP環境已搭建完畢。