标签:主机 ati 配置文件 tps apache nmp centos nss mirrors
实战环境2 添加安装用户
3 下载Tengine安装包
#cd /usr/local/src/
#wget http://tengine.taobao.org/download/tengine-2.1.2.tar.gz
3.1 解压并安装
#tar xvf tengine-2.1.2.tar.gz -C /usr/local/
#/usr/local/tengine-2.1.2
#./configure --prefix=/usr/local/tengine \
--user=www \
--group=www \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_realip_module \
--with-http_stub_status_module \
--with-http_gzip_static_module \
--with-pcre
#make
#make install
3.2 查看安装结果
#whereis tengine
#/usr/local/tengine/sbin/nginx –t
启动Tenginx并测试访问
#/usr/local/tengine/sbin/nginx
4 安装 Tomcat
#yum install jdk-8u241-linux-x64.rpm
#ls /usr/java/
#vim /etc/profile.d/java.sh
#. /etc/profile.d/java.sh
#java -version
#echo $JAVA_HOME
#tar xf apache-tomcat-8.5.53.tar.gz -C /usr/local/
#cd /usr/local/
#ln -sv apache-tomcat-8.5.53 tomcat
#vim /etc/profile.d/tomcat.sh
#. /etc/profile.d/tomcat.sh
#catalina.sh version
#catalina.sh configtest
#catalina.sh start
#http://172.24.77.241:8080/
测试访问
5 配置虚拟主机
#vim /usr/local/tengine/conf/nginx.conf
测试配置文件
#/usr/local/tengine/sbin/nginx –t
重新加载Nginx
#/usr/local/tengine/sbin/nginx -s reload
6 测试访问
#http://172.24.77.242:9001/
标签:主机 ati 配置文件 tps apache nmp centos nss mirrors
原文地址:https://blog.51cto.com/13688209/2506373