CentOS 8.x rainloop basic setup

From Notes_Wiki

Home > CentOS > CentOS 8.x > Web based tools > rainloop > CentOS 8.x rainloop basic setup

To setup a basic rainloop on CentOS 8 use:

  1. Install required packages
    yum -y install httpd php wget unzip php-json php-xml
  2. Download zip file of rainloop community edition using:
    cd
    wget https://www.rainloop.net/repository/webmail/rainloop-community-latest.zip
    The above link is available at https://www.rainloop.net/try-now/
  3. Unzip the zip file in /var/www/html folder
    cd /var/www/html
    unzip /root/rainloop-community-latest.zip
    chown -R apache:apache .
  4. Start and enable web server
    systemctl start httpd
    systemctl enable httpd
  5. Access the web interface using http://<ip-or-fqdn>/?admin Note use of /?admin at the end
  6. Login with default username:password 'admin:12345'
  7. Go to Security and change admin password
  8. Go to domains and configure as per requirement. Note that gmail.com might be configured and enabled by default
  9. Once you logout from admin open URL http://<ip-or-fqdn>/ Note there is no /?admin at end
    Login using appropriate ID.
    If you try to use a gmail ID, make sure "Allow less secure apps" option is enabled for that particular gmail ID.


Refer:


Home > CentOS > CentOS 8.x > Web based tools > rainloop > CentOS 8.x rainloop basic setup