Install according to the openstack official website and execute:
openstack project create –domain default \
–description “Service Project” service
appear:
Missing value auth-url required for auth plugin password
[root@controller ~]# openstack project create --domain default \ > --description "Service Project" service Missing value auth-url required for auth plugin password
Solution:
Create a new admin-openrc.sh (directory location is not important, just remember the location), the content is as follows, remember to modify the value of OS_PASSWORD, mine is 123123
export OS_USERNAME=admin export OS_PASSWORD=123123 export OS_PROJECT_NAME=admin export OS_USER_DOMAIN_NAME=Default export OS_PROJECT_DOMAIN_NAME=Default export OS_AUTH_URL=http://controller:35357/v3 export OS_IDENTITY_API_VERSION=3 source admin-openrc.sh
Supplement: Clear the environment variables set by export
unset OS_USERNAME unset OS_PASSWORD unset OS_PROJECT_NAME unset OS_USER_DOMAIN_NAME unset OS_PROJECT_DOMAIN_NAME unset OS_AUTH_URL unset OS_IDENTITY_API_VERSION
View environment variables
env | grep OS
Similar Posts:
- Missing value auth-url required for auth plugin password [Solved]
- When deploying Tomcat service, resolve the cannot invoke Tomcat manager exception
- Mongovue is unable to create collections and log in with user name and password
- How to Solve MongoDB Error: Authentication failed.
- [Solved] java.lang.IllegalArgumentException: There is no PasswordEncoder mapped for the id “null”
- How to find Oracle EBS Weblogic Server Admin Port and URL
- [Solved] xadmin Error: ImportError: cannot import name ‘DEFAULT_FORMATS’ from ‘import_export.admin’ (/home/lijun/app/hippo/hippo_api/venv/lib/python3.8/site-packages/import_export/admin.py)
- RSA modulus too small: 512 < minimum 768 bits
- [How to Solve] nodejs mysql ER_NOT_SUPPORTED_AUTH_MODE
- There is no PasswordEncoder mapped for the id “null” [How to Solve]