圆形立方体安装后不登录



我试图在我的apache2,ISPCONFIG3服务器上安装roundcube,在我的局域网上使用:https://www.howtoforge.com/using-roundcube-webmail-with-ispconfig-3-on-debian-wheezy-apache2改动如下:remoteuser roundcube通过password809098和https://www.rosehosting.com/blog/how-to-install-roundcube-webmail-on-ubuntu-20-04/修改后:

GRANT ALL PRIVILEGES ON roundcube.* TO roundcubeuser@localhost IDENTIFIED BY 'password';
nano /etc/apache2/sites-available/roundcube.jungsf.tv.conf
a2ensite roundcube.jungsf.tv
<VirtualHost *:80>
ServerName roundcube.jungsf.tv 
DocumentRoot /var/www/roundcube/
ErrorLog ${APACHE_LOG_DIR}/roundcube.jungsf.tv_error.log
CustomLog ${APACHE_LOG_DIR}/roundcube.jungsf.tv_access.log combined
Options FollowSymLinks
<Directory "/var/www/roundcube/">
AllowOverride All
</Directory>
Options FollowSymLinks MultiViews
<Directory "/var/www/roundcube/">
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>

我最终设法通过http://jungsf.tv/webmail获得了圆立方体web界面但它仍然无法登录,我不知道密码/用户名应该是什么,我尝试了所有的组合roundcube/roundcubeuser/email ....密码,密码,password809098

我如何找到用户/通行证或我如何删除一切重新安装它?我看到这个插件设置通过,但我怎么使用它?https://github.com/saas-dev/roundcube-forgot_password

我设法通过在ispconfig3中创建邮箱来工作,在那里我输入了用于登录roundcube的电子邮件和通行证。

最新更新