Sendy Installation Ubuntu vm of AWS

SENDY INSTALLATION ON UBUNTU


Sendy is a pretty simple process to upload the files and create database.


Install Apache HTTP

        ·         apt-get install apache2

Enable mod rewrite

        ·         a2enmod rewrite

Install PHP-FPM and required library

        ·         apt-get install php-fpm libapache2-mod-php php-mysql php-curl php-xml

Install Maria DB

        ·         apt-get install mariadb-server mariadb-client


Run the security script to harden the SQL. Run the below command and set the password for root. Press Y for all the options

        ·         mysql_secure_installation

Let’s create a database. Login to MySQL, it will prompt you to enter the password which you defined in the previous step

        ·         mysql -u root –p

It will take you to the MariaDB prompt, where we will create a database called sendy

        ·         create database sendy;

Grant the permission

        ·         GRANT ALL ON sendy.* TO 'sendy'@'localhost' IDENTIFIED BY 'password';

Go to Apache root directory

        ·         cd /var/www/html

Move the uploaded Sendy software here and unzip the file

        ·         unzip sendy-4.0.1.zip                      (downloaded sendy setup)

Go to includes folder and update config.php

        ·         cd includes

        ·         vi config.php

(

five parameters (APP_PATH, dbHost, dbUser, dbPass, dbName)

)

restart all the necessary Services

        ·         service apache2 restart

        ·         service php7.2-fpm restart

        ·         service MySQL restart

All the preparation work is done then install Sendy. Before that, let’s ensure the server has all the required library by accessing a compatibility.php file

        ·         https://sub.domain.com/sendy/_compatibility.php?i=1

Access the URL with 

        ·         https://sub.domain.com/sendy/_compatibility.php?i=1/sendy

then enter all information and click install


Verifying Domain

Verifying domain on AWS SES

        

  • Go to AWS SES (again, ensure you are in the same region as Sendy is connected to)
  • Click on Domains at left sidebar >> verify a new domain
  • Enter the domain or subdomain
  • Select Generate DKIM settings and click verify this domain

In domain verification
TXT and CNAME records, it may take up to 72 hours to get it verified. And once done, you should see all green under verification, DKIM and enabled for.

        
  • Click on Email addresses on left sidebar >> verify a new email address
You’ll get a verification email to the email address you provided. Once confirmed, you should see the status as verified

Now you are good to use Sendy!

Login to Sendy and create a brand.






    





Comments

Popular posts from this blog

CI/CD Pipeline in Oracle Forms with maven

Elastic Search & Kibana Including Log stash and Beats

Jitsi Meet Configuration On Ubuntu 20.