=IFERROR(LEFT(A2,FIND(" ",A2)-1),A2)
Saturday, February 11, 2023
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)
Replace old IP with New one in Direct Admin
./ipswap.sh Old_IP New_IP for example: ./ipswap.sh 35.224.2.88 104.197.113.37
-
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... #############...
-
Instructions: Copy xf-adesk19 to your Desktop Open terminal (Command+Space and type Terminal and press enter/return key) Paste the followin...