redhat下的几个熟悉的命令

1、LINUX开机自动启动apache,ftp
前提条件是apache 和ftp服务已经安装好
chkconfig httpd on 自动启动apache
chkconfig vsftpd on 自动启动ftp
还有例子
让开机自动启动apache
vi /etc/rc.d/rc.local
#!/bin/sh

#This script will be executed after all the other init scripts.
#You can put your own initialization stuff in here if you don’t
#want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
/etc/init.d/httpd start #(按i插入此行)
/usr/local/apache-tomcatA-6.0.35/bin/startup.sh

2、启动mysql服务
#service mysqld start
如果没有这个服务,使用如下命令:
#/etc/init.d/mysqld restart

3.查看和修改mysql的端口号
一、查看默认端口号
1、登录mysql
[root@localhost ~]# mysql -uroot -p
Enter password: 输入数据库密码;
2、使用show global variables like ‘port’; 命令查看端口号,
mysql> show global variables like ‘port’;
±--------------±------+
| Variable_name | Value |
±--------------±------+
| port | 3306 |
±--------------±------+
1 row in set (0.00 sec)
mysql>
3306即为端口号。
二、mysql端口号的修改

1、编辑/etc/my.cnf文件 [root@localhost ~]# vi /etc/my.cnf

2、添加port=2032;

3、重启mysql [root@localhost ~]# /etc/init.d/mysqld restart

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值