Ubuntu12.04打印系统(CUPS)Web管理界面403 Forbidden的问题

文章目录
  1. 1. 问题
  2. 2. 解决办法
    1. 2.1. 办法一
    2. 2.2. 办法二

问题

通过如下命令安装完成CUPS后,登陆http://localhost:631/admin出现403 Forbidden错误.

1
sudo apt-get install cups

解决办法

参考:
http://ubuntuforums.org/showthread.php?t=1446262

办法一

编辑配置文件/etc/cups/cupsd.conf, 在所有 <Location> 内添加 Allow all

办法二

执行命令

1
sudo cupsctl --remote-admin

然后重启CUPS服务器

1
sudo /etc/init.d/cups restart