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