Archiv der Kategorie: Ubuntu Server

Ubuntu Server – LAMP und phpMyAdmin installieren

Von | Mai 6, 2023

Quelle: websiteforstudents.com Fehler in phpMyAdmin mit PHP 8.0In Datei ./usr/share/phpmyadmin/libraries/classes/Di/[color=red]ReflectorItem.php[/color] ändern:- $name = $reflectionParam->getClass();+ $name = $param->getType() && !$param->getType()->isBuiltin() ? new ReflectionClass($param->getType()->getName()) : null;

Ubuntu Server 20.04 – Allowing SSH root login

Von | Mai 1, 2023

To enable root password login over ssh in order to edit the files type You can later change this back by typing Open the /etc/ssh/sshd_config file with administrative privileges and change the following line: FROM:#PermitRootLogin prohibit-passwordTO:PermitRootLogin yes sudo systemctl restart ssh Quelle: linuxconfig.org