Questions tagged «apache2»

使用此标签可以解决有关在Ubuntu或Ubuntu官方衍生版本之一上配置和使用Apache的问题。

14
Apache错误“无法可靠地确定服务器的标准域名”
当我使用以下命令重新启动Apache服务器时 sudo /etc/init.d/apache2 restart 我收到以下错误: Restarting web server apache2 apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName ... waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName 服务器使用的是127.0.1.1而不是127.0.0.1吗?是什么导致此错误?
431 server  apache2 

12
如何重新启动Apache?
我从SLES切换到Ubuntu,现在我想重新启动本地服务器。在SLES中,我使用了: rcapache2 restart 但这似乎在Ubuntu中不起作用。:( 如何重新启动Apache?
249 server  apache2  services 



5
找到正确的php.ini文件
我目前正在尝试找到正确的php.ini文件进行编辑,然后重新启动apache,以便进行更改,而我感到很困惑。 我发现了三个不同的php.ini文件(不知道为什么有三个),这就是我找到文件的方式 $ sudo find / -name php.ini /etc/php5/cli/php.ini /etc/php5/apache2/php.ini /etc/php5/cgi/php.ini 我也做过... $ sudo php -i | grep 'Configuration File' Configuration File (php.ini) Path => /etc/php5/cli Loaded Configuration File => /etc/php5/cli/php.ini 我将所有它们都更改了(只是为了确定)我想要的设置。 我使用重新启动了Apache sudo service apache2 restart 结果... * Restarting web server apache2 我重新加载了页面,结果显示php.ini文件未更新。 我知道这是因为我曾经 echo ini_get('post_max_size'); 原来应该更改为20M,但仍然只有2M 我尝试重新启动计算机,以为这可能会停止apache服务器并使用正确的设置重新加载php.ini文件,但是可惜尝试也失败了。 是否有可能会干扰另一个php.ini文件?
168 apache2  php 


9
如何从主机访问Apache(在VirtualBox客户机上)?
我在Ubuntu VM上安装了Apache。当我进入客户机并加载Firefox时,我可以看到当我浏览到本地主机时Apache运行正常。 我想通过主机访问同一页面。我尝试使用访客的IP地址,但没有任何反应。理想情况下,我希望设置Windows 7(主机)以http://guestserver.com在客户机上请求Apache服务器。我怎样才能做到这一点?

6
永久删除apache2
看来一个简单的方法apt-get remove apache2并没有完全消除,apache2因为我仍然可以在运行时在其中一个进程中看到它top。如何完全删除apache2其ubuntu服务器上的? 确实没有删除它: ~# which apache2 /usr/sbin/apache2 ~# whereis apache2 apache2: /usr/sbin/apache2 /etc/apache2 /usr/lib/apache2 /usr/share/apache2 /usr/share/man/man8/apache2.8.gz 但是当我再做apt-get remove apache2一次时: # apt-get remove apache2 Reading package lists... Done Building dependency tree Reading state information... Done Package apache2 is not installed, so not removed 0 upgraded, 0 newly installed, 0 to …
109 apt  apache2 


5
Apache:由于缺少搜索权限,访问被拒绝
我知道这个问题经常被问到,但是我看到的解决方案对我没有用。 我只启用了一个虚拟主机,并且试图启用对不在文档根目录下的文件夹的访问 ServerAdmin webmaster@localhost DocumentRoot /var/www/html Alias /movies /home/username/Videos/Movies <Directory /home/username/Videos/Movies/> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory> 我设定/etc/apache2/envvars如下 export APACHE_RUN_USER=www-data export APACHE_RUN_GROUP=public 我确保/ home / username / Videos /及其子文件夹归所有者所有username:public,将权限设置为777(在775不起作用之后),并确保该用户www-data属于group public。 现在,当我浏览到http://localhost/movies我得到 [Mon Apr 21 11:28:14.971844 2014] [core:error] [pid 1385:tid 140067725104896] (13)Permission denied: [client 127.0.0.1:46603] AH00035: access to …

11
Apache无法重新启动
尝试使用以下命令从终端重新启动apache: sudo service apache2 restart 执行该命令时出现以下错误: Job for apache2.service failed. See "systemctl status apache2.service" and "journalctl -xe" for details. 在执行“ systemctl status apache2.service”时得到以下输出 apache2.service - (null) Loaded: loaded (/etc/init.d/apache2) Active: failed (Result: exit-code) since Sat 2015-05-30 02:22:41 IST; 12s ago Docs: man:systemd-sysv-generator(8) Process: 4866 ExecStart=/etc/init.d/apache2 start (code=exited, status=1/FAILURE) apache error.log …
71 apache2  restart 

5
升级php和apache后如何解决phpmyadmin not found问题?
最近,我在Ubuntu Desktop 12.04.3 LTS中安装了PHP,Apache,MySQL,phpMyAdmin,python,以将其用作LAMP服务器。下面是我用来安装这些命令的命令: 1: sudo passwd 2: su 3: apt-get install php5 4: apt-get install apache2 5: apt-get install mysql-server mysql-client 6: apt-get install phpmyadmin 7: apt-get install python 8: apt-get install python-mysqldb 9: ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf 10: /etc/init.d/apache2 restart 然后一切正常。LAMP服务器运行良好。然后我想升级整个LAMP服务器,我的意思是PHP,Apahce,MySQL,phpMyAdmin等。然后我在google中搜索并获得了一些ppa,这些ppa获得了这些软件的最新版本。然后我添加了这些ppa。PPA链接: 1. https://launchpad.net/~tuxpoldo/+archive/phpmyadmin 2. https://launchpad.net/~ondrej/+archive/mysql-5.6 3. https://launchpad.net/~ondrej/+archive/apache2 4. …
71 apache2  php  lamp  phpmyadmin 

7
升级到16.04。php7在浏览器中不起作用
我刚刚从14.10升级到16.04,并且不确定如何在Apache中配置PHP 7。我确实修改了php7.0.conf文件以取消注释最后几行,重新启动了apache2,没有任何更改。 我需要更改apache2设置以允许php吗? PHP从命令行运行,因此我确定PHP已正确安装。 另外,我在phpadmin上收到一条错误消息,说缺少mbstring。
69 upgrade  apache2  php  16.04 

2
找不到httpd.conf
我已经在笔记本电脑上安装了Ubuntu 14.04,并安装了Apache 2(版本2.4.7)和PHP 5。 我找不到httpd.conf。我需要更改它,因为当我尝试打开.php页面时,我看到一个下载框。 我应该如何进行?
67 14.04  apache2  php  webserver 

2
/ var / www为什么不拥有chmod 777
在本地主机上开发页面时,有时会出现“权限被拒绝”错误,可以通过运行来解决chmod -R 777 /var/www。但是,人们告诉我,出于安全原因,这不是一个好主意。 为什么不/var/www应该使用777的chmod?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.