1.7 KiB
Administrator web interface
Yunohost has an administrator web interface. The other way to administer your Yunohost install is through the CLI called "moulinette"
Please note that the web interface is an active work-in-progress and has far fewer features than the CLI moulinette.
Access
You can access your administrator web interface at this address: https://example.org/yunohost/admin (replace 'example.org' with your own domain name)
Reset admin password
On Yunohost 2.5
The script to reset the admin password is not directly available, but can be downloaded and executed (as root) :
$ wget https://raw.githubusercontent.com/YunoHost/yunohost/testing/sbin/yunohost-reset-ldap-password
$ chmod +x yunohost-reset-ldap-password
$ ./yunohost-reset-ldap-password
From Yunohost 2.6
To reset the admin password (as root) :
$ 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:
# 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