Ubuntu 26.04 and MongoDB 8.2+

We need the latest version possible of MongoDB to support vectors that does not imply using Atlas. sudo apt install curl -y mongodb-mongosh mongodb-org-database Get the latest version of .deb from https://www.mongodb.com/try/download/community-edition/releases/archive At the time of this blog it’s Ubuntu 24.04 x64 -> Server Package: mongodb-org-server_8.3.1_amd64.deb Before installing it thought make sure the default distribution …

Continue reading ‘Ubuntu 26.04 and MongoDB 8.2+’ »

Ubuntu 26.04, PHP 8.5 and Mongo 2.3 driver

So firstly from the clean 26.04 Ubuntu Desktop install we need to install php8.5 apt install php8.5 php-pear php8.5-dev libzstd-dev Then we can move on to composer from https://getcomposer.org/download php -r “copy(‘https://getcomposer.org/installer’, ‘composer-setup.php’);”php -r “if (hash_file(‘sha384’, ‘composer-setup.php’) === ‘c8b085408188070d5f52bcfe4ecfbee5f727afa458b2573b8eaaf77b3419b0bf2768dc67c86944da1544f06fa544fd47’) { echo ‘Installer verified’.PHP_EOL; } else { echo ‘Installer corrupt’.PHP_EOL; unlink(‘composer-setup.php’); exit(1); }”php composer-setup.phpphp -r “unlink(‘composer-setup.php’);”sudo …

Continue reading ‘Ubuntu 26.04, PHP 8.5 and Mongo 2.3 driver’ »