Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8908365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T03:09:31+00:00 2026-06-15T03:09:31+00:00

I need master to slave replication in mysql. so I am creating this procedure

  • 0

I need master to slave replication in mysql.

so I am creating this procedure to change the master dynamically by procedure

delimiter //

CREATE PROCEDURE change_master( in host_ip varchar(50))

begin

stop slave;

CHANGE MASTER TO MASTER_HOST = host_ip, MASTER_PORT=3306, MASTER_USER='replication', MASTER_PASSWORD='slave';

start slave;

end;
//

but I am getting a error.

ERROR 1064 (42000): You have an error in your SQL syntax; check the
manual that corresponds to your MySQL server version for the right
syntax to use near ‘host_ip, MASTER_PORT=3306,
MASTER_USER=’replication’, MASTER_PASSWORD=’slave’; s’ at line 4

If I left it blank then fine

eg.

CHANGE MASTER TO MASTER_HOST = '', MASTER_PORT=3306, MASTER_USER='replication', MASTER_PASSWORD='slave';

I tried many time but in this query I am not able to use any variable
why?

If you know help me.

thanks .

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T03:09:32+00:00Added an answer on June 15, 2026 at 3:09 am

    The host value must be enclosed in quotes.
    I think this cannot be possible unless you use a prepared statement.

    delimiter //
    
    CREATE PROCEDURE change_master( in host_ip varchar(50))
    
    begin
    
    set @ssql:=concat("CHANGE MASTER TO MASTER_HOST = '",host_ip,"', MASTER_PORT=3306, MASTER_USER='replication', MASTER_PASSWORD='slave'");
    
    stop slave;
    
    prepare sql_stm from @ssql;
    execute sql_stm;
    deallocate prepare sql_stm;
    
    start slave;
    
    end//
    delimiter ;
    

    Regards!
    Tinel Barb

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Thanks for reading this. I have 2 MySQL databases - master for writes, slave
I have configured a MySql Replication with 1 Master 1 Standy and 1 Slave.
I have one master and one slave memcachedb servers. I need some java client
We have a Rails application that is running in a MySQL master-slave set-up for
I need to have two databases placed on the same mysql server synchronised. This
I have never used a master/slave setup for my mysql databases so please forgive
I need to automate passwordless access to ec2 instances in a master/slave configuration. So
I have one master array and multi slave arrays and i need function that
In a MongoDB replica set, Does master node need to be accessible from clients?
In need of a regex master here! <img src=\img.gif style=float:left; border:0 /> <img src=\img.gif

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.