Difference between revisions of "CentOS 8.x rainloop basic setup"

From Notes_Wiki
(Created page with "<yambe:breadcrumb self="basic setup">CentOS 8.x rainloop|rainloop</yambe:breadcrumb> =CentOS 8.x rainloop basic setup= To setup a basic rainloop on CentOS 8 use: # Install re...")
 
m
Line 35: Line 35:


Refer:
Refer:
* https://www.rainloop.net/docs/configuration/
* https://www.rainloop.net/docs/installation/
* https://www.rainloop.net/docs/installation/
* https://www.server-world.info/en/note?os=CentOS_7&p=httpd&f=14




<yambe:breadcrumb self="basic setup">CentOS 8.x rainloop|rainloop</yambe:breadcrumb>
<yambe:breadcrumb self="basic setup">CentOS 8.x rainloop|rainloop</yambe:breadcrumb>

Revision as of 11:37, 30 March 2021

<yambe:breadcrumb self="basic setup">CentOS 8.x rainloop|rainloop</yambe:breadcrumb>

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:


<yambe:breadcrumb self="basic setup">CentOS 8.x rainloop|rainloop</yambe:breadcrumb>