-
I have installed MediaCMS on an Ubuntu 18 x64 standalone server via the script below mkdir /home/mediacms.io && cd /home/mediacms.io/ The install appeared to go very smooth, but the admin password that was generated after the installation does not work when trying to login to the web UI. How do I go about creating a new one or creating a new user account with admin rights? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi, the installation creates an account with user 'admin' and a random password, not sure why you can't login, are you sure it's not an issue of copy/paste? Anyway, you can still reset the password through the Django shell - command line Run as root
You are in the command line shell. Now run
Then you should be able to login with the combination admin new_password |
Beta Was this translation helpful? Give feedback.
Hi,
the installation creates an account with user 'admin' and a random password, not sure why you can't login, are you sure it's not an issue of copy/paste?
Anyway, you can still reset the password through the Django shell - command line
Run as root
You are in the command line shell. Now run
Then yo…