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 - Guide install phpmyAdmin on Centos 6 EmptySat Aug 05, 2023 2:09 am by Chief

» mIRCx IRC Network Config
guide - Guide install phpmyAdmin on Centos 6 EmptySat Jul 15, 2023 9:51 pm by Chief

» ircu2.10.12-pk with dnsbl
guide - Guide install phpmyAdmin on Centos 6 EmptyFri Mar 10, 2023 2:22 pm by Admin

» Guide install PyLink on New version FreeBSD
guide - Guide install phpmyAdmin on Centos 6 EmptyThu Dec 15, 2022 9:39 pm by Chief

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

» install Nefarious2 && X3 IRC Services in FreeBsd
guide - Guide install phpmyAdmin on Centos 6 EmptySat Nov 12, 2022 3:12 pm by Chief

» help problem with adduser in Freebsd 12
guide - Guide install phpmyAdmin on Centos 6 EmptyFri Nov 11, 2022 9:06 pm by Chief

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

» מדריך הגדרות WebIRC in Nefarious2
guide - Guide install phpmyAdmin on Centos 6 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 phpmyAdmin on Centos 6

Go down

guide - Guide install phpmyAdmin on Centos 6 Empty Guide install phpmyAdmin on Centos 6

Post  Chief Thu Sep 05, 2013 4:30 am

Guide install Phpmyadmin on Centos 6
Hello everybody Today we learn how we can install phpmyadmin and mysql php5 and Apache on System Centos linux.. before we open phpmyadmin we need install Apache and php5 and after mysql phpmyadmin.. we start!!
step1 install Apache for install we need inside to root and Beginner with to install
Code:

su -
sudo yum install httpd mod_ssl
sudo /etc/init.d/httpd start
if you see Error like that
Code:

Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name,
using 127.0.0.1 for ServerName
open httpd.conf
Code:

sudo nano /etc/httpd/conf/httpd.conf
and set your ServerName ip and port like that
Code:

ServerName 10.0.0.1:80
and after you did that save and write reload
Code:

sudo /etc/init.d/httpd reload
sudo /sbin/chkconfig httpd on
after you install Apache you can inside to your ip and see the Apache its work
guide - Guide install phpmyAdmin on Centos 6 122
Step2
install php5
Code:

sudo yum install php-common php-gd php-mcrypt php-pear php-pecl-memcache php-mhash php-mysql php-xml
sudo /etc/init.d/httpd reload
step3 install mysql
Code:

sudo yum install mysql-server
sudo service mysqld start
sudo /usr/bin/mysql_secure_installation
sudo chkconfig mysqld on
if you not have in iptables the port 3306 and you dont know how you can open that then you need inside to iptables and copy
Code:

nano /etc/sysconfig/iptables
-I INPUT -p tcp --dport 3306 -m state --state NEW,ESTABLISHED -j ACCEPT
service iptables restart
After you inside this port you can back to iptables and see you have there mysql its look like this
guide - Guide install phpmyAdmin on Centos 6 218
then you can continue with mysql
Code:

/usr/bin/mysql -u root -p
mysql -p -u root
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('mypass');
FLUSH PRIVILEGES;
exit
then after you need restart and reload your mysql
Code:

sudo service mysqld reload
sudo service mysqld restart
Now you need set your password with root then this look like that
guide - Guide install phpmyAdmin on Centos 6 321
then after you can see userhost with password also you need remaining in mysql with commands on mysql
Code:

SELECT User, Host, Password FROM mysql.user;
guide - Guide install phpmyAdmin on Centos 6 422
also you can create new name in database
Code:

CREATE DATABASE KISHORIT;
SHOW DATABASES;
DROP DATABASE mIRCx;
when you create new database and you want remove you used with the drop database
guide - Guide install phpmyAdmin on Centos 6 518
step4
install phpmyadmin
now we can install phpmyadmin
Code:

yum list phpmyadmin
yum install phpmyadmin
after you install phpmyadmin you have question if install that or not like this
guide - Guide install phpmyAdmin on Centos 6 616
guide - Guide install phpmyAdmin on Centos 6 715
and after install you can see all php its complete you need start httpd
Code:

services httpd start
if you see problem like this and you can`t inside to your phpmyadmin
guide - Guide install phpmyAdmin on Centos 6 816
guide - Guide install phpmyAdmin on Centos 6 914
Code:

iptables -L
iptables -I INPUT 4 -m state --state NEW -p tcp --dport 80 -j ACCEPT
service iptables save
service httpd graceful
after you doing commands you can see you select more options to iptables you can look new state http
guide - Guide install phpmyAdmin on Centos 6 1014
then after you can try inside your phpmyadmin
guide - Guide install phpmyAdmin on Centos 6 1112
more something Important if you have in your home some computer and you try inside to phpmyadmin from other computer and you see problem like this
guide - Guide install phpmyAdmin on Centos 6 1212
then inside to phpmyadmin.conf
Code:

nano /etc/httpd/conf.d/phpMyAdmin.conf
guide - Guide install phpmyAdmin on Centos 6 1311
guide - Guide install phpmyAdmin on Centos 6 1411
if you see i select more ip under 127.0.0.1 then this mean if you used with some computer you can set some ip....
Good luck
Guide By mIRCx IRC
www.mIRCx.co.il
mIRCx the old Community
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