[DiscordArchive] please someone help me to know how executed all queries in the sql/updates folders by command line
[DiscordArchive] please someone help me to know how executed all queries in the sql/updates folders by command line
Archived author: Allen • Posted: 2024-08-19T21:24:16.518000+00:00
Original source
please someone help me to know how executed all queries in the sql/updates folders by command line in linux? or even not by command line just in linux?
Archived author: Superfreaken • Posted: 2024-08-19T21:48:43.636000+00:00
Original source
do I create these? and where do I place them? authserver.service worldserver.service
Archived author: leetrobotz • Posted: 2024-08-19T22:45:15.082000+00:00
Original source
Launch mysql with the command `mysql -u <user>` where `<user>` is the userid of your mysql user, for example `root`. Then run each .sql file using `source <path-to-your-module-script>` like `source ~/azerothcore/transmog/acore_auth/install.sql` (make sure you use your own userid and path to the SQL script). Then `exit;` to leave the mysql interface.