About MariaDB installation problem note (CMake Error at), mariadbcmake
The following error is always prompted when installing MariaDB today, but I have installed the libaio-devel Library:
CMake Error at cmake/build_configurations/mysql_release.cmake: 128 (MESSAGE ):
Aio is required on Linux, you need to install the required library:
Debian/Ubuntu: apt-get install libaio-dev
RedHat/Fedora/Oracle Linux: yum install libaio-devel
SuSE: zypper install libaio-devel
If you really do not want it, pass-DIGNORE_AIO_CHECK to cmake.
After searching for different solutions, I realized that cmakecache.txt was created when I first executed cmake. at this time, I didn't install the libaio-devel library, and then I continued to install the dependent library and then executed cmake to read the cache files generated earlier, as a result, cmake judges that libaio-devel has not been installed. For this reason, we only need to delete the cmakecache.txt file and then re-execute the cmake command to solve this problem.