0

0

MySQLStudy之--Mysql启动失败“mysql.host”

php中文网

php中文网

发布时间:2016-06-07 14:56:08

|

1421人浏览过

|

来源于php中文网

原创

MySQL Study之--Mysql启动失败“mysql.host” 系统环境 : 操作系统:RedHat EL55 DB Soft: Mysql 5.6.4-m7 通过源码包安装mysql后,在启动mysqld时出现错误: [root@rh55 mysql]# bin/mysqld_safe [1] 15846 [root@rh55 mysql]# 150610 17:04:36 mysqld_sa

MySQL Study之--Mysql启动失败“mysql.host”

系统环境

操作系统:RedHat EL55

DB Soft:  Mysql 5.6.4-m7


通过源码包安装mysql后,在启动mysqld时出现错误:

[root@rh55 mysql]# bin/mysqld_safe &
[1] 15846
[root@rh55 mysql]# 150610 17:04:36 mysqld_safe Logging to '/usr/local/mysql/data/mysql/rh55.err'.
150610 17:04:36 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data/mysql
150610 17:04:37 mysqld_safe mysqld from pid file /usr/local/mysql/data/mysql/rh55.pid ended

[1]+  Done                    bin/mysqld_safe


查看mysql日志:


[root@rh55 mysql]# more /usr/local/mysql/data/mysql/rh55.err

猫目
猫目

AI工具导航与智能应用推荐

下载
  1. 150610 16:56:59 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data/mysql  
    /usr/local/mysql/bin/mysqld: Table 'mysql.plugin' doesn't exist  
    150610 16:57:00 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.  
    150610 16:57:00 InnoDB: The InnoDB memory heap is disabled  
    150610 16:57:00 InnoDB: Mutexes and rw_locks use InnoDB's own implementation  
    150610 16:57:00 InnoDB: Compressed tables use zlib 1.2.3  
    150610 16:57:00 InnoDB: CPU does not support crc32 instructions  
    150610 16:57:00 InnoDB: Initializing buffer pool, size = 128.0M  
    150610 16:57:00 InnoDB: Completed initialization of buffer pool  
    InnoDB: The first specified data file ./ibdata1 did not exist:  
    InnoDB: a new database to be created!  
    150610 16:57:00 InnoDB: Setting file ./ibdata1 size to 10 MB  
    InnoDB: Database physically writes the file full: wait...  
    150610 16:57:01 InnoDB: Log file ./ib_logfile0 did not exist: new to be created  
    InnoDB: Setting log file ./ib_logfile0 size to 5 MB  
    InnoDB: Database physically writes the file full: wait...  
    150610 16:57:02 InnoDB: Log file ./ib_logfile1 did not exist: new to be created  
    InnoDB: Setting log file ./ib_logfile1 size to 5 MB  
    InnoDB: Database physically writes the file full: wait...  
    InnoDB: Doublewrite buffer not found: creating new  
    InnoDB: Doublewrite buffer created  
    150610 16:57:04 InnoDB: 128 rollback segment(s) are active.  
    InnoDB: Creating foreign key constraint system tables  
    InnoDB: Foreign key constraint system tables created  
    150610 16:57:04 InnoDB: Waiting for the background threads to start  
    150610 16:57:05 InnoDB: 1.2.4 started; log sequence number 0  
    150610 16:57:05 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been  
     started. Generating a new UUID: ab19e2d2-0f4e-11e5-b157-080027973e8a.  
    150610 16:57:05 [ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist  
    150610 16:57:05 mysqld_safe mysqld from pid file /usr/local/mysql/data/mysql/rh55.pid ended  
    150610 17:04:36 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data/mysql  
    /usr/local/mysql/bin/mysqld: Table 'mysql.plugin' doesn't exist  
    150610 17:04:36 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.  
    150610 17:04:36 InnoDB: The InnoDB memory heap is disabled  
    150610 17:04:36 InnoDB: Mutexes and rw_locks use InnoDB's own implementation  
    150610 17:04:36 InnoDB: Compressed tables use zlib 1.2.3  
    150610 17:04:36 InnoDB: CPU does not support crc32 instructions  
    150610 17:04:36 InnoDB: Initializing buffer pool, size = 128.0M  
    150610 17:04:36 InnoDB: Completed initialization of buffer pool  
    150610 17:04:36 InnoDB: highest supported file format is Barracuda.  
    InnoDB: Log scan progressed past the checkpoint lsn 48961  
    150610 17:04:36  InnoDB: Database was not shut down normally!  
    InnoDB: Starting crash recovery.  
    InnoDB: Reading tablespace information from the .ibd files...  
    InnoDB: Restoring possible half-written data pages from the doublewrite  
    InnoDB: buffer...  
    InnoDB: Doing recovery: scanned up to log sequence number 1595695  
    150610 17:04:36  InnoDB: Starting an apply batch of log records to the database...  
    InnoDB: Progress in percents: 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76  
     77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99   
    InnoDB: Apply batch completed  
    150610 17:04:37 InnoDB: 128 rollback segment(s) are active.  
    150610 17:04:37 InnoDB: 1.2.4 started; log sequence number 1595695  
    150610 17:04:37 [Note] Recovering after a crash using mysql-bin  
    150610 17:04:37 [Note] Starting crash recovery...  
    150610 17:04:37 [Note] Crash recovery finished.  
    150610 17:04:37 [ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist  
    150610 17:04:37 mysqld_safe mysqld from pid file /usr/local/mysql/data/mysql/rh55.pid ended

查看mysql配置文件:
[root@rh55 ~]# cat /etc/my.cnf

[mysqld]  
port            = 3306  
socket          = /tmp/mysql.sock  
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  
datadir=/usr/local/mysql/data/mysql

解决方案:
[root@rh55 mysql]# scripts/mysql_install_db --user=mysql --datadir=/usr/local/mysql/data/mysql

  1. WARNING: The host 'rh55' could not be looked up with resolveip.  
    This probably means that your libc libraries are not 100 % compatible  
    with this binary MySQL version. The MySQL daemon, mysqld, should work  
    normally with the exception that host name resolving will not work.  
    This means that you should use IP addresses instead of hostnames  
    when specifying MySQL privileges !  
    Installing MySQL system tables...  
    150610 17:07:10 InnoDB: The InnoDB memory heap is disabled  
    150610 17:07:10 InnoDB: Mutexes and rw_locks use InnoDB's own implementation  
    150610 17:07:10 InnoDB: Compressed tables use zlib 1.2.3  
    150610 17:07:10 InnoDB: CPU does not support crc32 instructions  
    150610 17:07:10 InnoDB: Initializing buffer pool, size = 128.0M  
    150610 17:07:10 InnoDB: Completed initialization of buffer pool  
    150610 17:07:10 InnoDB: highest supported file format is Barracuda.  
    InnoDB: Log scan progressed past the checkpoint lsn 48961  
    150610 17:07:10  InnoDB: Database was not shut down normally!  
    InnoDB: Starting crash recovery.  
    InnoDB: Reading tablespace information from the .ibd files...  
    InnoDB: Restoring possible half-written data pages from the doublewrite  
    InnoDB: buffer...  
    InnoDB: Doing recovery: scanned up to log sequence number 1595695  
    150610 17:07:11  InnoDB: Starting an apply batch of log records to the database...  
    InnoDB: Progress in percents: 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99   
    InnoDB: Apply batch completed  
    150610 17:07:11 InnoDB: 128 rollback segment(s) are active.  
    150610 17:07:11 InnoDB: Waiting for the background threads to start  
    150610 17:07:12 InnoDB: 1.2.4 started; log sequence number 1595695  
    150610 17:07:12 [Note] Recovering after a crash using mysql-bin  
    150610 17:07:12 [Note] Starting crash recovery...  
    150610 17:07:12 [Note] Crash recovery finished.  
    150610 17:07:14 [Warning] Info table is not ready to be used. Table 'mysql.slave_master_info' cannot be opened.  
    150610 17:07:14 [Warning] Error while checking replication metadata. Setting the requested repository in order to give users the chance to fix the problem and restart the server. If this is a live upgrade please consider using mysql_upgrade to fix the problem.  
    150610 17:07:14 [Warning] Info table is not ready to be used. Table 'mysql.slave_relay_log_info' cannot be opened.  
    150610 17:07:14 [Warning] Error while checking replication metadata. Setting the requested repository in order to give users the chance to fix the problem and restart the server. If this is a live upgrade please consider using mysql_upgrade to fix the problem.  
    150610 17:07:15 [Note] Binlog end  
    150610 17:07:15 [Note] Shutting down plugin 'partition'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_SYS_TABLES'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_FT_CONFIG'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_FT_DELETED'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_FT_INSERTED'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_METRICS'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_CMPMEM'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_CMP_RESET'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_CMP'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_LOCKS'  
    150610 17:07:15 [Note] Shutting down plugin 'INNODB_TRX'  
    150610 17:07:15 [Note] Shutting down plugin 'InnoDB'  
    150610 17:07:15  InnoDB: FTS optimize thread exiting.  
    150610 17:07:15  InnoDB: Starting shutdown...  
    150610 17:07:16 InnoDB: Shutdown completed; log sequence number 1602851  
    150610 17:07:16 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'  
    150610 17:07:16 [Note] Shutting down plugin 'CSV'  
    150610 17:07:16 [Note] Shutting down plugin 'MRG_MYISAM'  
    150610 17:07:16 [Note] Shutting down plugin 'MEMORY'  
    150610 17:07:16 [Note] Shutting down plugin 'MyISAM'  
    150610 17:07:16 [Note] Shutting down plugin 'mysql_old_password'  
    150610 17:07:16 [Note] Shutting down plugin 'mysql_native_password'  
    150610 17:07:16 [Note] Shutting down plugin 'binlog'  
    OK  
    Filling help tables...  
    150610 17:07:16 InnoDB: The InnoDB memory heap is disabled  
    150610 17:07:16 InnoDB: Mutexes and rw_locks use InnoDB's own implementation  
    150610 17:07:16 InnoDB: Compressed tables use zlib 1.2.3  
    150610 17:07:16 InnoDB: CPU does not support crc32 instructions  
    150610 17:07:16 InnoDB: Initializing buffer pool, size = 128.0M  
    150610 17:07:16 InnoDB: Completed initialization of buffer pool  
    150610 17:07:16 InnoDB: highest supported file format is Barracuda.  
    150610 17:07:17 InnoDB: 128 rollback segment(s) are active.  
    150610 17:07:17 InnoDB: 1.2.4 started; log sequence number 1602851  
    150610 17:07:17 [Note] Binlog end  
    150610 17:07:17 [Note] Shutting down plugin 'partition'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_SYS_TABLES'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_FT_CONFIG'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_FT_DELETED'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_FT_INSERTED'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_METRICS'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_CMPMEM'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_CMP_RESET'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_CMP'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_LOCKS'  
    150610 17:07:17 [Note] Shutting down plugin 'INNODB_TRX'  
    150610 17:07:17 [Note] Shutting down plugin 'InnoDB'  
    150610 17:07:17  InnoDB: FTS optimize thread exiting.  
    150610 17:07:17  InnoDB: Starting shutdown...  
    150610 17:07:18 InnoDB: Shutdown completed; log sequence number 1602861  
    150610 17:07:18 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'  
    150610 17:07:18 [Note] Shutting down plugin 'CSV'  
    150610 17:07:18 [Note] Shutting down plugin 'MRG_MYISAM'  
    150610 17:07:18 [Note] Shutting down plugin 'MEMORY'  
    150610 17:07:18 [Note] Shutting down plugin 'MyISAM'  
    150610 17:07:18 [Note] Shutting down plugin 'mysql_old_password'  
    150610 17:07:18 [Note] Shutting down plugin 'mysql_native_password'  
    150610 17:07:18 [Note] Shutting down plugin 'binlog'  
    OK  
      
    To start mysqld at boot time you have to copy  
    support-files/mysql.server to the right place for your system  
      
    PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !  
    To do so, start the server, then issue the following commands:  
      
    ./bin/mysqladmin -u root password 'new-password'  
    ./bin/mysqladmin -u root -h rh55 password 'new-password'  
      
    Alternatively you can run:  
    ./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.  
      
    You can start the MySQL daemon with:  
    cd . ; ./bin/mysqld_safe &  
      
    You can test the MySQL daemon with mysql-test-run.pl  
    cd ./mysql-test ; perl mysql-test-run.pl  
      
    Please report any problems with the ./bin/mysqlbug script!


启动mysql server:

[root@rh55 mysql]# bin/mysqld_safe &
[1] 16199
[root@rh55 mysql]# 150610 17:08:22 mysqld_safe Logging to '/usr/local/mysql/data/mysql/rh55.err'.
150610 17:08:22 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data/mysql

验证启动成功:
[root@rh55 mysql]# netstat -an |grep 3306
tcp        0      0 :::3306                     :::*                        LISTEN  


热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
Swift iOS架构设计与MVVM模式实战
Swift iOS架构设计与MVVM模式实战

本专题聚焦 Swift 在 iOS 应用架构设计中的实践,系统讲解 MVVM 模式的核心思想、数据绑定机制、模块拆分策略以及组件化开发方法。内容涵盖网络层封装、状态管理、依赖注入与性能优化技巧。通过完整项目案例,帮助开发者构建结构清晰、可维护性强的 iOS 应用架构体系。

0

2026.03.03

C++高性能网络编程与Reactor模型实践
C++高性能网络编程与Reactor模型实践

本专题围绕 C++ 在高性能网络服务开发中的应用展开,深入讲解 Socket 编程、多路复用机制、Reactor 模型设计原理以及线程池协作策略。内容涵盖 epoll 实现机制、内存管理优化、连接管理策略与高并发场景下的性能调优方法。通过构建高并发网络服务器实战案例,帮助开发者掌握 C++ 在底层系统与网络通信领域的核心技术。

3

2026.03.03

Golang 测试体系与代码质量保障:工程级可靠性建设
Golang 测试体系与代码质量保障:工程级可靠性建设

Go语言测试体系与代码质量保障聚焦于构建工程级可靠性系统。本专题深入解析Go的测试工具链(如go test)、单元测试、集成测试及端到端测试实践,结合代码覆盖率分析、静态代码扫描(如go vet)和动态分析工具,建立全链路质量监控机制。通过自动化测试框架、持续集成(CI)流水线配置及代码审查规范,实现测试用例管理、缺陷追踪与质量门禁控制,确保代码健壮性与可维护性,为高可靠性工程系统提供质量保障。

66

2026.02.28

Golang 工程化架构设计:可维护与可演进系统构建
Golang 工程化架构设计:可维护与可演进系统构建

Go语言工程化架构设计专注于构建高可维护性、可演进的企业级系统。本专题深入探讨Go项目的目录结构设计、模块划分、依赖管理等核心架构原则,涵盖微服务架构、领域驱动设计(DDD)在Go中的实践应用。通过实战案例解析接口抽象、错误处理、配置管理、日志监控等关键工程化技术,帮助开发者掌握构建稳定、可扩展Go应用的最佳实践方法。

57

2026.02.28

Golang 性能分析与运行时机制:构建高性能程序
Golang 性能分析与运行时机制:构建高性能程序

Go语言以其高效的并发模型和优异的性能表现广泛应用于高并发、高性能场景。其运行时机制包括 Goroutine 调度、内存管理、垃圾回收等方面,深入理解这些机制有助于编写更高效稳定的程序。本专题将系统讲解 Golang 的性能分析工具使用、常见性能瓶颈定位及优化策略,并结合实际案例剖析 Go 程序的运行时行为,帮助开发者掌握构建高性能应用的关键技能。

45

2026.02.28

Golang 并发编程模型与工程实践:从语言特性到系统性能
Golang 并发编程模型与工程实践:从语言特性到系统性能

本专题系统讲解 Golang 并发编程模型,从语言级特性出发,深入理解 goroutine、channel 与调度机制。结合工程实践,分析并发设计模式、性能瓶颈与资源控制策略,帮助将并发能力有效转化为稳定、可扩展的系统性能优势。

23

2026.02.27

Golang 高级特性与最佳实践:提升代码艺术
Golang 高级特性与最佳实践:提升代码艺术

本专题深入剖析 Golang 的高级特性与工程级最佳实践,涵盖并发模型、内存管理、接口设计与错误处理策略。通过真实场景与代码对比,引导从“可运行”走向“高质量”,帮助构建高性能、可扩展、易维护的优雅 Go 代码体系。

20

2026.02.27

Golang 测试与调试专题:确保代码可靠性
Golang 测试与调试专题:确保代码可靠性

本专题聚焦 Golang 的测试与调试体系,系统讲解单元测试、表驱动测试、基准测试与覆盖率分析方法,并深入剖析调试工具与常见问题定位思路。通过实践示例,引导建立可验证、可回归的工程习惯,从而持续提升代码可靠性与可维护性。

4

2026.02.27

漫蛙app官网链接入口
漫蛙app官网链接入口

漫蛙App官网提供多条稳定入口,包括 https://manwa.me、https

336

2026.02.27

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
MySQL 教程
MySQL 教程

共48课时 | 2.4万人学习

MySQL 初学入门(mosh老师)
MySQL 初学入门(mosh老师)

共3课时 | 0.3万人学习

简单聊聊mysql8与网络通信
简单聊聊mysql8与网络通信

共1课时 | 842人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号