-
Posts
1,866 -
Joined
-
Last visited
-
Days Won
333 -
Donations
20.00 USD
Content Type
Profiles
Forums
Events
Store
Articles
Gallery
Blogs
Downloads
Musicbox
Everything posted by _.:=iTake=:._
-
How to Install & Configure Redis-Server on Centos/Fedora Server
_.:=iTake=:._ replied to _.:=iTake=:._'s topic in Tutorials
WARNING you have Transparent Huge Pages (THP) support enabled On Linux I solved this running those on HOST: echo never > /sys/kernel/mm/transparent_hugepage/enabled echo never > /sys/kernel/mm/transparent_hugepage/defrag -
How to Install & Configure Redis-Server on Centos/Fedora Server
_.:=iTake=:._ replied to _.:=iTake=:._'s topic in Tutorials
Errors and Fixes: WARNING: /proc/sys/net/core/somaxconn is set to the lower value of 128 To fix this warning you have to set a new config to /etc/rc.local so that the setting will persist upon reboot $~: sudo nano /etc/rc.local Add this: sysctl -w net.core.somaxconn=65535 When you reboot the next time, the new setting will be to allow 65535 connections instead of 128 as before -
‘Redis’ is an Open source key-value data store, shared by multiple processes, multiple applications, or multiple Servers. Key values are more complex types like Hashes, Lists, Sets or Sorted Sets. Let’s have a quick look on the installation steps of “Redis” Here we go… Step – 1 First of all we need to switch to superuser & install dependencies: [iCODE] su yum install make gcc wget tcl [/iCODE] Step-2 Download Redis Packages & Unzip. This guide is based on installing Redis 2.8.3: wget [Hidden Content] tar xzvf redis-2.8.3.tar.gz Step-3 Compiling and Installing Redis from the source: cd redis-2.8.3 make make install Step- 4 Starting Redis server by executing the following command without any argument: redis-server Step-5 Check if Redis is working. To check, send a PING command using redis-cli. This will return ‘PONG’ if everything is fine. redis-cli ping PONG Step-6 Add Redis-server to init script. Create a directory to store your Redis config files & data: mkdir -p /etc/redis mkdir -p /var/redis Also we need to create a directory inside “/var/redis” that works as data & a working directory for this Redis instance. mkdir /var/redis/redis Step-7 Copy the template configuration file you’ll find in the root directory of Redis distribution into /etc/redis/ cp redis.conf /etc/redis/redis.conf Edit the configuration file, make sure to perform the following changes: Set daemonize to yes (by default it’s set to ‘No’). Set the pidfile to /var/run/redis.pid Set your preferred loglevel Set the logfile to /var/log/redis.log Set the dir to /var/redis/redis Save and exit from the editor Step-8 Add the Redis init script. vi /etc/init.d/redis And paste the following codes to it #!/bin/sh # # chkconfig: 345 20 80 # description: Redis is an open source (BSD licensed), in-memory data structure store, used as database, cache and message broker. # Source function library. . /etc/init.d/functions REDISPORT=6379 EXEC=/usr/local/bin/redis-server CLIEXEC=/usr/local/bin/redis-cli PIDFILE=/var/run/redis.pid CONF="/etc/redis/redis.conf" case "$1" in start) if [ -f $PIDFILE ] then echo "$PIDFILE exists, process is already running or crashed" else echo "Starting Redis server..." $EXEC $CONF fi ;; stop) if [ ! -f $PIDFILE ] then echo "$PIDFILE does not exist, process is not running" else PID=$(cat $PIDFILE) echo "Stopping ..." $CLIEXEC -p $REDISPORT shutdown while [ -x /proc/${PID} ] do echo "Waiting for Redis to shutdown ..." sleep 1 done echo "Redis stopped" fi ;; restart) stop start ;; *) echo "Please use start or stop as first argument" ;; esac exit 0 Save the file and exit from the editor. Step-9 Give appropriate permission to the init script chmod u+x /etc/init.d/redis Step-10 To run the Redis server at startup we need to add it to the chkconfig list chkconfig --add redis chkconfig --level 345 redis on Step-11 Finally we are ready to start the Redis Server. /etc/init.d/redis start The redis server will start automatically on system boot. Conclusion: ‘Redis’ also supports datatypes such as Transitions, Publish and Subscribe. ‘Redis’ is considered more powerful than ‘Memcache’. It would be smart to bring ‘Redis’ into practice and put ‘Memcache’ down for a while. We provide one-stop solution by utilizing Redis server with Rails , PHP applications and deploy in cloud services such as AWS to make sure that the application is fully scalable. You can also check the compression of Memcached vs Redis, to know more information on which one to pick for Large web apps? Source: [Hidden Content]
-
This is a quick guide on how to install both the Redis PHP extension as well as the daemon via SSH Installing the Redis daemon: CentOS 6/RHEL 6 rpm -ivh [Hidden Content] rpm -ivh [Hidden Content] yum -y install redis --enablerepo=remi --disableplugin=priorities chkconfig redis on service redis start CentOS 7/RHEL 7 rpm -ivh [Hidden Content] rpm -ivh [Hidden Content] yum -y install redis --enablerepo=remi --disableplugin=priorities systemctl enable redis systemctl start redis Installing the Redis PHP extension for PHP5.5, PHP5.6 and PHP7.0. for phpver in 55 56 70 ; do cd ~ wget [Hidden Content] tar -xvf redis-*.tgz cd redis* /opt/cpanel/ea-php$phpver/root/usr/bin/phpize ./configure --with-php-config=/opt/cpanel/ea-php$phpver/root/usr/bin/php-config make && make install echo 'extension=redis.so' >> /opt/cpanel/ea-php$phpver/root/etc/php.d/redis.ini cd ~ rm -rf redis* done /scripts/restartsrv_httpd /scripts/restartsrv_apache_php_fpm All done! Check to make sure the PHP extension is loaded in each version of PHP: for phpver in 55 56 70 ; do echo "PHP $phpver" ; /opt/cpanel/ea-php$phpver/root/usr/bin/php -i |grep "Redis Support" done Output should be: PHP 55 Redis Support => enabled PHP 56 Redis Support => enabled PHP 70 Redis Support => enabled Source: [Hidden Content]
-
Redis stands for Remote DIctionary Server and it is a key-value NoSQL database. Almost all languages including PHP have Redis bindings. In this guide, we will show you how to install Redis server and Redis PHP extension on a cPanel based servers so you can use Redis as a cache backend for your WordPress, Laravel, Drupal or any other PHP based application. 1. Install Redis server Redis is not available in the default CentOS repositories, so we need to enable the EPEL repository and install the Redis package from there. 2. Install the EPEL Repository on CentOS 6 To install the EPEL repository please run the following command: rpm -Uvh [Hidden Content] 3. Install the Redis Package Using Yum Once the repository is enabled, you can install the redis package using Yum: sudo yum install redis 4. Start and Configure the Redis service Start the Redis service and enable it to start on boot with the following commands: service redis restart chkconfig --level 345 redis on 5. Install the EPEL Repository on CentOS 7 Same as with CentOS 6 first install the EPEL repository: yum install epel-release Once the repository is enabled, install the Redis package using Yum: yum install redis Start the Redis service and enable it to start on boot with the following commands: systemctl restart redis systemctl enable redis 6. Install Redis PHP extension Redis PHP extension is not available in EasyApache so we will install the Redis PHP extension using the pecl command. We will also enable Igbinary support which is a drop in replacement for the standard PHP serializer. 7. Install the Redis PHP Extension EasyApache 3 To install the Redis PHP extension issue the following command: yes | pecl install igbinary igbinary-devel redis once the build process is completed, verify the installation using the following command: php -m | grep redis and you should see redis, if there is no output, it means that Redis extension is not installed/loaded. 8. Install the Redis PHP Extension EasyApache 4 EasyApache 4 supports multiple versions of PHP so we need to install the Redis PHP extension on each PHP version. Run the following commands to install and enable the Redis PHP extension on each PHP version you have installed on your server: 9. Install and Enable the Redis PHP Extension on PHP 5.4 yes | /opt/cpanel/ea-php54/root/usr/bin/pecl install igbinary igbinary-devel redis /opt/cpanel/ea-php54/root/usr/bin/php -m | grep redis 10. Install and Enable the Redis PHP Extension on PHP 5.5 yes | /opt/cpanel/ea-php55/root/usr/bin/pecl install igbinary igbinary-devel redis /opt/cpanel/ea-php55/root/usr/bin/php -m | grep redis 11. Install and Enable the Redis PHP Extension on PHP 5.6 yes | /opt/cpanel/ea-php56/root/usr/bin/pecl install igbinary igbinary-devel redis /opt/cpanel/ea-php56/root/usr/bin/php -m | grep redis 12. Install and Enable the Redis PHP Extension on PHP 7.0 yes | /opt/cpanel/ea-php70/root/usr/bin/pecl install igbinary igbinary-devel redis /opt/cpanel/ea-php70/root/usr/bin/php -m | grep redis 13. Install and Enable the Redis PHP Extension on PHP 7.1 yes | /opt/cpanel/ea-php71/root/usr/bin/pecl install igbinary igbinary-devel redis /opt/cpanel/ea-php71/root/usr/bin/php -m | grep redis That’s it. You have successfully installed Redis server and Redis PHP extension on your cPanel VPS Source: [Hidden Content]
-
the old torrents are cached on itorrents.org, this isn;t an error, files uploaded recently shouldn't send you to cache page... in the link , i see you are downloading a movie from 2003, there is a possibility that torrent might no longer e available on cache server...
-
Quick Tips On How to Become Verified Uploader
_.:=iTake=:._ replied to _.:=iTake=:._'s topic in Verified Uploader Request
we don't verify accounts at 1337x... -
is anyone able to help out with rss downloading of certain torrents plz
_.:=iTake=:._ replied to djwayne1985's question in Troubleshooting
Have you tried creating a custom rss link and then adding it.. take a look here [Hidden Content] -
Yasmin Hot Pakistan Girl In Salwar Nude Selfie Leak
_.:=iTake=:._ replied to SunRiseZone's topic in Adult Images
Pakistani too hot... -
Fatima Hot Cute Lips Full Nude HD Leak + Video
_.:=iTake=:._ replied to SunRiseZone's topic in Adult Images
Only working video link so far and contains a woman bathing.. -
Afsa Desi Hot College Girl Full Nude Leak + Video
_.:=iTake=:._ replied to SunRiseZone's topic in Adult Images
You don't have permission to access /download/chdDCq/18266611dd14bc24358771d198ed3113/Afsa-Desi-Hot-College-Girl-Full-Nude-Leak-Video.mp4 on this server. -
Shifa Hot Paki Private Nude Hd Leak + SexTape
_.:=iTake=:._ replied to SunRiseZone's topic in Adult Images
You don't have permission to access /download/pCgOMx/18266611dd14bc24358771d198ed3113/Shifa-Hot-Paki-Private-sextape-Leak.mp4 on this server. -
oh no.. arab girls too
-
Chhaya Hot Teen NRI Girl Some Bedroom Nude
_.:=iTake=:._ replied to SunRiseZone's topic in Adult Images
Seen enough here LOL... -
this girl fine.. waaaa :love:
-
I love hair shape by the way, glad not all these girls are fat..
-
Kaira Hot NRI 233 Nude HD Selfie + Leak Video
_.:=iTake=:._ replied to SunRiseZone's topic in Adult Images
Oops! This video was removed for violating our TOS. -
Maahi Hot Desi Couple 125 HD Nudes Leak
_.:=iTake=:._ replied to SunRiseZone's topic in Adult Images
oh boi.... :love: -
Barkha Desi Hot College Girl Some Selfies & Pic
_.:=iTake=:._ replied to SunRiseZone's topic in Adult Images
maan.... those boobs though... -
NOTES: This release contains all covers , front , back and disc covers. MP3 NEW RELEASES 2018 WEEK 46 COVERS Barbra Streisand - Walls Boy George - Life Greatest MOD And Northern Soul - Various Joji - Ballads 1 Muse - Simulation Theory Now That's What I Call Easy - Various Now That's What I Call Love - Various Now That's What I Call Music! 101 - Various Razorlight - Olympus Sleeping Robyn - Honey Sheridan Smith - A Northern Soul Sing Your Heart Out Disney - Various The Kingdom Choir - Stand By Me Thom Yorke - Suspiria Tom Odell - Jubilee Road Tory Lanez - Love Me Now UK Top 40 Singles 09-11-2018 Support us by donating BitCoin: 1PPocQUk1xqHY44dM1inCaUGTsahLFwWVM [Hidden Content]
-
[In Progress] Upcoming Notifications
_.:=iTake=:._ replied to Prom3th3uS's topic in Upcoming Features
Project currently been developed- 1 reply
-
- 4
-
-
This feature is currently under development
-
magnet link unable to load unable to parse
_.:=iTake=:._ replied to kenho63's topic in Issues with Torrents
Have you tried uninstalling the torrent app or changing browsers, it might fix your issue. Or you might want to stick to the .torrent files until we have more info on why you are getting this errors. -
magnet link unable to load unable to parse
_.:=iTake=:._ replied to kenho63's topic in Issues with Torrents
it know this error, but this screenshot doesn't help, describe how you get this error, then we can find out how to fix it.. provide a link to the torrent or page giving you this error.. i just tried several torrents and got nothing no errors using magnet -
magnet link unable to load unable to parse
_.:=iTake=:._ replied to kenho63's topic in Issues with Torrents
So there was an error when you try to download torrents from a specific uploader's profile page. You will receive a an error saying the magnet url can't be parsed but this error has been fixed then.. If this isn't what you are referring to, can you please tell us how to reproduce the error, or send a screenshot of the order or send us a specific link to the torrent giving you the error.. Thanks...