[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
howtos:databases:install_mysql_on_slackware [2013/01/06 03:58 (UTC)] – General cleanup - added tag mfillpothowtos:databases:install_mysql_on_slackware [2013/01/07 02:26 (UTC)] – modified file flags mfillpot
Line 1: Line 1:
 +<!-- Reviewed 2012-01-05 mfillpot -->
 <!-- Add your text below. We strongly advise to start with a Headline (see button bar above). --> <!-- Add your text below. We strongly advise to start with a Headline (see button bar above). -->
 ====== Install MySQL On Slackware ====== ====== Install MySQL On Slackware ======
Line 26: Line 27:
 Networking is disabled by default to improve security. If you want to allow Networking is disabled by default to improve security. If you want to allow
 network connections, comment out this line in ''/etc/rc.d/rc.mysqld'' network connections, comment out this line in ''/etc/rc.d/rc.mysqld''
-<file>+<file sh rc.mysqld>
 #SKIP="--skip-networking" #SKIP="--skip-networking"
 </file> </file>
- +
 == 4) Start mysqld == == 4) Start mysqld ==
 <code> <code>
Line 92: Line 93:
  
   * Resetting the root password can be done by creating a new cnf file and add the following lines (please change the password in this example):   * Resetting the root password can be done by creating a new cnf file and add the following lines (please change the password in this example):
-<file>+<file sql mysql_new.cnf>
 UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root'; UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root';
 FLUSH PRIVILEGES; FLUSH PRIVILEGES;
 howtos:databases:install_mysql_on_slackware ()