版本
OCP 4.1.0版本
问题描述
直接安装OCP 4.1.0版本,多出三个租户变量为只读 max_allowed_packet,max_user_connections,net_buffer_length,无法白屏修改。登录到租户,可以使用set global进行修改,确认是这只是OCP里为只读属性。从OCP 3.X版本升级到4.1.0版本,没有此问题。
解决方法
root用户登录OCP集群的ocp_meta租户的ocp数据库,查询ob_system_variable_info表,发现三个变量的is_readonly值为1,是只读的。
select * from ob_system_variable_info where name like '%max_allow%'\G
将is_readonly值为由1 调整为 0
update ob_system_variable_info set is_readonly=0 where name = 'max_allowed_packet':
update ob_system_variable_info set is_readonly=0 where name = 'max_user_connections':
update ob_system_variable_info set is_readonly=0 where name = 'net_buffer_length':
OCP界面该租户变量已变为可读写