Nginx多域名配置 一、環(huán)境準(zhǔn)備 1.Tengine,也稱Taobao nginx,淘寶在Nginx基礎(chǔ)上,針對大型網(wǎng)站訪問,添加了一些高級功能和特性。 2.Resin服務(wù)器或者Tomcat服務(wù)器,用來做Web服務(wù)器 二、域名解析 假設(shè)虛擬主機外網(wǎng)IP是123.123.123.123,添加解析到該域名: 1.添加域名解析,@和www,分別對應(yīng)tngtech.co
珠山網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),珠山網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為珠山上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的珠山做網(wǎng)站的公司定做!
1.建立目錄并掛載光盤
[root@dg ~]# mkdir /mnt/cdrom
[root@dg ~]# mount /dev/cdrom /mnt/cdrom
mount: block device /dev/cdrom is write-protected, mounting read-only
2.切換目錄并安裝Dhcp服務(wù)
[root@dg ~]# cd /mnt/cdrom/Server/
[root@dg Server]# ll dhcp*
-r--r--r-- 108root root 886718 2009-07-16 dhcp-3.0.5-21.el5.i386.rpm
-r--r--r-- 125 root root 134127 2009-07-16 dhcp-devel-3.0.5-21.el5.i386.rpm
-r--r--r-- 108 root root 196554 2009-07-16 dhcpv6-1.0.10-17.el5.i386.rpm
-r--r--r-- 108 root root 125916 2009-07-16 dhcpv6-client-1.0.10-17.el5.i386.rpm
[root@dg Server]# rpm -ivh dhcp-3.0.5-21.el5.i386.rpm
warning: dhcp-3.0.5-21.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing... ? ? ? ? ? ? ? ?########################################### [100%]
? ? ? ? package dhcp-3.0.5-21.el5.i386 is already installed
3.修改配置文件
[root@dg Server]# vim /etc/dhcpd.conf
進去后原始沒有幾行數(shù)據(jù)在命令行模式下輸入
:r /usr/share/doc/dhcp-3.0.5/dhcpd.conf ??中間可以用Tab鍵補全
進入后配置如下
#
ddns-update-style?interim;
ignore?client-updates
subnet?192.168.1.0?netmask?255.255.255.0?{?????作用域?、子網(wǎng)掩碼
#?---?default?gateway
option?routers??????????????????192.168.1.254;??網(wǎng)關(guān)
option?subnet-mask??????????????255.255.255.0;
option?nis-domain????????????"domain.org";
option?domain-name??????????"dg.com";??dns服務(wù)器域名
option?domain-name-servers??192.168.1.1?;??dns服務(wù)器地址
option?time-offset??????????????-18000;?#?Eastern?Standard?Time
#??????option?ntp-servers??????????????192.168.1.1;
#??????option?netbios-name-servers????192.168.1.1;
#?---?Selects?point-to-point?node?(default?is?hybrid).?Don't?change?this?unless
#?--?you?understand?Netbios?very?well
#??????option?netbios-node-type?2;
range?dynamic-bootp?192.168.1.30?192.168.1.60;??????????ip地址池
default-lease-time?21600;
max-lease-time?43200;
#?we?want?the?nameserver?to?appear?at?a?fixed?address
host?ns?{
next-server?marvin.redhat.com;
hardware?ethernet?12:34:56:78:AB:CD;
fixed-address?207.175.42.254;
}
}
# DHCP Server Configuration file.
# ?see /usr/share/doc/dhcp*/dhcpd.conf.sample
4.檢查是否有錯誤并啟動dhcp服務(wù)
[root@dg Server]# service dhcpd configtest
Syntax: OK
[root@dg Server]# service dhcpd start
啟動 dhcpd: ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?[確定]
vi 只是編輯器,保存退出后,可以命令行看到當(dāng)前保存的文件。比如ls hello.c 接下來要用編譯器來編譯程序, 比如gcc hello.c -o hello?執(zhí)行程序只要在命令行執(zhí)行就可以了, 比如./hello 建議樓主先去了解一下基本的shell命令。
1、創(chuàng)建域(Domain)的方式: Domain簡單定義為:是一個邏輯管理單元,Domain下面包含著weblogic應(yīng)用服務(wù)器中的所有東西,weblogic應(yīng)用服務(wù)器的啟動,停止都是以domain為單位進行管理的 windows下面可以直接在開始菜單安裝程序中創(chuàng)建domain
命令有:cat、more、less、head、tail、sort、uniq、cut、diff等
1、顯示文本文件:cat
使用cat命令可以顯示文本文件內(nèi)容,或把幾個文件內(nèi)容附加到另一個文件中。
cat [選項] [文件名]
選項說明:
-n 由1開始對所有輸出的行數(shù)編號
-b 對非空輸出行編號
-s 當(dāng)遇到連續(xù)兩行以上的空白行,就替換另一行
-E 在每一行結(jié)束處顯示$
顯示/home/winner/tt.txtx
cat /home/winner/tt.txt
將t1.txt文件的內(nèi)容加入行號后u再添加到t2.txt
cat -n t1.txt t2.txt
2、分頁顯示文本文件:more
more [選項] [-num] [文件名]
-num 表示一次顯示的行數(shù)
Weblogic 創(chuàng)建域 以weblogic帳號登錄(與創(chuàng)建域目錄相對應(yīng)賬戶)
cd /home/weblogic/bea/weblogic92/common/bin
執(zhí)行./config.sh進入配置界面。配置步驟如下:
1.Choose between creating and extending a domain,選擇Create a new WebLogic domain
2.Select Domain Source,選擇Choose Weblogic Platform components
3.Enter the location of the domain template, _____Workshop for WebLogic Platform [2] x 回車
4.Configure Administrator Username and Password,修改管理用戶的用戶名、密碼
5.Domain Mode Configuration,選擇Development Mode
6.Java SDK Selection,選擇默認的Sun SDK 1.5.0_12 @ /usr/java/jdk1.5.0_12
7.Choose Configuration Option,選擇Yes
8.Configure the Administration Server,默認Listen port為7001,需要修改為80
9.Configure Managed Servers
10.Configure Clusters
11.Configure Machines
12.Configure Unix Machines
13.Select the target domain directory for this domain
14.Edit Domain Information,修改域名為life
15.創(chuàng)建的life域位于/home/weblogic/bea/user_projects/domains目錄下