The mysql service is not being pushed to the background after startup.
I start the service with sudo systemctl start mysql.service
it starts up. I can connect send queries. But the the command stays on my console and doesn't go into the background. I have it running on two servers both are running ubuntu 20 and the same version of percona xtradb cluster 8.0.26.
Home
/
user-630700
user3525290's questions
I have to update the os on a few servers and I need to remove a db from the cluster.
wsrep_cluster_address='gcomm://192.168.2.59,192.168.2.60,192.168.2.61,192.168.2.62,192.168.2.63'
Do I remove the ip adress from the cluster line then restart each node? Or do I stop the service on the server I want to remove from the cluster then remove the ip address on the other nodes then restart the mysql service?
I am trying to server data from my location block.
location ~ ^/(archivefiles) {
root /web/htdocs/archivefiles/;
}
When a user visits. http://www.example.com/archivefiles/sports/football/1981.pdf
the page errors. I have tried the following combinations in the location block with no success.
root /web/htdocs/archivefiles;
root /web/htdocs/archivefiles/$1;
root /web/htdocs/$1;
I have looked at the documentation and it looks as if i am using everything correctly.