mysql創立函數湧現1418毛病的處理方法。本站提示廣大學習愛好者:(mysql創立函數湧現1418毛病的處理方法)文章只能為提供參考,不一定能成為您想要的結果。以下是mysql創立函數湧現1418毛病的處理方法正文
Error Code : 1418
This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
(0 ms taken)
剖析:
依據體系提醒,招致該毛病的緣由能夠是一個平安設置方面的設置裝備擺設,查手冊log_bin_trust_function_creators參數缺省0,是不許可function的同步的,普通我們在設置裝備擺設repliaction的時刻,都忘卻存眷這個參數,如許在master更新funtion後,slave就會申報毛病,然後slave stoped。
處置進程:
上岸mysql數據庫
> set global log_bin_trust_function_creators = 1;
> start slave;
跟蹤mysql的啟動日記,slave正常運轉,成績處理。