skip to Main Content

Mysql process list too long with killed queries – CentOS

For several years I've been making automated daily database backups using a procedure iterating over existing databases. mysqldump --user=${mysql_username} --password=${mysql_password} $db --single-transaction --events -R >> $normal_output_filename Recently I moved from a dedicated server (Centos 6, Apache 2.2, php5.6, Mysql 5.0…

VIEW QUESTION

yum couln't fund Mariadb Package on CentoOS 7 – CentOS

I tried to install MariaDB $ sudo yum -y install MariaDB-server MariaDB-client but yum return error Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: ftp.halifax.rwth-aachen.de * epel: mirror.imt-systems.com * extras: mirror.imt-systems.com * remi-php72: mirror.23media.com * remi-safe:…

VIEW QUESTION

docker-compose: mariadb – Connection refused – Phpmyadmin

Step 1) mysql5 & phpmyadmin Image the following mysql-phpmyadmin configuration: version: '3.6' services: db: image: mysql:5.7.24 # image: mysql:8.0.18 # image: mariadb:10.4.8 # command: --default-authentication-plugin=mysql_native_password restart: always volumes: - ./mysql5:/var/lib/mysql # - ./mysql8:/var/lib/mysql # - ./mariadb:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=test -…

VIEW QUESTION
Back To Top
Search