Add file 'README.update-alternatives'.
This commit is contained in:
parent
bff3c24c90
commit
9460891d1c
30
README.update-alternatives
Normal file
30
README.update-alternatives
Normal file
@ -0,0 +1,30 @@
|
||||
|
||||
|
||||
# list available targets
|
||||
#
|
||||
update-alternatives --list my.cnf
|
||||
|
||||
# show further information including current selection, best selection and priority, where
|
||||
# a higher value has priority (automatic selection)
|
||||
#
|
||||
update-alternatives --display my.cnf
|
||||
|
||||
|
||||
# To select a specific implementation, use the following command as root and then select
|
||||
# a number from the list:
|
||||
#
|
||||
# also useful to see the current selection
|
||||
#
|
||||
update-alternatives --config my.cnf
|
||||
|
||||
|
||||
# Return to automatic selection
|
||||
#
|
||||
update-alternatives --auto my.cnf
|
||||
|
||||
|
||||
# delete an alternative
|
||||
#
|
||||
# update-alternatives --remove my.cnf <Pfad>
|
||||
#
|
||||
update-alternatives --remove my.cnf /usr/local/mysql/etc/my.cnf
|
Loading…
Reference in New Issue
Block a user