⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 postflight.sh

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 SH
字号:
#!/bin/sh## postflight - this script will be executed after the MySQL PKG# installation has been performed.## This script will install the MySQL privilege tables using the# "mysql_install_db" script and will correct the ownerships of these files# afterwards.#if cd @prefix@ ; then	if [ ! -f data/mysql/db.frm ] ; then		./scripts/mysql_install_db --rpm	fi	if [ -d data ] ; then		chown -R @MYSQLD_USER@ data	fielse	exit $?fi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -