91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SuSE11下如何使用rpm安裝包安裝MySQL5.5.60

發布時間:2020-05-18 10:35:43 來源:網絡 閱讀:381 作者:三月 欄目:MySQL數據庫

下文主要給大家帶來SuSE11下如何使用rpm安裝包安裝MySQL5.5.60,希望這些內容能夠帶給大家實際用處,這也是我編輯SuSE11下如何使用rpm安裝包安裝MySQL5.5.60這篇文章的主要目的。好了,廢話不多說,大家直接看下文吧。

一、環境準備

操作系統:SuSE版本11sp3,64位

kingtry:~ # uname -a
Linux kingtry 3.0.76-0.11-default #1 SMP Fri Jun 14 08:21:43 UTC 2013 (ccab990) x86_64 x86_64 x86_64 GNU/Linux
kingtry:~ # cat /etc/SuSE-release 
SUSE Linux Enterprise Server 11 (x86_64)
VERSION = 11
PATCHLEVEL = 3

二、檢測是否安裝過MySQL

kingtry:~ # rpm -qa | grep -i  mysql
libmysqlclient_r15-5.0.96-0.6.1
libqt4-sql-mysql-4.6.3-5.25.4
MySQL-client-community-5.1.73-1.sles11
MySQL-server-community-5.1.73-1.sles11

注意輸出的MySQL-*,表示已經安裝過。lib開頭的可以忽略。

輸入以下命令刪除:

kingtry:~ #rpm -e MySQL-client-community-5.1.73-1.sles11
kingtry:~ #rpm -e MySQL-server-community-5.1.73-1.sles11

三、軟件準備

MySQL-server-5.5.60-1.sles11.x86_64.rpm
MySQL-client-5.5.60-1.sles11.x86_64.rpm

四、安裝過程

kingtry:~ # rpm -ivh MySQL-server-5.5.60-1.sles11.x86_64.rpm MySQL-client-5.5.60-1.sles11.x86_64.rpm 
warning: MySQL-server-5.5.60-1.sles11.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 5072e1f5
Preparing...                ########################################### [100%]
   1:MySQL-client           ########################################### [ 50%]
   2:MySQL-server           ########################################### [100%]
warning: user mysql does not exist - using root
warning: group mysql does not exist - using root
insserv: Service network is missed in the runlevels 4 to use service mysql
mysql                     0:off  1:off  2:on   3:on   4:on   5:on   6:off
180620 17:57:38 [Note] Ignoring --secure-file-priv value as server is running with --bootstrap.
180620 17:57:38 [Note] /usr/sbin/mysqld (mysqld 5.5.60) starting as process 3576 ...
180620 17:57:39 [Note] Ignoring --secure-file-priv value as server is running with --bootstrap.
180620 17:57:39 [Note] /usr/sbin/mysqld (mysqld 5.5.60) starting as process 3583 ...

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h kingtry password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

Please report any problems at http://bugs.mysql.com/

五、安裝完成

簡單的安裝過程,只需上面一個命令即可,當前版本root密碼為空,可以使用mysql命令直接連接登陸。

注:默認安裝之后mysql服務并沒有自動啟動

六、安裝后配置之遷移數據庫目錄

rpm這種安裝方式默認將數據文件安裝到/var/lib/mysql這個目錄下面,通常都需要遷移到其他目錄下,如遷移到/data目錄下

kingtry:~ # mkdir  /data
kingtry:~ # mv  /var/lib/mysql  /data

需要注意的是,在此之前,mysql相關配置都是采用默認值。如果mysql所有選項都采用默認值,則即使沒有my.cnf這個文件,服務也能正常啟動。

但是,我們修改了數據文件的路徑,那就要在my.cnf中指定。

1,復制my.cnf模板文件

    模板文件在/usr/share/mysql目錄下,有多個,復制其中任意一個

kingtry:~ # cp  /usr/share/mysql/my-medium.cnf  /etc/my.cnf

修改相關參數,主要是socket, datadir, 如下:

# Example MySQL config file for medium systems.
#
# This is for a system with little memory (32M - 64M) where MySQL plays
# an important part, or systems up to 128M where MySQL is used together with
# other programs (such as a web server)
#
# MySQL programs look for option files in a set of
# locations which depend on the deployment platform.
# You can copy this option file to one of those
# locations. For information about these locations, see:
# http://dev.mysql.com/doc/mysql/en/option-files.html
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients

[client]
#password       = your_password
port            = 3306
socket          = /data/mysql/mysql.sock
default-character-set=utf8
# Here follows entries for some specific programs
# The MySQL server
[mysqld]
port            = 3306
datadir         = /data/mysql
socket          = /data/mysql/mysql.sock
character-set-server=utf8
pid-file=/data/mysql/mysql.pid
user = mysql	

lower_case_table_names=1
max_connections=1000

#bind-address = 127.0.0.1

#skip-name-resolve
skip-external-locking

key_buffer_size = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
# 
#skip-networking

# Replication Master Server (default)
# binary logging is required for replication
log-bin=/data/mysql/mysql-bin

# binary logging format - mixed recommended
binlog_format=mixed

# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id	= 1

# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
#
#    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
#    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
#    where you replace <host>, <user>, <password> by quoted strings and
#    <port> by the master's port number (3306 by default).
#
#    Example:
#
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
#
# The replication master for this slave - required
#master-host     =   <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin

# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /var/lib/mysql
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /var/lib/mysql
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 5M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50

slow_query_log = 1
long_query_time = 10
log-queries-not-using-indexes

log-error=/data/mysql/mysql.err

expire-logs-days = 10

[mysqldump]
quick
max_allowed_packet = 16M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[myisamchk]
key_buffer_size = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M

[mysqlhotcopy]
interactive-timeout

七、啟動mysql服務即可

kingtry:~ # service mysql start                                                                                                                                                     done
Starting MySQL.                                                                                                                                                                done
kingtry:~ #

檢查MySQL服務是否已經啟動:

kingtry:~ # netstat -nat | grep 3306

八、安裝后配置之root密碼修改

默認情況下root密碼為空,這在生產環境下肯定不行的。修改root密碼的方式有以下兩種,隨便哪個都行:

1、命令方式(注:首次修改密碼,修改前密碼為空)

kingtry:~ # mysqladmin -u root password 'root123'

要注意如果執行以上步驟之后root密碼已經不為空,如果此時想再次修改root密碼,上面命令就不行了,需要用到下面的命令:

kingtry:~ # mysqladmin -u root -p  password 'root1234' 
Enter password:

這是交互式方式修改,輸入的當前密碼,password參數后面跟隨的是想要修改成的密碼


2、修改庫表數據方式

先登陸mysql云服務器

mysql>  use mysql
mysql>  update user set password=password('root123') where user='root';
mysql>  commit;

九、防火墻允許3306端口

kingtry:~ # vi /etc/sysconfig/SuSEfirewall2

在FW_SERVICES_EXT_TCP增加3306端口,如果存在其他端口,則空格隔開,如:

FW_SERVICES_EXT_TCP="21 22 3306"

重啟防火墻:

# rcSuSEfirewall2 restart

十、設置遠程訪問

 先登陸mysql云服務器,授權root用戶可以遠程登陸

mysql> grant all PRIVILEGES on *.* to root@'%' identified by 'root123'; 
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql>

注:生產環境最好只允許root在特定IP的機器上才能遠程訪問。

對于以上關于SuSE11下如何使用rpm安裝包安裝MySQL5.5.60,大家是不是覺得非常有幫助。如果需要了解更多內容,請繼續關注我們的行業資訊,相信你會喜歡上這些內容的。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

芦溪县| 怀安县| 周宁县| 乐陵市| 凭祥市| 万山特区| 名山县| 乳山市| 霍州市| 紫阳县| 灌云县| 长春市| 桃园市| 彭泽县| 浠水县| 承德县| 合水县| 安塞县| 巴塘县| 晋宁县| 安宁市| 宜兴市| 吉安市| 仙居县| 广南县| 华安县| 乌拉特中旗| 临潭县| 禄丰县| 册亨县| 茶陵县| 吉木萨尔县| 嘉荫县| 新余市| 正安县| 诸暨市| 凌源市| 迁安市| 西昌市| 阿拉尔市| 安岳县|