openstack dashboard error and solutions

Landing page error: error it! Encounter unusual circumstances, please refresh. For help, please contact the administrator.

Landing page landing, there is no error, but can not jump.

这两种情况的解决办法如下:
sed -i 's/^SESSION_ENGINE/#&/' /etc/openstack-dashboard/local_settings
echo "SESSION_ENGINE = 'django.contrib.sessions.backends.file'" >> /etc/openstack-dashboard/local_settings
systemctl restart httpd memcached && systemctl status httpd memcached
或者
sed -i 's/^SESSION_ENGINE/#&/' /etc/openstack-dashboard/local_settings
echo "SESSION_ENGINE = 'django.contrib.sessions.backends.cache'" >> /etc/openstack-dashboard/local_settings
systemctl restart httpd memcached && systemctl status httpd memcached

Guess you like

Origin www.cnblogs.com/jipinglong/p/11210105.html