设为首页收藏本站

简体中文 繁體中文 English 日本語 Deutsch 한국 사람 بالعربية TÜRKÇE português คนไทย french

搜索
热搜: 活动 交友 discuz

推荐一款新面板,比国产完善 [复制链接]
查看:329 | 回复:33

360

主题

3975

回帖

9150

积分

论坛元老

积分
9150
发表于 2013-8-28 14:45:04 | 显示全部楼层 |阅读模式
本帖最后由 qiqi13245 于 2013-8-28 15:07 编辑



众所皆知Kloxo的作者挂了嘛,然后开源了,然后有大神就Fork了一套Kloxo,改名叫做KLOXO-MR,经我试用,效果不错,特来推荐

(Centos6我怎么都装不成功,希望有大神可以研究出怎么装,5一切正常)、
项目地址:https://github.com/mustafaramadhan/kloxo/tree/dev

私人演示地址:https://60.190.217.130:7777/  admin admin123456(没外网地址 ,部分功能不可用)

http://60.190.217.130:10000
看看就行了。。别改密码


Kloxo-MR Features

OS: Redhat/CentOS 5 and 6 (32bit and 64bit) or their variants
Billing: AWBS, WHMCS, HostBill, TheHostingTool, AccountLab Plus and Blesta (note: claim by billing's author)
Web server: Nginx, Nginx-Proxy and Lighttpd-proxy; beside Httpd and Lighttpd (in progress: Varnish, Hiawata, ATS and Httpd 2.4)
Php: Dual-php with php 5.3/5.4 as primary and php 5.2 as secondary (in progress: multiple-php)
PHP-type for Apache: php-fpm_worker/_event and fcgid_worker/_event; beside mod_php/_ruid2/_itk and suphp/_worker/_event
Mail server: qmail-toaster instead special qmail (in progress: change from courier-imap to dovecot as imap/pop3)
Database: MySQL or MariaDB
Database Manager: PHPMyAdmin; Adminer, MyWebSql and SqlBuddy as additional
Webmail: Afterlogic Webmail Lite, Telaen, Squirrelmail and Roundcube; Horde and T-Dah dropped
FTP server: Pure-ftpd
DNS Server: Bind, Djbdns and Powerdns (in progress)
Addons: ClamAV, Spamassassin/Bogofilter/Spamdyke and RKHunter
Fixed many bugs of Kloxo Official (including security issues)
And many more!

我来简单翻译下
KLOXO-MR的产品特点
OS:兼容REHL/Centos 5 6,32bit 64bit以及他们的衍生版本(fedora?)
Billing:兼容上面提到的财务系统

Web Server:这是最屌的一部分,比一些国产的好多了(lumange竟然是全777,kloxo自带用户分离防止跨站)Nginx, Nginx-代理、Lighttpd代理; Httpd and Lighttpd 做后端(正在处理兼容性的: Varnish, Hiawata, ATS and Httpd 2.4)

Mail Server:mail-toaster instead special qmail (in progress: change from courier-imap to dovecot as imap/pop3)
Database: MySQL 和 MariaDB
Database Manager: PHPMyAdmin; Adminer, MyWebSql 和 SqlBuddy 作为可选附件
Webmail: Afterlogic Webmail Lite, Telaen, Squirrelmail and Roundcube; Horde and T-Dah dropped
FTP server: Pure-ftpd
DNS Server: Bind, Djbdns and     
Powerdns (in progress)
支持PowerDns哦!这可是好东西啊
Addons: ClamAV(杀毒软件), Spamassassin/Bogofilter/Spamdyke and RKHunter
Fixed many bugs of Kloxo Official (including security issues)修复了Kloxo官方版的一堆BUG(其实老版本还没什么BUG,作者挂了以后,升级的版本倒是一堆BUG)
And many more!

173

主题

2606

回帖

5827

积分

论坛元老

积分
5827
发表于 2013-8-28 23:08:50 | 显示全部楼层
Httpd 2.4可以suphp方式运行么
另外,mr=MyRepublic

360

主题

3975

回帖

9150

积分

论坛元老

积分
9150
 楼主| 发表于 2013-8-28 14:46:06 | 显示全部楼层
本帖最后由 qiqi13245 于 2013-8-28 14:48 编辑

安装方法

A. 事前准备

    cd /

    # 升级系统
    yum update -y
    # 安装一些辅助工具
    yum install yum-utils yum-priorities vim-minimal subversion curl zip unzip -y
    yum install telnet wget -y

    #关闭SELINUX
    setenforce 0
    echo 'SELINUX=disabled' > /etc/selinux/config

    cd /

B. 安装 Kloxo-MR (选择 B.1 或者 B.2)

B.1 如果想尝试最新的开发板:
   - Install/reinstall/upgrade -- data not destroyed with this fork(简单地说就是不会摧毁以前KLOXO的数据)
     for existing kloxo (6.1.x), run 'sh /script/update' first.
如果以前安装了kloxo了,先运行 sh /script/update

    # delete if exist, create kloxo temp dir
    rm -rf /tmp/kloxo; mkdir /tmp/kloxo ; cd /tmp/kloxo;

    rm -f ./kloxo-mr-dev.sh

    # get kloxo-mr-dev installer from github
    wget https://github.com/mustafaramadhan/kloxo/raw/dev/kloxo/install/kloxo-mr-dev.sh --no-check-certificate

    # install kloxo
    sh ./kloxo-mr-dev.sh
   
    # better reboot
    reboot
   
B.2. 对于用户想用的Stable版:
   - Install/reinstall/upgrade -- data not destroyed with this fork
     for existing kloxo (6.1.x), run 'sh /script/update' first.

    # move repo dir
    cd /etc/yum.repos.d/

    # get repo file -- no need for 6.5.0.c and after
    wget https://github.com/mustafaramadhan/kloxo/raw/release/kloxo-mr.repo --no-check-certificate

    # move to /
    cd /

    # install (
and then run 'sh /usr/local/lxlabs/kloxo/install/setup.sh'
)yum之后要运行初始化
    yum install kloxomr -y
   
    # better reboot
    reboot

153

主题

1623

回帖

3805

积分

论坛元老

积分
3805
发表于 2013-8-28 14:47:36 | 显示全部楼层
url在哪里啊?

132

主题

375

回帖

1184

积分

金牌会员

积分
1184
发表于 2013-8-28 14:48:16 | 显示全部楼层
界面截图呢?

184

主题

2576

回帖

5754

积分

论坛元老

积分
5754
发表于 2013-8-28 14:50:50 | 显示全部楼层
想试试~~哈哈
占用怎么样啊

360

主题

3975

回帖

9150

积分

论坛元老

积分
9150
 楼主| 发表于 2013-8-28 14:51:53 | 显示全部楼层

炮炮兵 发表于 2013-8-28 14:48

界面截图呢?

截图就是kloxo的,你们要的图片

360

主题

3975

回帖

9150

积分

论坛元老

积分
9150
 楼主| 发表于 2013-8-28 14:48:00 | 显示全部楼层

junhan 发表于 2013-8-28 14:50

想试试~~哈哈
占用怎么样啊

占用不是很大。。以前256M都装得下kloxo  128就别试了。。

537

主题

5891

回帖

1万

积分

论坛元老

积分
13519
发表于 2013-8-28 14:53:26 | 显示全部楼层
有无翻译文件, 另外一个就是能否长期维护。 这个最重要。

25

主题

320

回帖

721

积分

高级会员

积分
721
发表于 2013-8-28 14:50:00 | 显示全部楼层
没中文不舒服~

您需要登录后才可以回帖 登录 | 立即注册

论坛客服/商务合作/投诉举报:2171544 (QQ)
落伍者创建于2001/03/14,本站内容均为会员发表,并不代表落伍立场!
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论!
落伍官方微信:2030286 邮箱:(djfsys@gmail.com|tech@im286.com)
© 2001-2014

浙公网安备 33060302000191号

浙ICP备11034705号 BBS专项电子公告通信管[2010]226号

  落伍法律顾问: ITlaw-庄毅雄

Archiver|手机版|Discuz! X

GMT+8, 2026-3-27 18:47 , Processed in 0.020971 second(s), 4 queries , Gzip On, Redis On.

返回顶部