MIRCX IRC Network
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
 
 

Display results as :
 


Rechercher Advanced Search

Web Applications
install Joomla Wordpress Phpbb Drupal FluxBB PunBB osCommerce simple-machines MYBB moodle vBulletin Dolphin-v.7.1.1 PHPNUKE XOOPS
Services
install BorkNet Services X3 Services Anope Atheme Services Srvx IRC Srervices
IRCD
install Snircd IRCU INSPIRCD UNREAL Nefarious Bircd Bahamut Asuka Charybdis
TCL SCRIPT
TCL SCRIPT FOR EGGDROP Allprotection4.7 Antiproxy
Bots
Bots install FishBot bobot++ Eggdrop janus Omega Security Services Botnix Bopm SupyBot PyLink Hopm
Latest topics
» מדריך גירסה INSPIRCD V4
Guide install Denora on ubuntu EmptySat Aug 05, 2023 2:09 am by Chief

» mIRCx IRC Network Config
Guide install Denora on ubuntu EmptySat Jul 15, 2023 9:51 pm by Chief

» ircu2.10.12-pk with dnsbl
Guide install Denora on ubuntu EmptyFri Mar 10, 2023 2:22 pm by Admin

» Guide install PyLink on New version FreeBSD
Guide install Denora on ubuntu EmptyThu Dec 15, 2022 9:39 pm by Chief

» מדריך התקנה PBot על מערכת הפעלה FreeBsd-12
Guide install Denora on ubuntu EmptyMon Dec 05, 2022 5:44 am by Chief

» install Nefarious2 && X3 IRC Services in FreeBsd
Guide install Denora on ubuntu EmptySat Nov 12, 2022 3:12 pm by Chief

» help problem with adduser in Freebsd 12
Guide install Denora on ubuntu EmptyFri Nov 11, 2022 9:06 pm by Chief

» מדריך פקודות והתקנה בסרביס X3
Guide install Denora on ubuntu EmptyFri Oct 28, 2022 1:43 pm by Chief

» מדריך הגדרות WebIRC in Nefarious2
Guide install Denora on ubuntu EmptyThu Apr 07, 2022 4:45 am by Chief

March 2024
MonTueWedThuFriSatSun
    123
45678910
11121314151617
18192021222324
25262728293031

Calendar Calendar

Affiliates
free forum

Affiliates
free forum


Guide install Denora on ubuntu

Go down

Guide install Denora on ubuntu Empty Guide install Denora on ubuntu

Post  Chief Fri May 23, 2014 4:57 am

Guide install Denora on ubuntu
Hello guys today i go learn to you about how we can run Denora on ubuntu and i explain step by step ok we start
step1
inside to Terminal in root and install this
Code:

apt-get install mysql-server mysql-client mysql-common
apt-get install mysql-server mysql-client mysql-common libmysqlclient-dev
step2
after this create in mysql new database this look like this
Guide install Denora on ubuntu Screen32
step3
after you create in database new name you need download denora from two options the one from this link https://github.com/denora/denora/releases or from codes
Code:

git clone https://github.com/denora/denora.git
Guide install Denora on ubuntu Screen33
step4
after download denora you need config files then in this you have two options one with mysql and two without mysql this look like this
Code:

cd denora
./Config
./Config --without-mysql
make
make install
chmod -R  /home/yourname/stats
chmod -R g+rw /home/yourname/stats
Guide install Denora on ubuntu Screen40
in config files do you have options to select with mysql or not
when you select in config you have some question like this
Guide install Denora on ubuntu Screen35
Guide install Denora on ubuntu Screen36
step5
after config and answer to  question you need fix your conf and you need to do
Code:

cd
cd stats
mv example.conf denora.conf
gedit denora.conf
Guide install Denora on ubuntu Screen41
and you need fix some options in conf and create new block link
Code:

<link name="stats.penguin.omega.org.za"
      ipaddr="IP"
      port="7005"
      allowmask="IP"
      timeout="300"
      #ssl="gnutls"
      bind=""
      statshidden="no"
      hidden="no"
      sendpass="pass"
      recvpass="pass">
fix in denora.conf
Code:

connect {
    // required tokens
    hostname    IP;
    port        7005;
    passwd      "zobi";
    protocol    inspircd12;

    // optional tokens
    bindhost    IP;
identity {
    // required tokens
    name        "Stats.penguin.omega.org.za";
    desc        "Statistics for IRC Networks";
    user        "Rif@Stats.penguin.omega.org.za";
    language    1;
statserv {
    // required tokens
    nick        "StatServ2";
    real        "Stats Server";

    // optional tokens
    #aliasnick   "StatServ3";
    #aliasreal   "Stats Server Forwarder";
    autoop;
    automode    "+ov";
    #partonempty;
};
netinfo {
    // required tokens
    name        "Omega";

    // optional tokens
    numeric     "3XB";
options {
    // optional tokens
    keeplogs     7;
    logchan      "#denora";
admin {
    // required tokens
    name        "darksis";
    passwd      "superpass";
    hostname    "*@*";
if you used with mysql then fix like this
Code:

sql {
    // required tokens
    type        mysql;
    host        localhost;
    user        root;
    passwd      YOURPASS;
    name        denora;

    // optional tokens
    sock        /tmp/mysql.sock;
    port        3306;
    retryonlost 0;
    retries     6;
    retrygap    10;
    disableopt;
    keepusers;
    keepservers;
};
or if you used with Nefarious1.3 then you need create link in ircd.conf and fix some options in denora.conf
Nefarious.conf
Code:

Connect {
 name = "stats.mIRCxNet.org";
 host = "IP";
 password = "PASS";
 port = 4400;
 class = "Server";
 hub = "*";
};
and fix in denora.conf
Code:

connect {
    // required tokens
    hostname    IP;
    port        4400;
    passwd      "PASS";
    protocol    nefarious13;
and protocol for Nefarious 1.3
Code:

 numeric     "AX";
step6
after you fix your config you need write in folder stats
like this
Code:

./mydbgen
Guide install Denora on ubuntu Screen42
if you used with inspircd or unrealircd then write what version you used
Guide install Denora on ubuntu Screen43
Guide install Denora on ubuntu Screen44
step6
after you can run your denora
Code:

./denorarc start
Guide install Denora on ubuntu Screen45
more help about install denora on Fedora if you try run Denora in system and you see problem like this
Guide install Denora on ubuntu Ffff10
then dont worry inside to root and write like this
Code:

yum -y install make gcc mariadb-devel mariadb-libs mariadb-server
yum -y install "perl(Test::Deep)" "perl(Test::More)"
systemctl start mariadb.service
you can run webmin on fedora and create database from there
Good luck
Guide By mIRCx IRC Network
itzik Roni nadavs
thanks and credit to GladiaTeur
for question
mircx123@gmail.com
Chief
Chief
Admin

מספר הודעות : 268
Join date : 2011-12-09
מיקום : mIRCx IRC Network

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum