This commit is contained in:
Stefan Pejcic
2024-09-18 16:30:56 +02:00
parent ae4c612987
commit b8c5011b76
1349 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{
"label": "Server",
"position": 8,
"link": {
"type": "generated-index"
}
}

View File

@@ -0,0 +1,9 @@
---
sidebar_position: 1
---
# Change Root Password
*OpenAdmin > Server > Change Root Password* allows Administrators to change password for the ssh root user.
![root password](/img/admin/change_root_pass.png)

View File

@@ -0,0 +1,20 @@
---
sidebar_position: 4
---
# Cron jobs
*OpenAdmin > Server > OpenPanel Cron Jobs* allows Administrators to view scheduled crons for OpenAdmin and edit their schedule or enable/disable logging to `/etc/openpanel/openadmin/cron.log` file.
![screenshot](/img/admin/openadmin_cronjobs.png)
:::danger
We recommend against editing the cronjobs!
Editing the schedule or commands is not recommended, as it may render certain features inaccessible. This should only be done in cases where fine-tuning execution on servers with low resources is necessary, or when instructed by the OpenPanel support team. These are crons that OpenPanel uses. If you want to add custom cronjobs, you can safely [add them in crontab for the root user](https://www.google.com/search?q=linux+add+cron).
:::
Cron format is:
```bash
SCHEDULE USER COMMAND
```

View File

@@ -0,0 +1,28 @@
---
sidebar_position: 3
---
# SSH Access
*OpenAdmin > Server > SSH Access* allows Administrators to view and modify current server SSH configuration.
### Basic SSH Settings
![screenshot](/img/admin/ssh_access.png)
This page displays:
- **Port** - current SSH port
- **PermitRootLogin** - allow login for *root* user
- **PasswordAuthentication** - enable usage of passwords for ssh
- **PubkeyAuthentication** - enable usage of ssh keys
You can change any value and click on the save button to apply.
### Advanced SSH Settings
Here you can edit the SSH configuration file: `/etc/ssh/sshd_config`
### Authorized SSH Keys
Here you can view current authorized ssh keys, remove them or add new key.

View File

@@ -0,0 +1,13 @@
---
sidebar_position: 5
---
# Server Time
*OpenAdmin > Server > Server Time* allows Administrators to view current server timezone and change it.
![screenshot](/img/admin/timezone.png)
:::info
After changing timezone, we recommend to restart the server or at least the OpenAdmin and Cron services: `systemctl restart admin cron`.
:::