Changes between Version 3 and Version 4 of Docs/825gen2/Dev/Database/MySQL


Ignore:
Timestamp:
11/10/23 09:42:34 (12 months ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/Database/MySQL

    v3 v4  
    154154nano /etc/my.cnf
    155155}}}
     156
     157{{{
     158[client]
     159#password                                       = password
     160port                                            = 3306
     161socket                                          = /var/lib/mysql/mysql.sock
     162
     163[mysqld_safe]
     164
     165[mysqld]
     166user                                            = mysql
     167port                                            = 3306
     168socket                                          = /var/lib/mysql/mysql.sock
     169pid-file                                        = /var/lib/mysql/mysqld.pid
     170log-error                                       = /var/log/mysqld.log
     171basedir                                         = /usr
     172datadir                                         = /var/lib/mysql
     173skip-external-locking
     174skip-networking
     175ignore-builtin-innodb
     176default-storage-engine                          = myisam
     177bind-address                                    = localhost
     178
     179#
     180# include all files from the config directory
     181#
     182!includedir /etc/my.cnf.d
     183}}}
     184
     185
     186Change bind-address from 127.0.0.1 to 0.0.0.0 to allow connections from any IP.
     187Insert # symbol in front of skip-networking to comment this out.
     188
     189Ctrl-X and Y to save file.
     190
     191Restart MySQL
     192
     193{{{
     194sudo systemctl restart mysqld
     195}}}
     196
     197Verify that MySQL is listening on port 3306
     198
     199