Applicable to:
- SolusVM 2
Symptoms
Networking tab of a certain VPS is not available in SolusVM 2. The following error is displayed in SolusVM 2 panel:
CONFIG_TEXT: Something went wrong...
Sorry, it seems we have an issue here. Please refresh the page and try again.
Cause
Missing entry in reverse_dns database table for the VPS IP address.
Resolution
- Access Management Node via SSH
-
Backup Management Node:
# /usr/local/solus/bin/installer -backup
- Access database:
# docker exec -it $(docker ps -q -f name=solus_postgres | head -n1) psql -U$(docker exec $(docker ps -q -f name=solus_postgres | head -n1) env | grep POSTGRES_USER | awk -F "=" {'print $2'}) $(docker exec $(docker ps -q -f name=solus_postgres | head -n1) env | grep POSTGRES_DB | awk -F "=" {'print $2'})
- Find the corresponding IP address ID:
MYSQL_LIN: select id from ips where ip='IPADDR';
Replace IPADDR with the corresponding IP address.
- Add the entry in reverse_dns table:
MYSQL_LIN: insert into reverse_dns (ip_id,ip,domain) values (IPADDR_ID, 'IPADDR', '');
Replace IPADDR_ID and IPADDR correspondingly.
Comments
0 commentsPlease sign in to leave a comment.