Questions tagged [macos]
The macos tag has no summary.
29 questions
0
votes
0
answers
22
views
Error creating PolarDB standby node on macOS
I am trying to set up a standby disaster recovery node for PolarDB on a macOS host using Docker. However, I am encountering an issue during the polar_basebackup process where it fails to create ...
0
votes
0
answers
213
views
Windows could not start the SQl server (SQLEXPRESS) service on Local Computer (MacOS running Windows 11 VM)
I have a common problem that I just cannot figure out after scrolling through posts expressing a similar issue. I am currently running a macOS using a virtual machine that has Windows 11. Due to what ...
0
votes
0
answers
42
views
how do i use launchctl for mongod on macosx without homebrew to run the service as mongodb at startup
I'm wondering why I can run this command from terminal:
sudo su mongodb -c "mongod --config /etc/mongod.conf"
but the LaunchAgent cannot run this command on login as root, so that my ...
1
vote
1
answer
100
views
Collation difference in PostgreSQL on AWS RDS and local machine
I have an issue with collation in PostgreSQL when sorting a result set. We use AWS RDS PostgreSQL, and we want to sort query results in a specific way. Locally, everything works perfectly on my laptop ...
0
votes
0
answers
132
views
Cannot login into MariaDB after restarting the machine
I'm using MacOS Sonoma 14.5 and trying to login in mariadb via terminal. However, when I execute
mariadb -uroot -password
It is returning
ERROR 2002 (HY000): Can't connect to local server through ...
0
votes
1
answer
224
views
Cannot reset password for the root user in MySQL
I’m trying to install and setup MySQL on my Machine (MacBook Pro M3 Max with Sonoma 14.5 OS) but it is not being possible to login anymore. The root password keep being changed after I shut down the ...
0
votes
1
answer
149
views
Removing mongoDB from MacOS
I need to delete all mongoDB thing in my mac.
i followed the uninstall guide on mongoDB uninstall official guide
but on step 2 which is
`launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mongodb-...
0
votes
0
answers
188
views
MAMP PRO 6.9, PHP 8.2.0, Mac 14.21 and Mongo DB - Apache Fails
Have been trying to get MongoDB installed on MAMP PRO 6.9, PHP 8.2.0, Mac 14.21 via PECL but after a successful install and enabling the extension, when restarting MAMP Pro, Apache fails and none of ...
1
vote
2
answers
857
views
Migrating MySQL databases to a new server with phpMyAdmin
Looking for the best way to migrate a dozen or so MySQL databases from an old Mac mini to a new one.
I've tried the source machine's phpMyAdmin (v. 4) EXPORT command, using what looked like reasonable ...
3
votes
0
answers
539
views
Unable to Install PostGIS Extension for PostgreSQL 15 on Mac Book with M1 Chip and macOS Ventura 13.3.1
Issue: Unable to install PostGIS extension for PostgreSQL 15 on Mac Book with M1 chip and macOS Ventura 13.3.1.
Steps I have taken:
Installed PostgreSQL 15 using the terminal.
Installed PostGIS using ...
0
votes
0
answers
1k
views
Error mysqli::real_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: NO)
I'm completely new to MySQL and phpmyadmin. I was trying to add a password to my database/phpmyadmin but then I got this error:
mysqli::real_connect(): (HY000/1045): Access denied for user 'root'@'...
0
votes
0
answers
669
views
Error 13117 while setting up master-slave replication with both DB servers being on the same Mac M1 machine
I am trying to create a master-slave replication with both the Mysql Servers being on the same machine.
The first mysql server, which I intend to keep as the master was installed using the Mysql ...
4
votes
1
answer
702
views
Brew Upgrade Mysql: sdi_delete failed: Record Doesn't exist: tablespace_id: 1 Key: 1 4049
I ran the following commands from the cli in MacOS Monterey V 12.4:
brew update
brew upgrade
Upon doing so, MySQL was upgraded from 8.0.30 to 8.0.31. MySQL was running in the background during the ...
1
vote
0
answers
598
views
Postgres reopens closed processes on Mac. How to solve?
I tried to terminate Postgres on Mac in various ways. I used commands in the terminal: pg_ctl -D /usr/local/var/postgres stop , brew services stop postgresql , systemctl stop postgres . Did not work. ...
1
vote
1
answer
1k
views
MySQL Plugin "mysql_old_password" not loaded
In an attempt to fix another issue I had, I ran the commands below (as per https://dev.mysql.com/doc/refman/5.6/en/old-client.html)
mysql> UPDATE mysql.user SET plugin = 'mysql_old_password'
mysql&...