在ubuntu 20.04 lts focal fossa上安装roundcube webmail
步骤1.首先,通过apt
在终端中运行以下以下命令,确保所有系统软件包都是最新的。
sudo apt update
sudo apt upgrade
步骤2.安装lamp服务器。
需要ubuntu 20.04 lamp堆栈服务器。如果您没有安装lamp,则可以在本站搜一搜lamp按照我们的教程进行操作。
步骤3.在ubuntu 20.04上安装roundcube webmail。
运行以下命令以从roundcube github存储库下载最新的稳定版本:
wget -p /tmp/ https://github.com/roundcube/roundcubemail/releases/download/1.4.6/roundcubemail-1.4.6-complete.tar.gz
将roundcube tarball存档解压缩到您的web根目录:
tar xvf roundcubemail-1.4.6-complete.tar.gz sudo mv roundcubemail-1.4.6 /var/www/roundcube
我们将需要更改一些文件夹权限:
chown -r www-data.www-data /var/www/roundcube chmod -r 775 /var/wwwroundcube/{temp,logs}
步骤4.为roundcube配置mariadb。
默认情况下,不会对mariadb进行加固。您可以使用mysql_secure_installation
脚本保护mariadb 。您应该仔细阅读每个步骤,并在每个步骤下面仔细进行操作,这将设置root密码,删除匿名用户,禁止远程root登录以及删除测试数据库和对安全mariadb的访问。
mysql_secure_installation
像这样配置它:
- set root password? [y/n] y - remove anonymous users? [y/n] y - disallow root login remotely? [y/n] y - remove test database and access to it? [y/n] y - reload privilege tables now? [y/n] y
接下来,我们将需要登录mariadb控制台并为roundcube webmail创建一个数据库。运行以下命令:
mysql -u root -p
这将提示您输入密码,因此输入您的mariadb根密码,然后按enter。登录数据库服务器后,您需要创建一个数据库来安装roundcube:
mariadb [(none)]> create database roundcube default character set utf8 collate utf8_general_ci; mariadb [(none)]> create user roundcubeuser@localhost identified by 'your-password'; mariadb [(none)]> grant all privileges on roundcube.* to roundcubeuser@localhost; mariadb [(none)]> flush privileges; mariadb [(none)]> \q
步骤5.为roundcube配置apache virtualhost。
现在,我们为roundcube创建一个专用的apache virtualhost配置文件:
sudo nano /etc/apache2/sites-available/roundcube.conf
*:80>
servername mail.yundongfang.com
documentroot /var/www/roundcube/
errorlog ${apache_log_dir}/roundcube_error.log
customlog ${apache_log_dir}/roundcube_access.log combined
/>
options followsymlinks
allowoverride all
/var/www/roundcube/>
options followsymlinks multiviews
allowoverride all
order allow,deny
allow from all
保存并关闭文件。然后通过以下方式启用此虚拟主机:
sudo a2ensite roundcube.conf sudo systemctl reload apache2
步骤5.启用https。
我们建议您使用tls来加密您的网络邮件。我们可以通过安装由let’s encrypt发行的免费tls证书来启用https。运行以下命令以安装“让我们加密”:
sudo apt install python3-certbot-apache
接下来,运行以下命令以获取并安装tls证书:
sudo certbot --apache --agree-tos --redirect --hsts --staple-ocsp --email you@idroot.us -d mail.idroot.us
步骤6.访问roundcube web界面。
默认情况下,roundcube webmail将在http端口80上可用。打开您喜欢的浏览器,然后浏览至或完成所需的步骤以完成安装。如果您使用的是防火墙,请打开端口80以启用对控制面板的访问。https://mail.your-domain.com/installer
https://your-server-ip/installer
恭喜你!您已经成功安装了roundcube webmail。感谢您使用本教程在ubuntu 20.04(focal fossa)系统上安装roundcube免费和开源webmail软件。有关其他帮助或有用信息,我们建议您检查。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/yun41421.html