1 Answer
- Newest
- Most votes
- Most comments
0
Hello.
Does your Lightsail instance have a database installed?
In that case, I think it would be a good idea to check the database status as shown below.
For example, the following command is a command to check the status of MySQL.
If the status of this command is not running, it means that the database is not started.
sudo systemctl status mysql
Can I check the database logs?
For MySQL, I think the error log is output to "/var/log/mysql/error.log" etc.
Relevant content
- asked 2 years ago
- asked 4 months ago
- asked a year ago
- AWS OFFICIALUpdated 5 months ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 2 months ago
- AWS OFFICIALUpdated 2 months ago
Hi Riku, thanks for the answer. I tried and I have this answer:
Active: failed (Result: resources) since...
Could be a storage problem?Usage of /: 100.0% of 38.58GB
Thank you for confirmation. Looking at the results, it certainly seems like there is a problem with disk space. I think you should recheck the storage capacity with the command below and if there is a problem with the capacity, you should take measures such as creating a snapshot and starting it with a larger Lightsail. Alternatively, you may consider migrating from Lightsail to RDS or Lightsail database.
https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-creating-a-database
Thanks for the information. I have created another instance from a snapshot but when I go to Connect using SSH via browser I see a blank popup so I can't login into the Plesk...
I updated the post, writing how I solved it. Maybe it can be helpful to someone:
I cleared up some space by deleting old System Journals: (On systems using systemd, old journal entries can accumulate)
sudo journalctl --vacuum-time=7d
Still, Plesk was not working. So I ran:
sudo plesk repair all
.After finishing the process, Plesk returned to work.
Using the terminal via the browser however calling
sudo plesk login
incorrectly gave me the old IP link (I had rebooted the machine).So I manually entered the Plesk panel https://XX.XXX.XXX.XX:8443/ (X stands for the IP)
Thanks to those who gave me help.