安装LibEvent
2025年6月26日小于 1 分钟
安装LibEvent
vent 是php ,libevent是Linux内核 首先需要安装libevent
wget -c https://github.com/libevent/libevent/releases/download/release-2.1.12-stable/libevent-2.1.12-stable.tar.gztar -zxvf libevent-2.1.12-stable.tar.gz && cd libevent-2.1.12-stable
./configure --prefix=/usr/local/libeventmake && make install
为了防止运行时动态库链接问题
在/etc/ld.so.conf 最后面加上 /usr/local/libevent/lib
vim /etc/ld.so.conf立即生效
/sbin/ldconfigdocker容器中没有
echo "/usr/local/libevent/lib" >> /etc/ld.so.conf && /sbin/ldconfig