linux安装mysql
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1、查看linux的位数
uname -a
Linux centos1 3.10.0-693.el7.x86_64 #1 SMP Tue Aug 22 21:09:27 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux显示为64位
2、下载对应的mysql
3、下载完后解压
4、将解压的包移动到usr/local/mysql 并命名为mysql
mv
mysql-5.1.73-linux-x86_64-glibc23usr/local/mysql
5、创建mysql的用户
useradd mysql
6、创建data目录
mkdir /data/
7、运行mysql db 并且指定用户(echo $? 查看刚刚指令是否正确0正确)
.
./scripts/mysql_install_db --user=mysql --datadir=/data/mysql
8、查看etc/my.cnf谁安装的
并修改为如图
9、
cp support-files/mysql.server /ect/init.d/mysqld 将数据放在/ect/init.d/mysqld
10、vi /ect/init.d/mysqld
11、添加到开机时启动 ,添加到系统服务列表里边去
chkcongfig --add mysqld
查看服务
chkconfig --list
也可用指令启动 service mysqld start或者/etc/init.d/mysqld start
12、启动成功
13、查看进程
ps aux | grep mydql
14、启动mysql的另一种方式
15、关闭mysql
killall mysqld (更安全一点,先停止当前操作,将数据先写进去,然后再停止,kill -9这个慎重使用)
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)