a month ago
LIKE I MAKE Regenerate BUT WHEN I USE UEL PUBLIC IN PROJECT IS NOT WORK BUT OLD URL IS WORKING BUT I SEE IN URL PUBLIC GIVE ME NEW ONE BUT IS NOT WORK
Attachments
Pinned Solution
a month ago
Try this:
1. SSH into your MySQL service (Right click the service and Copy SSH Command) (You'll need Railway CLI installed for this to work)
2. In the terminal, paste the SSH command and run mysql -u root -p
3. Enter the current working password
4. Run the following commands:
ALTER USER 'root'@'localhost' IDENTIFIED BY '<PASSWD>';
ALTER USER 'root'@'%' IDENTIFIED BY '<PASSWD>';
FLUSH PRIVILEGES;Where <PASSWD> is replaced with the new password (From the variable MYSQL_ROOT_PASSWORD
5. Make sure to restart other services that depend on your MySQL database
6 Replies
a month ago
This thread has been marked as public for community involvement, as it does not contain any sensitive or personal information. Any further activity in this thread will be visible to everyone.
Status changed to Open Railway • about 1 month ago
a month ago
I assume you're able to connect to the database through the dashboard but not externally with the newly generated password?
0x5b62656e5d
I assume you're able to connect to the database through the dashboard but not externally with the newly generated password?
a month ago
YES
a month ago
Try this:
1. SSH into your MySQL service (Right click the service and Copy SSH Command) (You'll need Railway CLI installed for this to work)
2. In the terminal, paste the SSH command and run mysql -u root -p
3. Enter the current working password
4. Run the following commands:
ALTER USER 'root'@'localhost' IDENTIFIED BY '<PASSWD>';
ALTER USER 'root'@'%' IDENTIFIED BY '<PASSWD>';
FLUSH PRIVILEGES;Where <PASSWD> is replaced with the new password (From the variable MYSQL_ROOT_PASSWORD
5. Make sure to restart other services that depend on your MySQL database
Status changed to Solved 0x5b62656e5d • about 1 month ago
a month ago
We have also fixed this, so you won't have to manually run SQL going forward.
Status changed to Awaiting User Response Railway • about 1 month ago
Status changed to Solved brody • about 1 month ago
