FreeBSD 的Ubuntu jail里启动mysql服务器失败的解决方法

在FreeBSD 的jail里安装Ubuntu后,一直没有尝试安装mysql服务器,网上也没有找到相应的文档(这证明要么太难,天底下就没有解决方案;要么太容易,以至于显而易见,所以不需要文档)。

今天终于被迫,要解决这个问题!

首先,在Ubuntu jail里安装mysql server

直接使用apt安装即可:

apt install mysql-server

安装好之后,跟普通Ubuntu系统里不一样,没有自动启动mysql服务(也许这里记错了)

普通Ubuntu系统里,启动mysql服务非常简单,直接执行:

systemctl start mysql
System has not been booted with systemd as init system (PID 1). Can't operate.
Failed to connect to bus: Host is down

报错,使用 systemctl status mysql命令也是报错:

systemctl status mysql

System has not been booted with systemd as init system (PID 1). Can't operate.

Failed to connect to bus: Host is down

系统没有使用 systemd 作为初始化系统(init system)

最终使用如下命令启动服务:

service mysql start

再看看服务器状态:

service mysql status
 * /usr/bin/mysqladmin  Ver 8.0.39-0ubuntu0.22.04.1 for Linux on x86_64 ((Ubuntu))
Copyright (c) 2000, 2024, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Server version		8.0.39-0ubuntu0.22.04.1
Protocol version	10
Connection		Localhost via UNIX socket
UNIX socket		/var/run/mysqld/mysqld.sock
Uptime:			12 min 11 sec

Threads: 2  Questions: 10  Slow queries: 0  Opens: 438  Flush tables: 3  Open tables: 27  Queries per second avg: 0.013

终于在Ubuntu jail里启动mysql服务拉!

相关推荐
wzhao1013 分钟前
WSL进阶使用指南
linux
风静如云10 分钟前
OpenBMC:BmcWeb app.run
linux
数巨小码人25 分钟前
Linux下文件权限与安全
linux
yuanbenshidiaos32 分钟前
【进程 】
linux
ChoSeitaku1 小时前
12.重复内容去重|添加日志|部署服务到Linux上(C++)
linux·c++·windows
一颗小树x2 小时前
Llama 3.1 本地电脑部署 Linux系统 【轻松简易】
linux·llama·本地部署·3.1
Java Fans2 小时前
微信小程序——访问服务器媒体文件的实现步骤
服务器·微信小程序·小程序
技术小齐2 小时前
网络运维学习笔记 017HCIA-Datacom综合实验01
运维·网络·学习
yourkin6662 小时前
HTTPS(下)
服务器·网络协议·https
KingDol_MIni2 小时前
Spring Boot 集成 T-io 实现客户端服务器通信
java·服务器·spring boot