Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - bullten

Pages: [1] 2 3 ... 31
1
mount proc -o remount,hidepid=0
systemctl restart polkit.service

2
Apache / Re: My apache has stopped working
« on: May 22, 2023, 11:46:51 AM »
systemctl status httpd -l

what is output of above command?

3
Nginx / Outdated Nginx
« on: May 22, 2023, 11:45:16 AM »
Will you please remove your existing repo as it install 1.14 version of nginx and start using below repo

[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

4
PHP / libavif is missing from php8.2 installation
« on: May 22, 2023, 11:13:20 AM »
Hello cwp team,

There is compilation error for php 8.2 as libavif is missing so I need to get it installed it using yum.

yum install libavif -y before compiling php 8.2

5
Information / Re: Roundcube version
« on: March 20, 2023, 12:44:48 PM »
what does the error log in roundcube states?

6
Information / Re: Roundcube version
« on: March 20, 2023, 11:46:29 AM »
which version you are trying to install?

7
Information / Re: Roundcube version
« on: March 16, 2023, 04:52:35 PM »
These commands are not working?

Quote
cd /usr/local/cwpsrv/var/services/
cp -R roundcube roundcube_old
wget https://github.com/roundcube/roundcubemail/releases/download/1.5.3/roundcubemail-1.5.3-complete.tar.gz
tar zxvf roundcubemail-1.5.3-complete.tar.gz
/usr/local/cwpsrv/var/services/roundcubemail-1.5.3/bin/installto.sh /usr/local/cwpsrv/var/services/roundcube

8
Information / Re: Virus on some websites hosted on cwp server
« on: October 30, 2022, 01:22:40 PM »
install imunify360

9
Addons / Re: How to install Mod XSendfile
« on: October 22, 2022, 06:49:04 AM »
Quote
yum install httpd-devel -y
git clone https://github.com/nmaier/mod_xsendfile.git
cd mod_xsendfile
/usr/local/apache/bin/apxs -cia mod_xsendfile.c
systemctl restart httpd

10
Installation / Re: How do I install TomEE instead of the tomcat-10
« on: September 09, 2022, 06:49:20 AM »
Quote
yum install java-11-openjdk -y


Quote
echo "export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-11.0.16.0.8-1.el7_9.x86_64" >> /etc/profile
. /etc/profile
env | grep JAVA_HOME

Quote
useradd -s /sbin/nologin tomcat

Quote
wget https://dlcdn.apache.org/tomee/tomee-9.0.0-M8/apache-tomee-9.0.0-M8-webprofile.tar.gz
tar zxvf apache-tomee-9.0.0-M8-webprofile.tar.gz

Quote
mv apache-tomee-webprofile-9.0.0-M8/ /opt/tomee/
chown -R tomcat:tomcat /opt/tomee/

Quote
ln -s /opt/tomee/apache-tomee-webprofile-9.0.0-M8 /opt/tomee/latest

Code: [Select]
vi /usr/lib/systemd/system/tomee.service
Quote
[Unit]
Description=TomEE 8 servlet container
After=network.target

[Service]
Type=forking

User=tomcat
Group=tomcat

Environment="JAVA_HOME=/usr/lib/jvm/jre"
Environment="JAVA_OPTS=-Djava.security.egd=file:///dev/urandom"

Environment="CATALINA_BASE=/opt/tomee/latest"
Environment="CATALINA_HOME=/opt/tomee/latest"
Environment="CATALINA_PID=/opt/tomee/latest/temp/tomee.pid"
Environment="CATALINA_OPTS=-Xms512M -Xmx1024M -server -XX:+UseParallelGC"

ExecStart=/opt/tomee/latest/bin/startup.sh
ExecStop=/opt/tomee/latest/bin/shutdown.sh

[Install]
WantedBy=multi-user.target


Code: [Select]
systemctl daemon-reload
systemctl enable tomee
systemctl start tomee

11
Updates / Re: Manually Updating MariaDB (from 10.2)
« on: September 06, 2022, 08:31:26 AM »
yes its stable to upgrade it.

12
Other / Re: Help with configuration
« on: September 06, 2022, 08:27:45 AM »
Did you try these?


max_execution_time 180
max_input_time 180
memory_limit 128M
post_max_size 32M
upload_max_filesize 32M

13
E-Mail / Re: How to use server with CWP as email server
« on: August 24, 2022, 01:43:02 PM »
It is possible and we have used that in past.

https://serverfault.com/questions/922197/can-i-use-multiple-selectors-for-opendkim

Did you try this?

14
Updates / Re: how to update curlib
« on: August 24, 2022, 09:36:14 AM »
did you try this?
Quote
rpm -ivh http://www.city-fan.org/ftp/contrib/yum-repo/rhel7/x86_64/city-fan.org-release-3-3.rhel7.noarch.rpm
yum install curl --enablerepo=city-fan.org

15
CentOS 7 Problems / Re: Increase (CWP Pro) CentOS 7 Root Space
« on: August 24, 2022, 09:30:20 AM »
did you purchase additional space from your provide to increase it?

Pages: [1] 2 3 ... 31