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: Microsoft Exchange Active Directory Integration

Assuming that Exchange is already set and in production, it's often advisable to record its…

PowerShell: Get Hyper-V Host Name from Inside Guest VM

$guestVMName="SOMENAME"function getHyperVHostname{ param([string]$guestVMName=$env:computername) $hive = [Microsoft.Win32.RegistryHive]::LocalMachine; $keyPath = 'SOFTWARE\Microsoft\Virtual Machine\Guest\Parameters'; $value = 'HostName'; $reg =…

Basic CSS: Add Borders Around Your Elements

<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css"><style>.red-text {color: red;}h2 {font-family: Lobster, monospace;}p {font-size: 16px;font-family: monospace;}.smaller-image {width: 100px;}</style><h2 class="red-text">CatPhotoApp</h2><main><p…