Postfix sender_dependent_default_transport_maps per domain outgoing IP

Postfix allows to route mails through specific IPs depending on a senders domain or email address.This is achieved through sender_dependent_default_transport_map.Suppose we have 3 domains and we want to assign independent outgoing IP address for each of them.Lets create 3 different transport for them in master.cf

MySQL 5.7 Reset root password

With mysql 5.7 the mysql.user table do not have the Password column, it has been replaced by the authentication_string column. Another notable difference is the plugin column, which allows for different authentication methods. In Ubuntu 18.04 LTS and later release the default authentication plugin/method for root user is auth_socket. This plugin uses the SO_PEERCRED socket […]

Running multiple MySql servers with mysqld_multi

Concept Sometime there are are situations when we require to run multiple MySql servers on same server for example, two group of developers working on separate projects where they may need to have database with different setting for e.g sql_mode or innodb-file-format or any others.We can either install separate MySQL servers or they make use […]