Eduroam installation on Linux
By jeltsch on Tue, 02/23/2021 - 09:44This morning it took me an hour to get Eduroam working. Eduroam is the international WLAN roaming service for university students and staff.
English
This morning it took me an hour to get Eduroam working. Eduroam is the international WLAN roaming service for university students and staff.
After installing the Suse 9 rpm, execute the following commands:
sudo /usr/bin/mysql_install_db
(Creating default databases & permissions. Apparently the same can be done by "sudo rcmysql start")
sudo /usr/bin/mysqld_safe --user=mysql &
(Start the server for the first time)
REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! This is done with:
/usr/bin/mysqladmin -u root password 'new-password' /usr/bin/mysqladmin -u root -h hostname password 'new-password'