mysql设为linux服务
cp /usr/local/mysql5/share/mysql/mysql.server /etc/init.d/mysqld
chkconfig --add mysqld
chkconfig --level 2345 mysqld on
chown mysql:mysql -R /usr/local/mysql5/
service mysqld start
apache设为linux服务
cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd
vi /etc/init.d/httpd
在在#!/bin/sh后面加入下面两行
#chkconfig:345 85 15
#description: Start and stops the Apache HTTP Server.
然后
chmod +x /etc/rc.d/init.d/httpd
chkconfig --add httpd
然后可以用setup命令进入服务设置,设置为开机启动
第二种方法:
在/etc/rc.d/rc.local中增加启动apache的命令,例如:/usr/local/httpd/bin/apachectl start
分享到:
相关推荐
# 设置MySQL开机启动 /sbin/chkconfig --del mysql /sbin/chkconfig --add mysql chmod +x mysql /etc/rc.d/init.d/mysql start ``` ### 3. 安装PHP 最后,我们安装PHP以使Apache能够解析PHP脚本: ```bash # ...
7. 在`/etc/rc.d/rc.local`文件中添加`/usr/local/apache/bin/apachectl –k start`,使其开机启动。 8. 执行`/usr/local/apache/bin/apachectl start`启动Apache。 接下来,我们安装MySQL数据库服务: 1. 下载...
编译安装后,将`apachectl`脚本复制到`/etc/init.d/httpd`,并设置其为系统服务,通过`chkconfig`工具管理其开机启动。 #### 启动Apache 通过`service httpd start`命令启动Apache服务,并检查其是否在监听80端口...
安装完成后,通过运行`sudo systemctl start apache2`(Debian系)或`sudo systemctl start httpd`(RPM系)启动Apache,并用`sudo systemctl enable apache2`或`sudo systemctl enable httpd`设置开机启动。...
接下来,将MySQL的配置文件复制到/etc目录,并创建服务启动脚本,设置开机启动。 ```bash cp /usr/local/mysql/support-files/***f /etc/***f cp /usr/local/mysql/support-files/mysql.server /etc/rc.d/init.d/...
启动MySQL服务并确保其开机自启: ```bash sudo /usr/local/mysql/bin/mysqld_safe & sudo systemctl enable mysqld ``` 现在,Apache、PHP和MySQL已经安装并配置好,可以在Linux环境中运行PHP脚本并连接到MySQL...
5. **设置开机启动MySQL**:编辑`/etc/rc.d/rc.local`,添加启动MySQL的命令,确保系统重启时MySQL能自动启动。 **四、安装Apache** 1. **解压缩Apache源码**。 2. **配置和构建Apache**: - 进入Apache源码目录,...
安装完成后,启动Apache服务并设置开机自启: ```bash systemctl start httpd systemctl enable httpd ``` 二、配置Apache Apache的配置文件通常位于`/etc/httpd/conf/httpd.conf`。以下是几个关键配置项的解释:...
并设置开机启动: ```bash sudo systemctl enable mysql ``` ### 第四步:安装PHP ```bash sudo apt-get install php libapache2-mod-php php-mysql ``` 这将安装PHP及其Apache模块和MySQL驱动。 ### 第五步:配置...
ntsysv # 设置开机启动mysqld ``` #### 四、Apache安装与配置 ##### 1. 获取源码包 - 下载Apache 1.3.29的源码包。 ##### 2. 安装步骤 - 解压并进入源码包目录。 - 配置、编译并安装Apache。 ##### 3. 配置...
2. **配置服务**:在“Services”管理工具中,找到MySQL服务,设置为开机启动。 3. **启动数据库**:启动MySQL服务,可以通过命令行或管理工具进行。 4. **连接数据库**:使用MySQL客户端工具(如MySQL Workbench)...
4. **启动Apache服务**:使用命令 `service httpd start` 启动Apache服务,并将其设为开机自启。 #### 五、安装PHP解释器 1. **下载并解压PHP安装包**:`php-5.2.6.tar.gz`。 2. **配置编译选项**:根据需求配置...
配置完成后,需要设置 MySQL 为开机自动启动,并进行基本配置: ```bash # chown -R root . # chgrp -R mysql . # cp support-files/mysql.server /etc/init.d/mysqld # chmod 755 /etc/init.d/mysqld # cp support-...
3. 启动和管理Apache:使用`systemctl start apache2`启动,`systemctl status apache2`查看状态,`systemctl enable apache2`设置开机启动。 **Nginx**: Nginx以其反向代理、负载均衡和静态资源处理能力而闻名。...
5. **启动MySQL**:启动MySQL服务,命令分别是`sudo systemctl start mysql`或`sudo systemctl start mariadb`,并设置开机启动。 6. **安装PHP**:接下来安装PHP,Ubuntu/Debian使用`sudo apt-get install ...
11. 使MySQL开机自启动:`cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld`,`chkconfig mysqld on` 如果MySQL无法自启动,检查`/var/lib/mysql`下的错误日志文件,如*.err。如果遇到`mysql.sock...