Jump to content

Rand

Members
  • Content Count

    13
  • Joined

  • Last visited

  • Days Won

    1

Rand last won the day on January 18 2015

Rand had the most liked content!

About Rand

  • Rank
    Member

Profile Information

  • Github
    Rand
  1. http://herc.ws/wiki/Getting_Started
  2. Rand

    Hello Guys xD

    Hey i think it would help u https://github.com/HerculesWS/Hercules/blob/master/doc/script_commands.txt goodluck)
  3. use sudo yum --enablerepo=remi install mysql-devel or yum --enablerepo=remi install mysql-devel
  4. Try this: You should see the new user in the User overview. Global privileges should say "Usage".
  5. try chmod a+x configure./configure if no u need to convert ./configure to unix file format yum install dos2unixdos2unix ./configure mb dos2unix install try only convert
  6. use this http://herc.ws/wiki/Installation_%28CentOS%29
  7. use https://github.com/HerculesWS/Hercules/blob/master/doc/item_bonus.txt bonus2 bSPRegenRate,1,10000; bonus2 bHPRegenRate,1,10000;
  8. no matter but if restart mysql this setting resets. Variant 2. U have full access to mysql server and u can enter SSH as a root user: run below command: #mysql or mysql -u root -p than enter the password 1) Check time_zone* tables in mysql database. mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql 2) To change / update timezone set global time_zone = timezone; Example: set global time_zone = "Asia/Calcutta"; restart mysql. You can change the time zone as per the requirement without root user. set time_zone = timezone; You can see the full list of possible values for ZONEINFO at /usr/share/zoneinfo or VPS. From an SSH: ls /usr/share/zoneinfo/ Then simply delete the current timezone: rm /etc/localtime And replace it with a symbolic link to the new timezone from /usr/share/zoneinfo. For example if your chosen zone is Pacific time: ln –s /usr/share/zoneinfo/PST8PDT /etc/localtime Or you can use the tzselect command: You may need to remove the existing symlink before using tzselect rm -f /etc/localtime than use tzselect You can make this change permanent for yourself by appending the line TZ='timezone'; export TZ to the file '.profile' in your home directory; then log out and log in again. Synchronizing time with NTP server The first step is to make sure you have the ntp program installed. Do a: which ntpdate Once ntp is installed synchronize your computer clock with: ntpdate pool.ntp.org If ntp is not install, you may run this to install ntp yum install ntp To set time and date date MMDDhhmmYYYY MM - Two digit month number DD - Two digit date hh - Two digit 24 hour system hour mm - Two digit minute YYYY - Four digit year code
  9. try: MySQL: SET time_zone='-03:00';"-03:00" - timezone u need. if no what os at your vps?
  10. try to: make clean./configuremake sql or if u have 64 bit system: make clean./configure --enable-64bitmake sql
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.