CentOS中设置系统级代理

YUM代理设置
 
编辑/etc/yum.conf,在最后加入
# Proxy
proxy=http://username:password@proxy_ip:port/
 
也可以使用proxy_username和proxy_password来配置代理的用户名和密码
 
这样的配置完成后,所有的用户在使用yum时,都会使用代理,可以说是全局代理。
 
如果需要为单独的用户配置代理,可以在用户的~/.bash_profile中设置。
 
Wget的代理设置
 
编辑/etc/wgetrc,在最后加入
# Proxy
http_proxy=http://username:password@proxy_ip:port/
ftp_proxy=http://username:password@proxy_ip:port/
 
系统全局代理
 
如果需要为某个用户设置一个系统级的代理,可以在~/.bash_profile中设置:
 
http_proxy="http://username:password@proxy_ip:port"
export_http_proxy
 
上面的设置只对某个用户生效,如果要对所有系统用户生效,写在/etc/profile中就可以了。

( ! ) Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 169
Call Stack
#TimeMemoryFunctionLocation
10.0002412784{main}( ).../index.php:0
20.06174262928Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.06174262928Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.274611454016Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.276011478456Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.276911533784Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.277211561184require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.289711960816K2ControllerItem->execute( ).../k2.php:64
90.289711960816K2ControllerItem->display( ).../BaseController.php:710
100.302212611520K2ControllerItem->display( ).../item.php:78
110.302212611520K2ControllerItem->display( ).../controller.php:19
120.308412982560Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.310813002928K2ViewItem->display( ).../ViewController.php:102
140.420615815704K2ViewItem->display( ).../view.html.php:742
150.420615815704K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.423715988640include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701

( ! ) Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
Call Stack
#TimeMemoryFunctionLocation
10.0002412784{main}( ).../index.php:0
20.06174262928Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.06174262928Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.274611454016Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.276011478456Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.276911533784Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.277211561184require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.289711960816K2ControllerItem->execute( ).../k2.php:64
90.289711960816K2ControllerItem->display( ).../BaseController.php:710
100.302212611520K2ControllerItem->display( ).../item.php:78
110.302212611520K2ControllerItem->display( ).../controller.php:19
120.308412982560Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.310813002928K2ViewItem->display( ).../ViewController.php:102
140.420615815704K2ViewItem->display( ).../view.html.php:742
150.420615815704K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.423715988640include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top