MySQL 8.4.x on Ubuntu 22.04+
Prerequisites
Installation Steps
sudo apt update -y
wget https://dev.mysql.com/get/mysql-apt-config_0.8.34-1_all.deb
sudo dpkg -i mysql-apt-config_0.8.34-1_all.deb

sudo apt update -y
sudo apt-get install mysql-server -y


mysql --versionmysql -u root -pexit;
sudo vi /etc/mysql/mysql.conf.d/mysqld.cnfmax_binlog_size = 1G binlog_expire_logs_seconds = 2592000 group_concat_max_len = 4294967295 max_connections = 600 max_allowed_packet = 1G bind-address = 0.0.0.0 innodb_buffer_pool_size = 8G
sudo systemctl restart mysql sudo systemctl enable mysql
OvalEdge Database Initialization
Was this helpful?




