Sunday, January 29, 2023
Remove both duplicate and original value from Excel or Google sheet
Saturday, January 21, 2023
How to Extend Swap Space using Swap file in Linux
dd if=/dev/zero of=/swap_file bs=1G count=1
sudo fallocate -l 1G /swap_file
chmod 600 /swap_file
Error binding socket to :::25, status = EADDRINUSE (Solved)
Friday, January 20, 2023
Install PMTA Management Console
yum install ntp (if not installed)
=======================
Install PMTAMC
=======================
Upload pmconsole1.5r19 to path /root/PMTA/ and run below commands
cd /root/PMTA/pmconsole1.5r19
rpm -ivh PowerMTA-MC-infrastructure-1.5r19-201906071449.x86_64.rpm
rpm -ivh PowerMTA-MC-1.5r19-201906071449.x86_64.rpm
service pmtamc stop
rm -rf /opt/pmtamc/glassfish/glassfish/domains/domain1/applications/pmtamc/WEB-INF/classes/com/port25/webui/security/Lak.class
cd /root/PMTA/pmconsole1.5r19/opt/pmtamc/glassfish/domains/domain1/applications/j2ee-modules/pmtamc/WEB-INF/classes/com/port25/webui/security
cp Lak.class /opt/pmtamc/glassfish/glassfish/domains/domain1/applications/pmtamc/WEB-INF/classes/com/port25/webui/security
rm -rf /opt/pmtamc/glassfish/glassfish/wars/pmtamc.war
cd /root/PMTA/pmconsole1.5r19/opt/pmtamc/glassfish/wars
cp pmtamc.war /opt/pmtamc/glassfish/glassfish/wars
cd /root/PMTA/pmconsole1.5r19
cp license /etc/pmtamc
service pmtamc start
open ports (8181 8282 4848 3700 7676 8686)
++++++++++++++++++++++++++++
Register PMTA in PMTAMC
++++++++++++++++++++++++++++
http://examplepmtamc.com:{PORT}/pmtamc/nodemanagement/
PowerMTA Node Registration: Accept new PowerMTAs
pmta register --label={Name} --pmtamc-port={PORT} {HOST}
example
pmta register --label=softo --webmon-port=19000 --pmtamc-port=8181 157.245.221.117
----------------------------------------------------------------------------------------
Join Multiple table with subquery
SELECT DISTINCT
e.card_id,
e.photo_link,
c.full_name,
c.mobile_no,
c.email,
c.image_path,
s.institute_name,
p.profession_name,
p.institute_name AS company,
i.village_road_present,
i.post_office_present,
i.thana_upazila_present,
i.district_present,
i.blood_group
FROM EVENT
e
JOIN(
SELECT DISTINCT
id,
full_name,
mobile_no,
email,
image_path
FROM
cualumni
WHERE
softdeleted = 'No'
) AS c
ON
c.id = e.user_id
JOIN(
SELECT DISTINCT
user_id,
institute_name
FROM
education
WHERE
user_id IS NOT NULL
) AS s
ON
s.user_id = e.user_id
JOIN(
SELECT DISTINCT
user_id,
profession_name,
institute_name
FROM
profession
WHERE
user_id IS NOT NULL
) AS P
ON
P.user_id = e.user_id
JOIN(
SELECT DISTINCT
*
FROM
personal_info
WHERE
user_id IS NOT NULL
) AS i
ON
i.user_id = e.user_id
Tuesday, January 3, 2023
Get file path and set hyperlink funtion in Excel
=CONCATENATE("file://",LEFT(CELL("filename",F2),FIND("[",CELL("filename",F2))-1),F2)
=HYPERLINK($G$2,F2)
Office 2021 Activation using command
@echo off title Activate Microsoft Office 2021 (ALL versions) for FREE - office.com&cls&echo =====================================...
-
Put the following code in a TXT file and save as "file.cmd" then run the cmd file as administrator. @echo off title Activate Micr...
-
We can install PowerMTA on the server. rpm -ivh /home/PowerMTA-4.0r6.x86_64.rpm You will see the output like this Preparing... #############...
-
# $Id: config 2015-03-24 16:00:00 Jack $ # Sample PowerMTA configuration file # PowerMTA Multiple Virtual PMTA config file sample # # E-mai...