mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
# Administrator web interface
|
|
|
|
Yunohost has an administrator web interface. The other way to administrate your Yunohost install is through the [command line](/commandline).
|
|
|
|
### Access
|
|
|
|
You can access your administrator web interface at this address: https://example.org/yunohost/admin (replace 'example.org' with your own domain name)
|
|
|
|
<div class="text-center" style="max-width:100%;border-radius: 5px;border: 1px solid rgba(0,0,0,0.15);box-shadow: 0 5px 15px rgba(0,0,0,0.35);">
|
|
<img src="/images/manage_en.png" style="max-width:100%;">
|
|
</div>
|
|
|
|
|
|
### Reset admin password
|
|
|
|
To reset the admin password (as root) :
|
|
|
|
```bash
|
|
$ yunohost-reset-ldap-password
|
|
```
|
|
|
|
A temporary password will be created, which you can use to define the new password.
|
|
|
|
|
|
### How to move application folder
|
|
|
|
To change an application folder, only a few commands are needed: move content, create a symlink and set access rights.
|
|
|
|
Sample with WordPress:
|
|
```bash
|
|
# Move wordpress folder to an external hard drive
|
|
$ sudo mv /var/www/wordpress /media/externalharddrive
|
|
# Symbolic link
|
|
$ sudo ln -s /media/externalharddrive/wordpress /var/www/wordpress
|
|
# Folder must belong to www-data
|
|
$ sudo chown -R www-data:www-data /media/externalharddrive/wordpress
|
|
```
|