这里有最新的使用文档和教程
2023版CentOS 7安装 DirectAdmin面板教程,附DirectAdmin自定义配置详解
虽然现在使用宝塔面板的用户很多,但是站长不喜欢宝塔各种验证,加之去年的事件,还是留下了阴影的。
很多用户还是会使用DirectAdmin面板,而且现在的DirectAdmin和以前相比改变很大,界面以不在像以前一样古董级的,DirectAdmin紧跟时代潮流,网页功能什么的也一直在迭代更新。
本文就以CentOS 7为例,记录一下在31IDC的云服务器上安装最新的DirectAdmin面板,其他系统也可以参考本教程:https://docs.directadmin.com/getting-started/installation/overview/
为了顺利的一次性安装成功,我们先设置一下CentOS,并安装必要的组件
1, 关闭selinux (如果有selinux)
vi /etc/sysconfig/selinux
修改/etc/sysconfig/selinux文件中的SELINUX=”” 为 disabled
SELINUX=enforcing
再reboot重启电脑
reboot
2, 删除必要的服务
yum remove httpd php mysql nginx sendmail
3, 更新系统
yum update -y
4,安装gcc, gcc-c++等必要的组件
http://help.directadmin.com/item.php?id=354
CentOS 7
yum install wget gcc gcc-c++ flex bison make bind bind-libs bind-utils openssl openssl-devel perl quota libaio \ libcom_err-devel libcurl-devel gd zlib-devel zip unzip libcap-devel cronie bzip2 cyrus-sasl-devel perl-ExtUtils-Embed \ autoconf automake libtool which patch mailx bzip2-devel lsof glibc-headers kernel-devel expat-devel \ psmisc net-tools systemd-devel libdb-devel perl-DBI perl-Perl4-CoreLibs perl-libwww-perl xfsprogs rsyslog logrotate crontabs file kernel-headers
其他系统请参考
http://help.directadmin.com/item.php?id=354
方案1, 自动安装
https://docs.directadmin.com/getting-started/installation/installguide/
(适合大部分用户, 自动安装所有内容, 包括CFS防火墙)
bash <(curl -LSs https://download.directadmin.com/setup.sh || curl -LSs https://download-alt.directadmin.com/setup.sh) 'License Key'
安装完成后提示
在浏览器里打开
http://你的服务器IP:2222 即可进入面板,其它的安装配置我们可以进入面板后在custombuild完成。这和现在的宝塔面板基本上也是差不多的。
许可证升级后,现在不怎么推荐手动安装,如果一定要手动安装请查看:DirectAdmin(DA)最新安装教程(2019)记录
下面是一些常见的DirectAdmin自定义配置安装方法整理,如果你对命令不熟悉,还是建议在custombuild操作。
Apache改为Nginx
https://help.directadmin.com/item.php?id=556
cd /usr/local/directadmin/custombuild ./build set webserver nginx ./build set php1_mode php-fpm ./build set php2_mode php-fpm #如果安装了两个版本的php ./build update ./build all d ./build rewrite_confs
把默认的web服务器从Apache改为Nginx+Apache
http://forum.directadmin.com/showthread.php?t=44743
cd /usr/local/directadmin/custombuild ./build update ./build set webserver nginx_apache ./build set php1_mode mod_php #更改php模式 ./build set php2_mode mod_php #如果安装了两个版本的php ./build nginx_apache ./build rewrite_confs
web服务器可选
apache #默认web服务器, nginx #推荐 nginx_apache #Nginx处理静态+Apache处理动态 litespeed #高性能的商业web服务器 openlitespeed #免费开源版本litespeed
DirectAdmin 设置多版本PHP(如php 7.4 + php 8.0)的方法:
参考:https://www.vultr.com/docs/using-multiple-php-versions-on-directadmin
cd /usr/local/directadmin/custombuild ./build set php2_release 8.0 ./build update ./build php n ./build rewrite_confs
DA现在可以设置4个php版本, 分别是php1, php2, php3, php4,以此类推