在Linux主機上,安裝上傳下載工具包rz及sz
如果不知道你要安裝包的具體名稱,可以使用yum provides */name 進行查找系統(tǒng)自帶軟件包的信息;
一般會列出軟件包的名稱及版本,還有安裝路徑;查詢到軟件包名后,使用yum install -y 包名 進行安裝。
lrzsz包安裝完成后包括上傳rz、下載sz命令;只需要安裝這個包即可。
[root@localhost src]# yum install -y lrzsz
1.centos6安裝配置java:方法 一# rz (傳入宿主機的rpm包,無次命令可通過yum install lrzsz安裝)
# rpm -ivh jdk-8u111-linux-x64.rpm
# vim /etc/profile.d/java.sh (新建)
# . /etc/profile.d/java.sh
linux允許多java版本共存,此處也可寫成固定版本:
windows下環(huán)境變量設(shè)置:
# JAVA_HOME —— C:Javajdk
# CLASSPATH —— .;%JAVA_HOME%libdt.jar;%JAVA_HOME%libtools.jar;
# Path —— %JAVA_HOME%bin;%JAVA_HOME%jrebin;
# wget http://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-8/v8.5.13/bin/apache-tomcat-8.5.13.tar.gz (或者直接去官網(wǎng)復(fù)制鏈接)
# tar xf apache-tomcat-8.5.13.tar.gz -C /usr/local/
# cd /usr/local/
# ln -sv apache-tomcat-8.5.13/ tomcat
# cd tomcat
# vim /etc/profile.d/tomcat.sh (新建)
# . /etc/profile.d/tomcat.sh
開啟catalina:
# catalina.sh start
查看端口:
# ss -tnlp
方法 二:
編輯/etc/profile,最后加上export語句,如下圖: 輸入:# source /etc/profile
PATH內(nèi)容重復(fù),可使用如下腳本清除:
新建腳本文件:
# vim clearpath.sh
awk -F: '{
sep = ""
for (i = 1; i <= NF; ++i)
if (unique[$i] != 1)
{
out = out sep $i
sep = ":"
unique[$i] = 1
}
print out
}' <<< $PATH
# chmod +x clearpath.sh
# . clearpath.sh
3.編譯安裝nginx:
pcre-devel是使用pcre開發(fā)的一個二次開發(fā)庫。
zlib庫提供了很多種壓縮和解壓縮的方式,nginx使用zlib對http包的內(nèi)容進行g(shù)zip,所以需要在linux上安裝zlib庫。
OpenSSL 是一個強大的安全套接字層密碼庫,囊括主要的密碼算法、常用的密鑰和證書封裝管理功能及SSL協(xié)議,并提供豐富的應(yīng)用程序供測試或其它目的使用。nginx不僅支持http協(xié)議,還支持https(即在ssl協(xié)議上傳輸http),所以需要在linux安裝openssl庫。
1、解決依賴關(guān)系
# yum groupinstall "Development Tools" "Server Platform Deveopment" -y && yum install openssl-devel pcre-devel -y
2、安裝
首先添加用戶nginx,實現(xiàn)以之運行nginx服務(wù)進程:
# groupadd -r nginx
# useradd -r -g nginx nginx
3、接著開始編譯和安裝:
# tar -zxvf nginx-1.12.0.tar.gz -C /software/
# ./configure
--prefix=/usr/local/nginx
--error-log-path=/data/applogs/nginx/error.log
--http-log-path=/data/applogs/nginx/access.log
--pid-path=/var/run/nginx/nginx.pid
--lock-path=/var/lock/nginx.lock
--user=nginx
--group=nginx
--with-http_ssl_module
--with-http_flv_module
--with-http_stub_status_module
--with-http_gzip_static_module
--http-client-body-temp-path=/usr/local/nginx/client/
--http-proxy-temp-path=/usr/local/nginx/proxy/
--http-fastcgi-temp-path=/usr/local/nginx/fcgi/
--http-uwsgi-temp-path=/usr/local/nginx/uwsgi
--http-scgi-temp-path=/usr/local/nginx/scgi
--with-pcre
# make && make install
4、說明:
1、Nginx可以使用Tmalloc(快速、多線程的malloc庫及優(yōu)秀性能分析工具)來加速內(nèi)存分配,使用此功能需要事先安裝gperftools,而后在編譯nginx添加–with-google_perftools_module選項即可。 2、如果想使用nginx的perl模塊,可以通過為configure腳本添加–with-http_perl_module選項來實現(xiàn),但目前此模塊仍處于實驗性使用階段,可能會在運行中出現(xiàn)意外,因此,其實現(xiàn)方式這里不再介紹。如果想使用基于nginx的cgi功能,也可以基于FCGI來實現(xiàn),具體實現(xiàn)方法請參照網(wǎng)上的文檔。3、為nginx提供SysV init腳本:
新建文件/etc/rc.d/init.d/nginx,內(nèi)容如下:
#!/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/local/nginx/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/usr/local/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:" | sed 's/[^*]*--user=([^ ]*).*/1/g' -`
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
}
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
esac
而后為此腳本賦予執(zhí)行權(quán)限:
# chmod +x /etc/rc.d/init.d/nginx
添加至服務(wù)管理列表,并讓其開機自動啟動:
# chkconfig –add nginx
# chkconfig nginx on
而后就可以啟動服務(wù)并測試了:
# service nginx start