最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

ChangeMySQLTimezoneonAmazonRDS_MySQL

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-09 19:21:21
文檔

ChangeMySQLTimezoneonAmazonRDS_MySQL

ChangeMySQLTimezoneonAmazonRDS_MySQL:Amazon RDS doesnt allow you to change timezone, It keeps same UTC time zone across all regions. time_zonevariable in the parameter group is read only.You can change the time zone
推薦度:
導(dǎo)讀ChangeMySQLTimezoneonAmazonRDS_MySQL:Amazon RDS doesnt allow you to change timezone, It keeps same UTC time zone across all regions. time_zonevariable in the parameter group is read only.You can change the time zone

Amazon RDS doesn’t allow you to change timezone, It keeps same UTC time zone across all regions. time_zonevariable in the parameter group is read only.

You can change the time zone on each connection or session by making a procedure in default mysql database and call this function on each init connection.

1. Create a procedure for IST

DELIMITER | CREATEPROCEDURE mysql.rds_store_time_zone ()IFNOT(POSITION('rdsadmin@'INCURRENT_USER())=1)THEN SET SESSION time_zone ='+5:30';ENDIF|DELIMITER ;

2. Update parameter group

aws rds modify-db-parameter-group --db-parameter-group-name parameter_group_name --parameters "ParameterName=init_connect, ParameterValue=CALL mysql.rds_store_time_zone, ApplyMethod=immediate"

3. Grant execute permission

GRANT EXECUTE ON PROCEDURE mysql.rds_store_time_zone TO 'user'@'%';

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

ChangeMySQLTimezoneonAmazonRDS_MySQL

ChangeMySQLTimezoneonAmazonRDS_MySQL:Amazon RDS doesnt allow you to change timezone, It keeps same UTC time zone across all regions. time_zonevariable in the parameter group is read only.You can change the time zone
推薦度:
標(biāo)簽: Amazon 時(shí)區(qū) mysql
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top