Pfadnavigation
Debian 10 minimal + LAMP installieren / konfigurieren
Suche
Neueste Kommentare
- 1 week 3 days agoMariaDB Server Performance Optimieren
/usr/sbin/mariadbd --help --verbose | grep "query.*size"
- 1 week 3 days agoMariaDB Server Performance Optimieren
Commandline:
systemctl restart mariadb
- 1 week 3 days agoMariaDB Server Performance Optimieren
After my changes in /etc/mysql/db-performance.cnf
- 1 week 3 days agoInstall APCu (PHP 8.1, Plesk)
Error:
- 1 week 3 days agoInstall APCu (PHP 8.1, Plesk)
PHP 8.3 extra packages (+ pecl, apcu)
apt update apt install plesk-php83-dev zlib1g-dev
- 1 week 4 days agoApache Solr install & activate on Debian 12 (Secure Admin with Basic Auth on Port 8983)
I get this error, when I visit https://solr.example.com:8983 :
- 2 weeks 1 day agoDie Argumentliste ist zu lang (/usr/bin/rm)
Remove all files starting with 2024 in mydir123 and show the number of deleted files:
find mydir123 -name '2024*' -exec rm -vf {} \; | wc -l
- 2 weeks 1 day agoDie Argumentliste ist zu lang (/usr/bin/rm)
find . -name '*' | xargs rm -v
- 3 weeks 5 days agoDeprecated function: Creation of dynamic property Drupal Tablefield TablefieldFormatter::$ModuleHandler is deprecated
- 1 month 4 weeks agoTransaction isolation level REPEATABLE-READ The recommended level for Drupal is "READ COMMITTED". (Drupal Status Report)
Edit "/etc/my.cnf" ( under [mysqld] ):
transaction_isolation="READ-COMMITTED"
Restart MariaDB / MySQL:
Comments
Backups Fr, 01/03/2020 - 00:46
double-check downloaded backup files!
Webmin / Virtualmin Fr, 01/03/2020 - 13:00
Die Anleitung steht auf Webmin Seite.
php 5.6 installieren Fr, 01/03/2020 - 13:15
apt update && apt upgrade apt install ca-certificates apt-transport-https wget -q https://packages.sury.org/php/apt.gpg -O- | apt-key add - echo "deb https://packages.sury.org/php/ stretch main" | tee /etc/apt/sources.list.d/php.list apt update apt install php5.6 apt install php5.6-bcmath php5.6-bz2 php5.6-cli php5.6-common php5.6-curl php5.6-dev php5.6-fpm php5.6-gd php5.6-intl php5.6-json php5.6-mbstring php5.6-mcrypt php5.6-mysql php5.6-odbc php5.6-opcache php5.6-pspell php5.6-readline php5.6-soap php5.6-sqlite3 php5.6-tidy php5.6-xml php5.6-xmlrpc php5.6-zip
Neuen Kommentar schreiben