CentOS Linux VPS Kloxo/Lxadmin虛擬主機控制面板安裝教程
安裝Kloxo/Lxadmin控制面板首先要確保安裝的CentOS 32bit的Linux發行版(64位問題比較多),再使用putty登錄Linux,如果不會可以查看:如何使用Putty遠程(SSH)管理Linux VPS
執行如下命令:
wget http://download.lxcenter.org/download/kloxo/production/kloxo-installer.sh
sh ./kloxo-installer.sh --type=master
先按提示,然任意建開始安裝,后面會有提示,一般輸入y,回車就行。
國內主機可能安裝要慢點了,因為是在線安裝(更新源在國外),使用美國主機的朋友們很快就能安裝完了。
安裝完后你除了安好Kloxo/Lxadmin,同時也基本安好了Apache、Lighttpd、MySQL、Xcache、Bind、Djbdns等一系列服務器軟件。
yum install php-bcmath /*高精度數學運算組件,默認沒安裝,MD5運算時用到*/
yum install??php-mhash
yum install php-mbstring
yum check-update (檢查更新)
yum update (更新所有更新)
yum clean all (清理安裝包)
基本完成,可以把終端關閉了。我們來登錄Kloxo/Lxadmin,第一次登陸默認的用戶名和密碼都是admin,登錄地址:
https://IP:7777/????? /*安全連接,不過默認證書不受IE信任*/
http://IP:7778/?????? /*還是用這個普通鏈接吧*/
Zend可以在Lxadmin后臺的PHPConfig里啟用,Apache可以從SwichProgram里選擇,建議先選擇lighttpd和bind然后再選回apache和djbdns,否則你會看到內存占用量很高。
新手建議用Apache,99%能正常支持.htaccess的rewrite規則。
安裝中文語言包看一參考本文:http://www.0794baidu.com/vps-cp/vps-lxadmin-chinese.html
安裝完后需要修改/etc/httpd/conf/httpd.conf? 查找:AddDefaultCharset UTF-8 改為:AddDefaultCharset OFF ,這樣就會引起網頁的亂碼問題。
>>轉載請注明出處:VPS偵探 本文鏈接地址:http://www.0794baidu.com/vps-cp/centos-linux-vps-kloxol-xadmin.html










為什么我重復裝了2次都不行? 進入http://IP:7778/ https://IP:7777/ 都無法訪問?
@一鳴, 應該是在下載文件吧,稍等等等看一下。
Install 32 Package(s)
Update 10 Package(s)
Remove 0 Package(s)
Total size: 81 M
Total download size: 11 M
Downloading Packages:
安裝到這里就停止了,怎么處理?
@特名品, 不能,lnmp和kloxo只能選一個。
本身都是同樣的產品。
我 安裝了LNMP包后為什么不能再安裝kloxo面板呢
root@martin:~# sh ./kloxo-install-master.sh
./kloxo-install-master.sh: 49: function: not found
[y/n]: y
軍哥,不知道直接使用kloxo的重啟按鈕來重啟服務器會導致服務器不能訪問(連SSH都不能連接)的情況呢,最后只能重裝 ?? ?? 才解決
我回憶了下這情況發生在我綁定了多個域名到同一個目錄時不能成功,之后重啟。
不過我有改過SSH的端口,不知道會不會是這個原因。
謝謝軍哥,可以訪問啦。 ?? ??
@VPS新丁, 用ip無法訪問控制面板嗎,執行/etc/init.d/iptables stop,再訪問試試
軍哥,我按照上面安裝好了,最后提示安裝成功。
但是我用IP訪問的時候怎么都訪問不了呢。不知道是什么回事。謝謝。
vz多大內存建議安裝kloxo面板?
[...] Linode VPS 添加多IP/設置靜態IP(Kloxo no_ip_address解決方法) 2010年01月31日 下午 | 作者:VPSerLinode VPS默認情況下是通過DHCP自動獲取IP的,所以在安裝Kloxo完成設置Kloxo的時候會出現no_ip_address的提示,這個時候就需要手動設置上IP,這樣才能添加域名。如果你設置Kloxo的時候出現no_ip_address的提示你可以按照下面步驟修改:使用編輯器編輯:/etc/sysconfig/network-scripts/ifcfg-eth0# Configuration for eth0 DEVICE=eth0 BOOTPROTO=none# This line ensures that the interface will be brought up during boot. ONBOOT=yes# eth0 - This is the main IP address. # The address, netmask and gateway are all necessary. IPADDR=12.34.56.78?? #你的IP地址 NETMASK=255.255.255.0? #子網掩碼 GATEWAY=12.34.56.1 #網關一般這樣設置好,再執行命令:service network restart 重啟網絡就好了,如果還是不通,重啟試一下。添加第2個IP,可以創建 /etc/sysconfig/network-scripts/ifcfg-eth0:0 # Configuration for eth0:0 DEVICE=eth0:0 BOOTPROTO=none# This line ensures that the interface will be brought up during boot. ONBOOT=yes# eth0:0 IPADDR=34.56.78.90 NETMASK=255.255.255.0 GATEWAY=12.34.56.1添加第3個IP,創建 /etc/sysconfig/network-scripts/ifcfg-eth0:1 按上面的內容添加到這個文件中,以此類推。以上辦法都是在CentOS或者Fedora下添加IP的方法,如果是在Debian/Ubuntu下添加IP的方法(注,當然Kloxo沒有Debian下的版本):修改 /etc/network/interfaces # The loopback interface auto lo iface lo inet loopback# Configuration for eth0 and aliases# This line ensures that the interface will be brought up during boot. auto eth0 eth0:0 eth0:1# eth0 - This is the main IP address that will be used for most outbound connections. # The address, netmask and gateway are all necessary. iface eth0 inet static address 12.34.56.78 netmask 255.255.255.0 gateway 12.34.56.1# eth0:0 iface eth0:0 inet static address 34.56.78.90 netmask 255.255.255.0# eth0:1 - Private IPs have no gateway (they are not publicly routable) so all you need to # specify is the address and netmask. iface eth0:1 inet static address 192.168.133.234 netmask 255.255.128.0保存,重啟網絡,/etc/init.d/networking restart 即可。 >>轉載請注明出處:VPS偵探 本文鏈接地址:http://www.0794baidu.com/manage/linode-vps-add-ip.html相關文章:CentOS Linux VPS Kloxo/Lxadmin控制面板安裝教程Linode VPS 使用1年評價Linode VPS開放測試新版控制面板BuyVM – $15/年 Fremont He.net 128MB OpenVZ VPS有貨啦NameCheap 2010年9月優惠碼DiaHosting Fremont He.net新機房VPS測試(與Linode同機房)去除Kloxo(原lxadmin)域名個數限制的方法Linode 7周年,內存升級RAMHOST的VPS小攻略之SSH和OpenVPN安裝配置[轉]安裝完kloxo后不支持Mysql,GD問題的解決方法google_ad_client = "pub-3421055613838817"; /* 468x15, 創建于 10-1-6 */ google_ad_slot = "3251390416"; google_ad_width = 468; google_ad_height = 15; 發表評論(4 條評論) 分類:VPS管理維護 標簽: IP, Kloxo, linode, no_ip_address, VPS Tags: IP,Kloxo,linode,no_ip_address,VPS.VPS偵探推薦: DiaHosting、Linode、PhotonVPS、瑞豪開源、VPSYou、第九主機等美國VPS主機。 歡迎加入VPS偵探論壇交流:http://bbs.vpser.net評論(4 條評論)alpha2beta - 二月 2nd, 2010 21:55Kloxo的問題是不方便用Nginx吧?VPSer 回復:二月 2nd, 2010 at 22:46@alpha2beta, 等Kloxo能支持Nginx了,不如等我的lnmpWeb版的面板,哈哈whcoupon - 二月 1st, 2010 00:36收藏先久酷 - 一月 31st, 2010 22:19頂........發表評論姓名: *必填郵件: *必填 (不會被公開)網站: 點擊取消回復/* */ var commentformid = "commentform"; var USERINFO = false; var atreply = "authorlink"; /* */ /* */ var lstcommentid=1206; var needauthoremail=true; var sortflag="DESC"; /* */ 關于VPS偵探 VPS偵探是一個致力于美國VPS主機推薦、國內VPS主機推薦、VPS主機架設、VPS優化、VPS優惠信息及VPS免費試用的信息共享平臺,這里將提供您所需要的關于VPS的價值性服務。 請尊重作者的勞動成果,轉載請注明出處。 聯系我們VPS偵探推薦 VPS偵探建立在Linode和DiaHosting上。 本站強烈推薦:DiaHosting、Linode、PhotonVPS、瑞豪開源、VPSYou、第九主機等美國VPS主機。美國VPS/服務器/VPN代購:http://jungehost.taobao.com/ 搜索本站內容 [...]
@faye, rpm -ivh http://centos.ustc.edu.cn/centos/5.4/os/i386/CentOS/yum-3.2.22-20.el5.centos.noarch.rpm
rpm -ivh http://centos.ustc.edu.cn/centos/5.4/os/i386/CentOS/yum-fastestmirror-1.1.16-13.el5.centos.noarch.rpm
wget http://download.lxlabs.com/download/kloxo/production/kloxo-install-master.sh
sh ./kloxo-install-master.sh
安裝kloxo不是這么簡單的,ramhost是裸系統,什么都沒裝,怎么安裝yum?
[...] VPS時都會首選安裝Kloxo。安裝完Kloxo后是有綁定40個域名的限制,那么如何去除限制吶?1、打開 [...]
@codylove, kloxo不熟悉,nginx的話很簡單。