Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
Actually, It was happening for mariadb wasn't installed. So, I simply was trying to install mysqld directly (Some websites said to install mysqld). But, there was no mysqld package. So, I had wrote...
Answer
#1: Initial revision
Actually, It was happening for `mariadb` wasn't installed. So, I simply was trying to install mysqld directly (Some websites said to install mysqld). But, there was no `mysqld` package. So, I had wrote `mysqld` in command line and, run that command. Then, pamac checked repositories. Then, installed `mariadb`. ``` sudo pamac install mariadb ``` Now, I can simply start/enable mysqld using the following command. ``` sudo systemctl enable mysqld ```