摘要:腳本名稱請求的地址不帶參數與相同。在配置中指令中指定的值請求使用的協議,通常是或。
一、Mysql編譯安裝
1.檢查系統是否安裝Mysql
[root@localhost /]# find -name mysql // 如果沒有查找到目錄信息,表示沒有安裝
修改iptables:vim /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 137 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 11211 -j ACCEPT
重啟iptables
service iptables restart
編譯環境開始前,先安裝環境編譯依賴包:
yum install ncurses-devel # 安裝cmake (編譯mysql用) wget http://www.cmake.org/files/v2.8/cmake-2.8.9.tar.gz tar -zxvf cmake-2.8.9.tar.gz cd cmake-2.8.9 ./configure &&make &&make install //缺少gcc++ 要安裝:yum install gcc-c++
開始編譯安裝Mysql
groupadd mysql useradd -g mysql mysql // 添加mysql用戶并加入mysql用戶組 useradd -g mysql mysql -s /bin/false // -s useradd命令的一個參數,使用者登入后使用的shell名稱,此處指定/bin/false mkdir -p /data/mysql // 創建Mysql數據目錄 chown -R mysql:mysql /data/mysql // 數據目錄用戶組 # 進入mysql源碼包目錄 wget http://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.27.tar.gz wget https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.36.tar.gz cd /data/soft/mysql/mysql-5.5.27 # 開始編譯mysql cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_UNIX_ADDR=/tmp/mysql.sock -DEXTRA_CHARSETS=all -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_EXTRA_CHARSETS:STRING=all -DWITH_MYISAM_STORAGE_ENGINE=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_MEMORY_STORAGE_ENGINE=1 -DWITH_READLINE=1 -DENABLED_LOCAL_INFILE=1 -DMYSQL_DATADIR=/data/mysql -DMYSQL_TCP_PORT=3306 -DSYSCONFDIR=/etc -DINSTALL_SHAREDIR=share make make install
注:重新運行配置,需要刪除CMakeCache.txt文件
初始化Mysql
cp ./support-files/my-medium.cnf /etc/my.cnf /usr/local/mysql/scripts/mysql_install_db --basedir=/usr/local/mysql/ --datadir=/data/mysql/ --user=mysql /usr/local/mysql/bin/mysqld_safe --user=mysql --basedir=/usr/local/mysql --datadir=/data/mysql & cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
Mysql配置開機啟動(配置完成記得給mysqld 賦執行權限)
cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql chkconfig --add mysql chkconfig --level 2345 mysql on chown mysql:mysql -R /usr/local/mysql/ service mysql start
Mysql 環境變量配置
vim /etc/profile // 寫入下面腳本 export PATH="$PATH:/usr/local/php/bin:/usr/local/mysql/bin" source /etc/profile // 環境變量生效
Mysql用戶密碼修改
/usr/local/mysql/bin/mysqladmin -u root -p password newpassword 1.例如你的 root用戶現在沒有密碼,你希望的密碼修改為123456,那么命令是: mysqladmin -u root password 123456 2.如果你的root現在有密碼了(123456),那么修改密碼為abcdef的命令是: mysqladmin -u root -p password abcdef 注意,命令回車后會問你舊密碼,輸入舊密碼123456之后命令完成,密碼修改成功。
配置Mysql數據庫準許遠程訪問
# 登錄Mysql /usr/local/mysql/bin/mysql -h127.0.0.1 -uroot -p # 進入Mysql表 use mysql; # 查詢表 select Host,User from user limit 10; # 更新表 update user set Host="%" where User="root" and Host="localhost"; # 刷新Mysql權限 flush privileges;
Mysql 命令行登錄
/usr/local/mysql/bin/mysql -h127.0.0.1 -uroot -p
查看Mysql進程/端口
netstat -an |grep 3306 ps -le | grep mysqld ps aux | grep mysqld
SQL修改密碼
update user set password=PASSWORD("woshishui") where user="root";二、Nginx 編譯安裝
安裝前提
[root@admin /]# yum -y install zlib zlib-devel openssl openssl-devel
安裝Nginx# 安裝pcre (支持nginx偽靜態)
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz cd /usr/local/src mkdir /usr/local/pcre // 創建安裝目錄 tar zxvf pcre-8.30.tar.gz cd pcre-8.30 ./configure --prefix=/usr/local/pcre // 配置 make make install
開始安裝Nginx
[root@admin local]# groupadd www #添加www組 [root@admin local]# useradd -g www www -s /bin/false // 不允許www用戶直接登錄系統 [root@admin local]# cd /data/soft/ [root@admin local]# wget http://nginx.org/download/nginx-1.6.2.tar.gz [root@admin local]# tar -zxvf nginx-1.6.2.tar.gz [root@admin local]# cd nginx-1.6.2/ [root@admin nginx]# ./configure --prefix=/usr/local/nginx [root@admin nginx]# make [root@admin nginx]# make install
Nginx啟動腳本
#!/bin/bash # nginx This shell script takes care of starting and stopping # nginx # # chkconfig: - 13 68 # description: nginx is a web server ### BEGIN INIT INFO # Provides: $named # Short-Description: start|stop|status|restart|configtest ### END INIT INFO #variables NGINX_BIN="/usr/local/nginx/sbin/nginx" NGINX_CONF="/usr/local/nginx/conf/nginx.conf" NGINX_PID="/usr/local/nginx/logs/nginx.pid" NETSTAT="/bin/netstat" alter=$1 prog=nginx #load system function . /etc/rc.d/init.d/functions #function:echo ok or error function if_no { if [ $2 == 0 ]; then echo -n $"$1 ${prog}:" && success && echo else echo -n $"$1 ${prog}:" && failure && echo fi } #start nginx function start { rm -f ${NGINX_PID} 2>/dev/null if [ -s ${NGINX_PID} ]; then echo "nginx already running" else if [ `${NETSTAT} -tnpl | grep nginx | wc -l` -eq 0 ]; then rm -f ${NGINX_PID} 2>/dev/null ${NGINX_BIN} -c ${NGINX_CONF} if_no start $? else ${NETSTAT} -tnpl | grep nginx | awk "{ print $7}" | cut -d "/" -f 1 > ${NGINX_PID} if_no start $? fi fi } #stp nginx function stop { if [ -s ${NGINX_PID} ]; then cat ${NGINX_PID} | xargs kill -QUIT if_no stop $? else if [ `${NETSTAT} -tnpl | grep nginx | wc -l` -eq 0 ]; then rm -f ${NGINX_PID} 2>/dev/null if_no stop 0 else rm -f ${NGINX_PID} 2>/dev/null kill `${NETSTAT} -tnpl | grep nginx | awk "{ print $7}" | cut -d "/" -f 1` if_no stop $? fi fi } function restart { if [ -s ${NGINX_PID} ]; then cat ${NGINX_PID} | xargs kill -HUP if_no restart $? else stop sleep 1 start fi } function status { ${NETSTAT} -tnpl | grep nginx | grep LISTEN [ $? == 0 ] && echo "nginx is running" || echo "nginx is not running" } function configtest { ${NGINX_BIN} -t } case $alter in start) start ;; stop) stop ;; restart) restart ;; status) status ;; configtest) configtest ;; *) echo "use:${NGINX} {start|stop|restart|status|configtest}" ;; esac
配置Nginx自啟動腳本
[root@admin nginx]# chmod +x /etc/init.d/nginx [root@admin nginx]# /etc/init.d/nginx start 或 service nginx start // 啟動nginx [root@admin nginx]# /etc/init.d/nginx stop 或 service nginx stop // 關閉nginx [root@admin nginx]# /etc/init.d/nginx restart 或 service nginx restart // 重啟nginx
配置開機自動啟動
chkconfig --add nginx chkconfig --level 2345 nginx on三、Php 編譯安裝
檢查系統安裝的php
[root@iZ23g4snm6gZ soft]# find -name php
PHP 編譯依賴包安裝
# 注意:freetype在生成驗證碼圖片需要用,所以必須要安裝的 [root@iZ23g4snm6gZ soft]# yum install openssl-devel libxml2 libxml2-devel curl-devel libevent [root@iZ23g4snm6gZ soft]# yum install libpng libpng-devel libjpeg libjpeg-devel freetype-devel gd gd-devel # 源碼包安裝libiconv tar zxvf libiconv-1.14.tar.gz cd libiconv-1.14/ ./configure --prefix=/usr/local/libiconv make make install # 源碼包安裝libiconv tar zxvf libmcrypt-2.5.8.tar.gz cd libmcrypt-2.5.8/ ./configure --prefix=/usr/local/libmcrypt/ make make install
開始編譯PHP(Nginx)
./configure --prefix=/usr/local/php/ --with-config-file-path=/usr/local/php/etc/ --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx --with-zlib --with-libxml-dir --enable-sockets --with-curl --with-jpeg-dir --with-png-dir --with-gd --with-iconv-dir=/usr/local/libiconv --with-freetype-dir= --enable-gd-native-ttf --with-xmlrpc --with-openssl --with-mhash --with-mcrypt=/usr/local/libmcrypt/ --with-pear --enable-mbstring --enable-sysvshm --enable-zip --with-mysql=/usr/local/mysql/ --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock --with-pdo-mysql --disable-fileinfo make make install
設置PHP配置文件
cp php.ini-production /usr/local/php/etc/php.ini # 拷貝模板文件為php-fpm配置文件 cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf vi /usr/local/php/etc/php-fpm.conf // 編輯 user = www // 設置php-fpm運行賬號為www 默認賬號為nginx group = www // 設置php-fpm運行組為www pid = run/php-fpm.pid // 取消前面的分號 :wq!
php-fpm啟動腳本
#! /bin/sh ### BEGIN INIT INFO # Provides: php-fpm # Required-Start: $remote_fs $network # Required-Stop: $remote_fs $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: starts php-fpm # Description: starts the PHP FastCGI Process Manager daemon ### END INIT INFO prefix=/usr/local/php exec_prefix=${prefix} php_fpm_BIN=${exec_prefix}/sbin/php-fpm php_fpm_CONF=${prefix}/etc/php-fpm.conf php_fpm_PID=${prefix}/var/run/php-fpm.pid php_opts="--fpm-config $php_fpm_CONF" wait_for_pid () { try=0 while test $try -lt 35 ; do case "$1" in "created") if [ -f "$2" ] ; then try="" break fi ;; "removed") if [ ! -f "$2" ] ; then try="" break fi ;; esac echo -n . try=`expr $try + 1` sleep 1 done } case "$1" in start) echo -n "Starting php-fpm " $php_fpm_BIN $php_opts if [ "$?" != 0 ] ; then echo " failed" exit 1 fi wait_for_pid created $php_fpm_PID if [ -n "$try" ] ; then echo " failed" exit 1 else echo " done" fi ;; stop) echo -n "Gracefully shutting down php-fpm " if [ ! -r $php_fpm_PID ] ; then echo "warning, no pid file found - php-fpm is not running ?" exit 1 fi kill -QUIT `cat $php_fpm_PID` wait_for_pid removed $php_fpm_PID if [ -n "$try" ] ; then echo " failed. Use force-quit" exit 1 else echo " done" fi ;; force-quit) echo -n "Terminating php-fpm " if [ ! -r $php_fpm_PID ] ; then echo "warning, no pid file found - php-fpm is not running ?" exit 1 fi kill -TERM `cat $php_fpm_PID` wait_for_pid removed $php_fpm_PID if [ -n "$try" ] ; then echo " failed" exit 1 else echo " done" fi ;; restart) $0 stop $0 start ;; reload) echo -n "Reload service php-fpm " if [ ! -r $php_fpm_PID ] ; then echo "warning, no pid file found - php-fpm is not running ?" exit 1 fi kill -USR2 `cat $php_fpm_PID` echo " done" ;; *) echo "Usage: $0 {start|stop|force-quit|restart|reload}" exit 1 ;; esac
設置php-fpm開機自啟動
mv php-fpm /etc/init.d/ // 移動php-fpm腳本到init.d目錄下 chmod a+x /etc/init.d/php-fpm // 添加執行權限 chkconfig --add php-fpm // 添加開機啟動配置 chkconfig --level 2345 php-fpm on // 配置開機啟動權限級別四、配置nginx支持php
打開nginx.conf,修改如下
vim /usr/local/nginx/conf/nginx.conf
nginx.conf文件內容:
# 首行user去掉注釋,修改Nginx運行組為www www; # 必須與/usr/local/php/etc/php-fpm.conf中的user,group配置相同,否則php運行出錯 user www www; worker_processes 1; # 開啟nginx錯誤日志 error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #log_format main "$remote_addr - $remote_user [$time_local] "$request" " # "$status $body_bytes_sent "$http_referer" " # ""$http_user_agent" "$http_x_forwarded_for""; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; client_max_body_size 2m; #gzip on; # 包含域名配置文件( 支持通配符) include vhost/*.conf; }
配置 fastcgi.conf文件:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # 腳本文件請求的路徑 fastcgi_param QUERY_STRING $query_string; # 請求的參數;如?app=123 fastcgi_param REQUEST_METHOD $request_method; # 請求的動作(GET,POST) fastcgi_param CONTENT_TYPE $content_type; # 請求頭中的Content-Type字段 fastcgi_param CONTENT_LENGTH $content_length; # 請求頭中的Content-length字段。 fastcgi_param SCRIPT_NAME $fastcgi_script_name; # 腳本名稱 fastcgi_param REQUEST_URI $request_uri; # 請求的地址不帶參數 fastcgi_param DOCUMENT_URI $document_uri; # 與$uri相同。 fastcgi_param DOCUMENT_ROOT $document_root; # 網站的根目錄。在server配置中root指令中指定的值 fastcgi_param SERVER_PROTOCOL $server_protocol; # 請求使用的協議,通常是HTTP/1.0或HTTP/1.1。 fastcgi_param GATEWAY_INTERFACE CGI/1.1; # cgi 版本 fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; # nginx 版本號,可修改、隱藏 fastcgi_param REMOTE_ADDR $remote_addr; # 客戶端IP fastcgi_param REMOTE_PORT $remote_port; # 客戶端端口 fastcgi_param SERVER_ADDR $server_addr; # 服務器IP地址 fastcgi_param SERVER_PORT $server_port; # 服務器端口 fastcgi_param SERVER_NAME $server_name; # 服務器名,域名在server配置中指定的server_name #fastcgi_param PATH_INFO $path_info; # 可自定義變量 # PHP only, required if PHP was built with --enable-force-cgi-redirect fastcgi_param REDIRECT_STATUS 200;
配置虛擬主機公用配置文件server.conf:
# php文件訪問配置 location ~ .*.(php|php5)?$ { #fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; } # 靜態文件緩存30天 location ~ .*.(gif|jpg|jpeg|png|bmp|swf|ico)$ { expires 30d; # access_log off; } # js,css文件緩存15個小時 location ~ .*.(js|css)?$ { expires 15d; # access_log off; }
配置虛擬主機文件 vhost/yphp.cn.conf:
server { listen 80; # 配置域名 server_name www.yphp.cn yphp.cn; # 配置網站目錄 root /usr/local/nginx/html/yphp.cn; # 配置域名重定向 if ($host != "www.yphp.cn" ) { rewrite ^/(.*)$ http://www.yphp.cn/$1 permanent; } location / { # 配置rewrite if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } # include /usr/local/nginx/html/yphp/.htaccess; # rewrite ^/(.+)/(.+)[/]?$ /index.php?m=$1&a=$2 last; # 配置默認訪問文件 index index.php index.html index.htm; } # 包含虛擬主機公用配置文件 include server.conf; }
測試看看我們的辛苦是否有回報吧
/etc/init.d/nginx stop # 停止nginx 服務 /etc/init.d/nginx start # 啟動nginx 服務
記得綁定下host文件,然后在瀏覽器輸入我們配置的域名,yphp.cn
**
給程序員一個鼓勵唄!**
微信
支付寶
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/21677.html
摘要:如果不用我們可能將上述講的命令每搭建一次就需要執行一遍,有沒有能統一管理的有,就是在環境搭建中的作用快速創建鏡像,快速創建并運行容器,實現統一管理。 前言 初學者在dcoker學習過程中,可能不太清楚docker中那么多的命令,參數,工具在lnmp環境搭建中起了什么作用,下面跟著我來熟悉一下。(本文面向的是不怎么熟悉linux的:phper) 鏡像,容器,倉庫 鏡像:Docker 鏡像...
摘要:博客搬家原地址原發表時間本文討論使用安裝包構建網站底層服務后,包括域名解析,的管理等的一系列填坑歷程。域名解析問題相關首先將本人的網站信息公布如下域名地址主機提供方搬瓦工域名托管及解析阿里云萬網本文之后的內容均是基于以上信息。 「博客搬家」 原地址: CSDN 原發表時間: 2016-11-16 本文討論使用 LNMP 安裝包構建網站底層服務后,包括域名解析,MySQL 的管理等...
摘要:前言使用搭建開發環境可以避免團隊開發帶來的開發環境不一致問題,避免了很多不必要的麻煩,同時其分發機制也也有利于新來的同事立即部署適合于公司的開發環境,非常便利,是很多互聯網公司的首選。因此,學習如何搭建基于的開發環境是很有必要的。 前言 使用vagrant搭建開發環境可以避免團隊開發帶來的開發環境不一致問題,避免了很多不必要的麻煩,同時其分發機制也也有利于新來的同事立即部署適合于公司的...
閱讀 1436·2021-09-02 19:23
閱讀 1586·2021-08-11 11:19
閱讀 641·2019-08-30 15:55
閱讀 1653·2019-08-30 12:50
閱讀 2241·2019-08-30 11:23
閱讀 2180·2019-08-29 13:13
閱讀 1500·2019-08-28 18:13
閱讀 3344·2019-08-26 11:53