2013-12-29 00:21:15 +01:00
|
|
|
# Administrator web interface
|
|
|
|
|
2018-06-04 19:57:05 +02:00
|
|
|
Yunohost has an administrator web interface. The other way to administrate your Yunohost install is through the [command line](/commandline).
|
2017-11-01 00:40:20 +01:00
|
|
|
|
2013-12-29 00:21:15 +01:00
|
|
|
### Access
|
|
|
|
|
2014-10-04 15:09:52 +02:00
|
|
|
You can access your administrator web interface at this address: https://example.org/yunohost/admin (replace 'example.org' with your own domain name)
|
2013-12-29 00:21:15 +01:00
|
|
|
|
2014-05-22 14:58:15 +02:00
|
|
|
<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);">
|
2016-03-22 09:14:24 +01:00
|
|
|
<img src="/images/manage_en.png" style="max-width:100%;">
|
2014-10-04 15:09:52 +02:00
|
|
|
</div>
|
2016-01-20 16:41:29 +01:00
|
|
|
|
2016-07-04 09:35:30 +02:00
|
|
|
|
2017-11-01 00:40:20 +01:00
|
|
|
### Reset admin password
|
2017-05-20 16:24:06 +02:00
|
|
|
|
|
|
|
To reset the admin password (as root) :
|
|
|
|
|
2016-01-20 16:41:29 +01:00
|
|
|
```bash
|
2017-05-20 16:24:06 +02:00
|
|
|
$ yunohost-reset-ldap-password
|
2016-01-20 16:41:29 +01:00
|
|
|
```
|
|
|
|
|
2017-05-20 16:24:06 +02:00
|
|
|
A temporary password will be created, which you can use to define the new password.
|
2016-01-20 16:41:29 +01:00
|
|
|
|
2017-11-01 00:40:20 +01:00
|
|
|
|
2016-01-20 16:41:29 +01:00
|
|
|
### How to move application folder
|
|
|
|
|
2017-02-05 06:41:50 +01:00
|
|
|
To change an application folder, only a few commands are needed: move content, create a symlink and set access rights.
|
|
|
|
|
2016-01-20 16:41:29 +01:00
|
|
|
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
|
2016-07-04 09:35:30 +02:00
|
|
|
```
|