1. 程式人生 > >linux resin 基本站點配置

linux resin 基本站點配置

grep 進行 prope pro host 默認 resin unix 虛擬主機

進入配置文件目錄:
[root@linuxidc resin-4.0.36]# cd /usr/local/resin/conf/
查看都有哪些配置文件:
[root@linuxidc conf]# ls
app-default.xml      health.xml  licenses          resin.xml
cluster-default.xml  keys        resin.properties
配置1:改變端口8080為80:
編輯配置文件:
[root@linuxidc conf]# vim resin.properties
修改app.http :8080為app.http :80
重啟: [root@linuxidc conf]# /etc/init.d/resin stop Stopping resin: . [root@linuxidc conf]# /etc/init.d/resin start Starting resin: . 查看端口: [root@linuxidc conf]# netstat -lnp |grep java tcp 0 0 127.0.0.1:6600 0.0.0.0:* LISTEN 4387/java tcp 0 0 127.0.0.1:6800 0.0
.0.0:* LISTEN 4432/java tcp 0 0 :::80 :::* LISTEN 4432/java unix 2 [ ACC ] STREAM LISTENING 16890 4387/java /tmp/.java_pid4387.tmp 在瀏覽器中輸入:192.168.11.160(可以加上:80,也可以不加,默認就是80)進行測試。 配置2:配置虛擬主機 創建網站根目錄: [root@linuxidc conf]# mkdir
/data/resinweb 編輯配置文件: [root@linuxidc conf]# vim resin.xml 在cluster模塊中增加一臺虛擬主機內容如下: <host id="www.linuxidc.com" root-directory="."> <web-app id="/" root-directory="/data/resinweb"/> </host> 重啟: [root@linuxidc conf]# /etc/init.d/resin stop Stopping resin: . [root@linuxidc conf]# /etc/init.d/resin start Starting resin: . 在根目錄下寫點東西: [root@linuxidc conf]# vim /data/resinweb/1.jsp <html> <body> <center> Now time is: <%=new java.util.Date()%> </center> </body> </html> 測試一下jsp解析: [root@linuxidc conf]# curl -xlocalhost:80 www.linuxidc.com/1.jsp <html> <body> <center> Now time is: Sun Mar 12 03:51:05 CST 2017 </center> </body> </html> 如果解析出Date()函數顯示時間則表示我們配置的虛擬主機成功了。

linux resin 基本站點配置