// Apache
//Task: Start Apache 2 Server /启动apache服务
# /etc/init.d/apache2 start
//or
$ sudo /etc/init.d/apache2 start
//Task: Restart Apache 2 Server /重启apache服务
# /etc/init.d/apache2 restart
//or
$ sudo /etc/init.d/apache2 restart
//Task: Stop Apache 2 Server /停止apache服务
# /etc/init.d/apache2 stop
//or
$ sudo /etc/init.d/apache2 stop
// Mysql
/etc/init.d/mysql start
/etc/init.d/mysql stop
/etc/init.d/mysql restart
写道
// httpd是Apache超文本传输协议(HTTP)服务器的主程序。被设计为一个独立运行的后台进程,它会建立一个处理请求的子进程或线程的池。
// 通常,httpd不应该被直接调用,而应该在类Unix系统中由 apachectl 调用
// man apache2 中介绍
// apache2 is the Apache HyperText Transfer Protocol (HTTP) server program.
// It is designed to be run as a standalone daemon process. When used like
// this it will create a pool of child processes or threads to handle requests.
// In general, apache2 should not be invoked directly,
// but rather should be invoked via /etc/init.d/apache2 or apache2ctl.
// The default Debian config-uration requires environment variables
// that are defined in /etc/apache2/envvars and are not available if apache2 is started directly.
// However,apache2ctl can be used to pass arbitrary arguments to apache2.
//
// apache2ctl = apache2 ConTroL
//
apache2ctl -restart
apache2ctl -stop
apache2ctl -t
// 详细见 man apache2
分享到:
相关推荐
首先通过`sudo apt-get install mysql-server`安装MySQL服务器,接着修改配置文件`/etc/mysql/my.cnf`,取消`bind-address`的绑定,以便远程访问MySQL。安装过程中需要设置root用户的密码,并通过`sudo /etc/init.d/...
本文总结了 Ubuntu 下配置 Apache 服务器的方法和步骤,包括安装 Apache、配置网站目录、启用 mod_rewrite 模块、重启服务器等步骤,并对 MySQL 的安装和配置进行了详细的讲解。 一、安装 Apache 在 Ubuntu 中安装...
6. 重启Apache以应用更改: ``` apachectl restart ``` 最后是MySQL的安装,Ubuntu 10.04可以通过apt-get进行安装: 1. 更新系统包列表: ``` sudo apt-get update ``` 2. 安装MySQL Server: ``` sudo apt-get ...
### Ubuntu + Apache2 + PHP5 + MySQL5.0 安装指南 在本文中,我们将详细介绍如何在 Ubuntu 系统上安装 LAMP (Linux、Apache、MySQL 和 PHP) 堆栈,具体版本为 Ubuntu + Apache2 + PHP5 + MySQL5.0。LAMP 是一种...
2. 重启Apache服务 /etc/init.d/apache2 restart 或 sudo /etc/init.d/apache2 restart 3. 停止Apache服务 /etc/init.d/apache2 stop 或 sudo /etc/init.d/apache2 stop 四、虚拟目录配置 虚拟目录的作用是...
安装完这个模块后,需要重启Apache使更改生效: ```bash sudo /etc/init.d/apache2 restart ``` 为了验证PHP是否正常工作,可以在`/var/www`目录下创建一个名为`testphp.php`的文件,并编辑它: ```bash gksudo ...
- 使用该脚本来启动、停止或重启 Apache 服务。 - Web 根目录: `/var/www/html` - 这是 Apache 默认提供的文档根目录,通常用来存放网站的 HTML 文件等资源。 2. **源码编译安装方式:** - 安装目录: `/usr/...
接下来,我们需要重启Apache服务,使改动生效: ```bash sudo systemctl restart apache2 ``` 为了验证PHP5和MySQL是否正常工作,创建一个名为`info.php`的文件到`/var/www/html/`目录(Apache的默认文档根目录)...
安装和配置完成后,通过`sudo /etc/init.d/apache2 restart`命令重启Apache2服务。然后在浏览器中输入本机IP地址(如`http://192.168.1.1/`),如果看到Apache2的欢迎页面,那就说明安装和配置成功了。 请注意,...
重启Apache以应用更改。 4. 安装phpMyAdmin:将phpMyAdmin4.5.3.1解压到Apache的“htdocs”目录下,例如"C:\Apache24\htdocs\phpMyAdmin"。编辑config.inc.php文件,配置数据库连接信息,如数据库名、用户名、密码...
- **配置Apache**:启用PHP模块,如在Ubuntu/Debian中使用`sudo a2enmod php7.x`(根据你的PHP版本替换x),然后重启Apache服务:`sudo systemctl restart apache2`。 - **测试安装**:在Web浏览器中访问`...
本文旨在详细介绍如何在 Ubuntu 8.04 服务器上进行有效的配置和优化,特别是针对 J2EE 应用环境下的 Apache2、Tomcat5.5、MySQL、LDAP 和 mod-jk 等软件。这些配置将有助于提高系统的稳定性和性能。 #### 一、...
6. 重启Apache,使用命令`sudo systemctl restart apache2`(Ubuntu)或`systemctl restart httpd`(CentOS)。 7. 安装MySQLfront,下载并按照官方指南进行安装,通常包括解压、配置和启动程序。 8. 测试LAMP环境,...
安装完成后,重启Apache服务以使更改生效: ```shell sudo service apache2 restart ``` ### 第四步:配置PHPmyadmin PHPmyadmin是一个基于Web的MySQL管理工具,允许用户通过浏览器界面管理数据库。在Apache的...