Posted On April 1, 2019

LAMPP Passwords Change

kimconnect 0 comments
blog.KimConnect.com >> Codes , Linux >> LAMPP Passwords Change
Change ProFTP password:
vim /opt/lampp/etc/proftpd.conf
<?– delete the last line in password, leave the first password intact –>
 
Change LAMPP password:
/opt/lampp/lampp security
 
Change phpMyAdmin root password:
log into phpMyAdmin to do this
Change password for root of “localhost”

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: How to Reset Windows Update Service

# resetWindowsUpdateService # This is a legacy method of reseting Windows Update # Since most…

Update Host Files on Multiple Servers

$arecord='intranet' $domain='contoso.com' $serverIp='555.555.555.555' $groupTag='# Accounting Servers' $serversToEdit='Accounting1','Accounting2','Watermelon' $commentOut=$false function updateHostFiles{ param( $appLocalIp, $orgName, $domain, $searchString,…

PowerShell: Quickly Test Connectivity from a List of Sources toward a Destination on a Specific Port

# testRemotePort.ps1 $connectFrom=@' windows1 windows2 '@ $connectTo=@' \\servername\sharename '@ $testPort=445 $sources=@($connectFrom -split "`n")|%{$_.Trim()} $destinations=@($connectTo -split…