四虎影视在线影院在线观看,小s货再浪些再咬紧点h,国产精品水嫩水嫩,97精产国品一二三产区

無標(biāo)題文檔
wdCP系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用教程) wdCDN系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用手冊)
wdOS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用教程) wdDNS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用手冊)
注冊 發(fā)貼 提問 回復(fù)-必看必看 wddns免費(fèi)智能 DNS 開通 本地或虛擬機(jī)使 用wdcp 一鍵包在mysql編 譯時"卡住"
AI導(dǎo)航網(wǎng)AI應(yīng)用網(wǎng)站大全 wdcp官方技術(shù)支持/服務(wù) 阿里云8折優(yōu)惠券 無敵云 騰訊云優(yōu)惠中,現(xiàn)注冊更有260代金額券贈送
返回列表 發(fā)帖
提問三步曲: 提問先看教程/FAQ索引(wdcp,wdcp_v3,一鍵包)及搜索,會讓你更快解決問題
1 提供詳細(xì),如系統(tǒng)版本,wdcp版本,軟件版本等及錯誤的詳細(xì)信息,貼上論壇或截圖發(fā)論壇
2 做過哪些操作或改動設(shè)置等

溫馨提示:信息不詳,很可能會沒人理你!論壇有教程說明的,也可能沒人理!因為,你懂的

[已解決] 無法wget,不能用vhost.sh命令。求解!

注意:如不是本人定制的系統(tǒng)及用本人的一鍵安裝包,將沒有這個命令
可以下載,如下方式:
wget http://cd-genova.com/in_scripts/vhost.sh.txt
mv vhost.sh.txt /bin/vhost.sh
chmod 755 /bin/vhost.sh
就可以使用了

在本機(jī)VM上裝好集成LNMP包,想用vhost.sh命令,但是發(fā)現(xiàn)沒有用。


想重新下載卻wget不到。。。

提示:
[root@wdlinux ~]# wget http://cd-genova.com/in_scripts/vhost.sh.txt
--2011-11-21 00:02:16--  http://cd-genova.com/in_scripts/vhost.sh.txt
Resolving cd-genova.com... failed: Temporary failure in name resolution.
wget: unable to resolve host address `cd-genova.com'

在網(wǎng)上查了下報錯,是由于,resolv.conf中的DNS配置錯誤引起的。。。但是修改后 重啟 仍然不能下載

求解。。。

執(zhí)行
echo "113.105.167.213   cd-genova.com" >> /etc/hosts
再下載
看清提問三步曲及多看教程/FAQ索引(wdcp,v3,一鍵包,wdOS),益處多多.wdcp工具集 阿里云主機(jī)8折優(yōu)惠碼

TOP

回復(fù) 2# admin
執(zhí)行了你所說的但還是下載不成功 這次提示是超時...

    Connecting to cd-genova.com|113.105.167.213|:80... failed: Connection timed out.
Retrying.
--2011-11-21 01:53:52--  (try: 2)  http://cd-genova.com/in_scripts/vhost.sh.txt
Connecting to cd-genova.com|113.105.167.213|:80...

TOP

  1. #!/bin/bash
  2. #
  3. # Web Server Install Script
  4. # Created by wdlinux QQ:12571192
  5. # Url:http://cd-genova.com
  6. # Last Updated 2010.11.19
  7. #


  8. PS_SERVER=`ps ax | grep nginx.conf | grep -v "grep"`
  9. if [[ $PS_SERVER ]];then
  10.         SERVER="nginx"
  11. else
  12.         SERVER="apache"
  13. fi

  14. conf_dir="/www/wdlinux/$SERVER/conf/vhost"
  15. log_dir="/www/wdlinux/$SERVER/logs"
  16. web_dir="/www/web"

  17. function dis_info {
  18.         clear
  19.         echo
  20.         echo "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
  21.         echo "Add Virtual Host for wdlinux or lanmp,Written by wdlinux"
  22.         echo "---------------------------------------------------------------"
  23.         echo "Wdlinux is a customized version of CentOS based, for quick, easy to install web server system"
  24.         echo "lanmp is a tool to auto-compile & install lamp or lnmp on linux"
  25.         echo "This script is a tool add virtual host for wdlinux"
  26.         echo "For more information please visit http://cd-genova.com"
  27.         echo "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
  28.         echo
  29.         echo "The server is running $SERVER"
  30.         echo "----------------------------------------------------------------"
  31.         echo
  32. }
  33. dis_info;

  34. echo "Pleast input domain:"
  35. read -p "(Default or Example domain:cd-genova.com):" domain
  36. if [[ $domain == "" ]];then
  37.         domain="cd-genova.com"
  38. fi
  39. echo
  40. echo "domain:$domain"
  41. echo "-----------------------------------------"
  42. echo
  43. sdomain=${domain#www.}
  44. if [[ -f "$conf_dir/$domain.conf" ]];then
  45.         echo "$conf_dir/$domain.conf is exists!"
  46.         exit
  47. fi

  48. echo "Do you want to add more domain name? (y/n)"
  49. read more_domain
  50. if [[ $more_domain == "y" || $more_domain == "Y" ]];then
  51.         echo "Input domain name,example(bbs.wdlinux.cn blog.wdlinux.cn):"
  52.         read domain_a
  53.         domain_alias=${sdomain}" "${domain_a}
  54. else
  55.         domain_alias=$sdomain;
  56. fi
  57. echo
  58. echo "domain alias:$domain_alias"
  59. echo "-----------------------------------------"
  60. echo

  61. echo "Allow access_log? (y/n)"
  62. read access_log
  63. if [[ $access_log == "y" || $access_log == "Y" ]];then
  64.         nginx_log="log_format  $domain  '\$remote_addr - \$remote_user [\$time_local] \"\$request\" '
  65.                '\$status \$body_bytes_sent \"\$http_referer\" '
  66.                '\"\$http_user_agent\" \$http_x_forwarded_for';
  67.             access_log  logs/$domain.log  $domain;"
  68.         apache_log="    ErrorLog \"logs/$domain-error_log\"
  69.     CustomLog \"logs/$domain-access_log\" common"
  70.         echo
  71.         echo "access_log dir:"$log_dir/$domain.log
  72.         echo "------------------------------------------"
  73.         echo
  74. else
  75.         nginx_log="access_log off;"
  76.         apache_log=""
  77. fi

  78. echo "Do you want to add ftp Account? (y/n)"
  79. read ftp_account
  80. if [[ $ftp_account == "y" || $ftp_account == "Y" ]];then
  81.         read -p "ftp user name:" ftp_user
  82.         read -p "ftp user password:" ftp_pass
  83.         useradd -d $web_dir/$domain -s /sbin/nologin $ftp_user
  84.         echo "$ftp_pass" | passwd --stdin $ftp_user
  85.         chmod 755 $web_dir/$domain
  86.         echo
  87. else
  88.         echo "Create virtual host directory."
  89.         mkdir -p $web_dir/$domain
  90.         chown -R www.www $web_dir/$domain
  91. fi

  92. if [[ $SERVER == "nginx" ]];then
  93. cat > $conf_dir/$domain.conf<<eof
  94. server {
  95.         listen       80;
  96.         server_name $domain $domain_alias;
  97.         root $web_dir/$domain;
  98.         index  index.html index.php index.htm wdlinux.html;

  99.         location ~ \.php$ {
  100.             fastcgi_pass   127.0.0.1:9000;
  101.             fastcgi_index  index.php;
  102.             include fcgi.conf;
  103.         }
  104.         location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
  105.                 expires      1d;
  106.         }

  107.         location ~ .*\.(js|css)?$ {
  108.                 expires      12h;
  109.         }
  110.         $nginx_log
  111.     }
  112. eof
  113. else
  114. cat > $conf_dir/$domain.conf<<eof
  115. <VirtualHost *:80>
  116.     DocumentRoot "$web_dir/$domain"
  117.     ServerName $domain
  118.     ServerAlias $domain_alias
  119. $apache_log
  120. </VirtualHost>
  121. eof
  122. fi

  123. cat > $web_dir/$domain/index.html<<eof
  124. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  125. <html xmlns="http://www.w3.org/1999/xhtml">
  126. <head>
  127. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
  128. <title>test page</title>
  129. </head>

  130. <body>
  131. <div align="center">
  132.   <h1>test page of $domain  </h1>
  133.   <p>Create by vhost.sh of <a href="http://cd-genova.com" target="_blank">cd-genova.com</a> </p>
  134. </div>
  135. </body>
  136. </html>
  137. eof
  138. if [[ $ftp_account == "y" || $ftp_account == "Y" ]];then
  139.         chown $ftp_user $web_dir/$domain/index.html
  140. fi

  141. if [[ $SERVER == "nginx" ]];then
  142.         service nginxd restart
  143. else
  144.         service httpd restart
  145. fi

  146. echo
  147. echo
  148. echo
  149. echo "web site infomations:"
  150. echo "========================================"
  151. echo "domain list:$domain $domain_alias"
  152. echo "----------------------------------------"
  153. echo "website dir:$web_dir/$domain"
  154. echo "----------------------------------------"
  155. echo "conf file:$conf_dir/$domain.conf"
  156. echo "----------------------------------------"
  157. if [[ $access_log == "y" || $access_log == "Y" ]];then
  158.         echo "access_log:$log_dir/$domain.log"
  159.         echo "----------------------------------------"
  160. fi
  161. if [[ $ftp_account == "y" || $access_log == "Y" ]];then
  162.         echo "ftp user:$ftp_user password:$ftp_pass";
  163.         echo "----------------------------------------"
  164. fi
  165. echo "web site is OK"
  166. echo "For more information please visit http://cd-genova.com"
  167. echo "========================================"
復(fù)制代碼

TOP

樓主 我?guī)湍阆铝?a href="http://cd-genova.com/in_scripts/vhost.sh.txt" target="_blank">http://cd-genova.com/in_scripts/vhost.sh.txt 上面是這個文件的內(nèi)容

TOP

回復(fù) 5# xmmaster


    謝謝這位兄弟~

我知道下載,但是解決不了為什么不能wget。。。

TOP

回復(fù)  admin
執(zhí)行了你所說的但還是下載不成功 這次提示是超時...

    Connecting to ... failed: Conn ...
花少 發(fā)表于 2011-11-20 17:53



  這個是網(wǎng)絡(luò)原因
看清提問三步曲及多看教程/FAQ索引(wdcp,v3,一鍵包,wdOS),益處多多.wdcp工具集 阿里云主機(jī)8折優(yōu)惠碼

TOP

本帖最后由 花少 于 2011-11-23 16:11 編輯

回復(fù) 7# admin


    謝謝管理員 的確是網(wǎng)絡(luò)問題

本機(jī)IP 192.168.1.2 虛擬機(jī)IP 192.168.110 網(wǎng)關(guān) 192.168.1.1

本機(jī)和虛擬機(jī)可以ping通

但虛擬機(jī)ping不通外網(wǎng) 就造成了無法wget

虛擬機(jī)怎么才能ping通外網(wǎng)呢?

/etc/resolv.conf 設(shè)置的是

202.101.226.68

202.101.224.69

我這本地電信的DNS


但是我在VM上ping www.baidu.com

ping: unknown host www.baidu.com

求解

TOP

首先,你要確定網(wǎng)絡(luò)通,再確定DNS
如果網(wǎng)絡(luò)不通,DNS也沒有意義
看清提問三步曲及多看教程/FAQ索引(wdcp,v3,一鍵包,wdOS),益處多多.wdcp工具集 阿里云主機(jī)8折優(yōu)惠碼

TOP

回復(fù) 9# admin


    我本機(jī)網(wǎng)絡(luò)是通的 可以上網(wǎng) 一切正常

到虛擬機(jī)那邊就不行

TOP

最后臨時解決方法如下:

采用NAT,ping外網(wǎng)的時候一直出現(xiàn)connect: network is unreachable 錯誤

這條命令就可以搞定 哈哈

route add default  gw 192.168.1.1

后面那是你的網(wǎng)關(guān)。

現(xiàn)在 route 一下
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.1.0     *               255.255.255.0   U     0      0        0 eth0
default         my.router       0.0.0.0         UG    0      0        0 eth0

之前如果沒有添加 的話, 只有上面的第一條。  第二條是新加進(jìn)去的。
如果還訪問不了, 哪你的情況可能有點特殊哦。

這樣重啟以后 就不能 用了。
修改
編輯  /etc/network/interfaces
添加 gateway  192.168.1.1
or
在/etc/sysconfig/network中添加:
GATEWAY=your IP


以上是百度到的,臨時的route方法可以,后面的方法試了重啟后還是無效。

TOP

回復(fù) 1# 花少


    以我使用的VM為例,網(wǎng)卡設(shè)置為bridged。也就是橋接模式,虛機(jī)網(wǎng)卡與本機(jī)網(wǎng)卡設(shè)置一致,IP不一樣再看看。

TOP

返回列表